IRC log of #maemo for Thursday, 2014-04-24

*** Kabouik_ has joined #maemo00:00
*** Kabouik has quit IRC00:01
*** okias has joined #maemo00:06
*** nox- has joined #maemo00:08
*** shentey_ has quit IRC00:14
*** thuttu77 has joined #maemo00:17
*** LauRoman has quit IRC00:23
*** lizardo has quit IRC00:29
*** MohammadAG has joined #maemo00:39
*** cyborg-one has quit IRC00:51
*** cyborg-one has joined #maemo00:52
*** xes has quit IRC01:02
*** xes has joined #maemo01:07
*** janemba has quit IRC01:09
*** cyborg-o1e has joined #maemo01:13
*** janemba has joined #maemo01:15
*** cyborg-one has quit IRC01:15
*** remarc has quit IRC01:24
*** janemba has quit IRC01:27
*** hxka has quit IRC01:33
*** goldkatze has quit IRC01:37
*** fk_lx has quit IRC01:41
DocScrutinizer05wow, that's some strange and incorrect syntax and nonsensical function that something injects into my standard PC bash environment: http://privatepaste.com/3afb01933101:45
DocScrutinizer05at very least it lacks the ":" between "1" and "+"01:47
DocScrutinizer05and nevertheless works01:48
DocScrutinizer05http://privatepaste.com/d7f23996ea01:49
*** valeriusL has quit IRC02:06
*** ALoGeNo has quit IRC02:10
*** ALoGeNo has joined #maemo02:12
*** ALoGeNo has joined #maemo02:12
*** Luke-Jr has quit IRC02:13
*** Luke-Jr has joined #maemo02:13
*** Luke-Jr has quit IRC02:17
*** Luke-Jr has joined #maemo02:18
*** valeriusL has joined #maemo02:18
*** janemba has joined #maemo02:21
*** kolp has quit IRC02:22
*** Anz_ has joined #maemo02:25
*** Anz_ has quit IRC02:26
*** florian has quit IRC02:26
*** janemba has quit IRC02:28
Maxdamantusweirdness? in bash? can't be.02:28
MaxdamantusI recently pointed out something that seems crazy on the bash-bug mailing list .. the developers are convinced it's correct, expected behaviour.02:29
*** janemba has joined #maemo02:29
Maxdamantusecho "$(echo '!!')"02:29
Maxdamantusin bash 3 or greater, that will expand the !!, even though it's within single quotes.02:30
Maxdamantusbefore bash, the problem manifests in: echo "'" !! "'"02:30
Maxdamantuser, before bash 302:30
Maxdamantus(Maemo normally has bash 2, so that one's relevant there)02:31
Maxdamantusit doesn't expand the !!, even though it's not quoted.02:31
MaxdamantusBasically, the history expansion uses a finite state machine to determine whether it should expand a ! construction.02:31
Maxdamantusbefore bash 3, it only changed state because of a backslash or a single quote.02:32
Maxdamantussince bash 3, it changes state also because of double quotes, but it doesn't know that double quotes can be inlined (that would require an infinite state machine)02:33
Maxdamantuswhich leads to even weirder things: echo "$(echo "$(echo '!!')")"02:33
Maxdamantusit sees "$(echo " as one double-quoted string, and ")" as another.02:34
Maxdamantusand '!!' is a single-quoted string02:34
Maxdamantusso it doesn't expand02:34
*** ALoGeNo has quit IRC03:05
*** ALoGeNo has joined #maemo03:07
*** ALoGeNo has joined #maemo03:07
DocScrutinizer51fun03:14
*** MohammadAG has quit IRC03:27
*** arcean has quit IRC03:30
*** RiD has quit IRC03:32
*** bef0rd has joined #maemo03:34
*** robbiethe1st has joined #maemo03:35
DocScrutinizer51I got bash3 at least03:38
*** infobot has quit IRC03:40
*** infobot has joined #maemo03:41
infobotDocScrutinizer: infobot joined!03:41
*** ChanServ sets mode: +v infobot03:41
*** MohammadAG has joined #maemo03:44
*** erlehmann_ has joined #maemo03:47
*** xes has quit IRC03:49
*** MohammadAG has quit IRC03:50
DocScrutinizer05Maxdamantus: actually I'm not sure about precedence of ( over "03:50
*** erlehmann has quit IRC03:51
MaxdamantusThe $ is important.03:51
Maxdamantus$(..) runs the .. command and expands to its output.03:51
DocScrutinizer05hmm, yeah, prolly that $( ) should have precedence over any "03:52
Maxdamantuswhen quoted, it's not split by IFS.03:52
DocScrutinizer05unless it's enclosed in " " :-S03:52
r00t^homeMaxdamantus: just disable history expansion, that's what i do03:53
DocScrutinizer05haha03:53
* Maxdamantus often uses history expansion.03:53
DocScrutinizer05yeah03:53
DocScrutinizer05I only use completion from jistory, and get pissed when it's not mapped to page-up03:54
Maxdamantusmost uses could be done with an extra up, ctrl-a, something, ctrl-e, something though.03:54
Maxdamantusfind . -name foo.c03:54
Maxdamantusvim $(!! | tail -1)03:54
DocScrutinizer05wow03:55
*** MohammadAG has joined #maemo03:55
DocScrutinizer05-n 103:55
DocScrutinizer05;-)03:55
r00t^homei suck, i use copy/paste03:55
* Maxdamantus is planning on creating a new shell atm03:56
Maxdamantusone that's statically typed.03:56
Maxdamantuswith higher-kinded polymorphism and type classes.03:56
DocScrutinizer05I found find finds own manpage nonsense03:56
DocScrutinizer05for mtime or mdate or whatever03:57
DocScrutinizer05according to manpage you should use negative values when in fact you need positive ones, and vice versa03:57
*** jon_y has quit IRC03:57
*** nox- has quit IRC03:58
DocScrutinizer05Maxdamantus: and an unambiguous syntax please :-)03:58
* Maxdamantus hasn't tried using `find` with mtimes.03:58
MaxdamantusYes, that too.03:58
*** triggerhappy has quit IRC03:58
MaxdamantusIt won't be inherently expansion-based.03:59
*** triggerhappy has joined #maemo04:00
Maxdamantuswhich means it will probably have pointers.04:00
DocScrutinizer05kinda sounds good04:00
Maxdamantus(not that expansion-based systems can't support pointers)04:00
DocScrutinizer05bash knows ${!foo} - that's it04:00
*** MohammadAG has quit IRC04:01
MaxdamantusWhat does ${!foo} do?04:01
MaxdamantusNothing to do with history expansion?04:01
DocScrutinizer05double-expansion04:01
Maxdamantusif you do it with history expansion enabled, it will find the last `foo` command and put that int ${..}04:02
Maxdamantusinto*04:02
DocScrutinizer05foo=bar; bar=X; echo $!foo -> X04:02
DocScrutinizer05err04:02
DocScrutinizer05foo=bar; bar=X; echo ${!foo} -> X04:02
Maxdamantusfoo=(1 2 3)04:03
Maxdamantusfoo [1]04:03
Maxdamantusecho ${!foo}04:03
Maxdamantusshould echo 204:03
Maxdamantusafaik04:03
DocScrutinizer05jr@saturn:~> foo=bar; bar=X; echo ${!foo}04:03
DocScrutinizer05X04:03
DocScrutinizer05jr@saturn:~> !!04:03
Maxdamantuswith history expansion enabled.04:03
DocScrutinizer05foo=bar; bar=X; echo ${!foo}04:03
DocScrutinizer05X04:03
MaxdamantusWait, it's not doing history expansion there.04:04
MaxdamantusHow is it not doing history expansion there?{04:04
DocScrutinizer05it's smaaaart?04:05
*** mschlens_ has joined #maemo04:05
DocScrutinizer05;-P04:05
*** Kabouik_ has quit IRC04:05
MaxdamantusI looked at the code and it was stupid, not smart.04:05
DocScrutinizer05(me snickers04:06
*** Humpelstilzchen has quit IRC04:07
Maxdamantuscan't have a space in an array subscript anyway.04:07
Maxdamantuser, before the subscript bit.04:07
DocScrutinizer05jr@saturn:~> foo=bar; bar=X; echo $!foo04:07
DocScrutinizer05foo04:07
*** Defiant has joined #maemo04:08
*** mschlens has quit IRC04:08
*** dos1 has quit IRC04:08
DocScrutinizer05Maxdamantus: also you're aware bash knows typing?04:09
Maxdamantusfoo <<< "$(tr \  \\n <<< 'c 5 c 6 12')"04:10
MaxdamantusWhat sort of typing?04:11
DocScrutinizer05at least this:  >>  The declare, local, and readonly builtins each accept a -a option to specify an indexed array and a -A option to specify an associative array.04:11
MaxdamantusWell, I knew it had indexed arrays.04:12
MaxdamantusI had a feeling it had associative arrays. I've never used them though.04:12
Maxdamantus13:03:19 < Maxdamantus> foo=(1 2 3)04:12
DocScrutinizer05declare: declare [-aAfFgilrtux] [-p] [name[=value] ...]04:12
DocScrutinizer05    Set variable values and attributes.04:12
DocScrutinizer05has help04:14
MaxdamantusI also want my shell to have first-class filesystems.04:15
Maxdamantusbut will probably be a later addition.04:15
DocScrutinizer05filesystems?04:18
DocScrutinizer05like... handles, fd ? &1?04:19
MaxdamantusSo you can do something like implement a tmpfs in the shell, and perform builtin file operations on things inside it.04:19
DocScrutinizer05ummm04:19
robbiethe1stwouldn't it be better to just wrap mount?04:19
Maxdamantusbut also pass it to an external command, in which case it will be mounted and a filename will be passed down.04:19
DocScrutinizer05hi robbiethe1st04:20
robbiethe1sthi04:20
ShadowJKI remember when my irc client had a first-class shell04:20
DocScrutinizer05hi ShadowJK04:20
robbiethe1stMy shell has an irc client!04:20
robbiethe1st(or, at least, irssi available)04:20
ShadowJK(xchat used to have a "new bash tab" thing :)04:20
MaxdamantusI wrote an IRC server once with a &bash channel.04:21
*** Smily has joined #maemo04:21
DocScrutinizer05hmm, konversation has04:21
* DocScrutinizer05 realizes that booze is out since weeks. Sobs04:22
*** SmilybOrg has joined #maemo04:22
*** MohammadAG has joined #maemo04:22
Maxdamantusrobbiethe1st: what do you mean by wrap mount?04:22
DocScrutinizer05knew I should've gotten a new bottle whe I emptied the last one04:23
DocScrutinizer05hmm, some Gin left over. But nothing to mix it with04:23
*** SmilyOrg has quit IRC04:23
robbiethe1stI mean, create a command/builtin which would create/destroy your tempfs. And what it does is create a real tmpfs mount somewhere, and handle making sure it's deleted at the end of the script04:23
MaxdamantusThe tmpfs should be implementable in the shell.04:24
Maxdamantusso it's not just limited to tmpfs.04:24
MaxdamantusIt could be a filesystem with a file that when read executes a command and returns the output.04:24
robbiethe1stwhy? What would you get that couldn't be done with a system tmpfs?04:25
DocScrutinizer05move to plan9?04:25
Maxdamantusrobbiethe1st: tmpfs can't do that.04:25
robbiethe1stI mean, all the hard work has already been done04:25
robbiethe1stSo, you emulate that functionality -- with your 'wrapper' functions04:26
*** Smily has quit IRC04:26
MaxdamantusThe closest you could get would probably be to make a FIFO and dnotify it to see when to remove it and replace it with a new one.04:26
Maxdamantuswhich is full of race conditions.04:26
Maxdamantusand doesn't really have anything to do with tmpfs04:26
robbiethe1stlets say this is a special file that is actually the output. The user attempts to open a file, your script changes that call to be whatever you want04:27
MaxdamantusYou should be able to implement an arbitrary filesystem.04:27
* DocScrutinizer05 thinks that function to read afile and execute it so it returns something to stdout already exists. It's called command04:27
DocScrutinizer05;)04:27
robbiethe1stDocScrutinizer05, exactly04:27
MaxdamantusOkay, what about a filesystem that maps a command over existing files?04:27
DocScrutinizer05it has a normal read called syscall() and a special edit call named read()04:28
robbiethe1stMaxdamantus, you don't want a shell or filesystem. What you want is a custom library that is ld_preloaded04:28
DocScrutinizer05what he wants is an OO shell it seems04:29
robbiethe1stYou could then replace standard posix functions for open/read/close with a test?passthrough:run-custom-function04:29
robbiethe1stI've seen this used if you wanted to prevent file deletion -- you can run a wrapper that messes with unlink functionality04:30
DocScrutinizer05I see extreme trouble around the corner, with silly simple stuff like cp, and mv04:30
DocScrutinizer05and sed04:30
DocScrutinizer05etc pp :-P04:30
Maxdamantuswavs = fsmap(import("/media/music"), () -> #{ ffmpeg -i - -y -f wav })04:31
*** MohammadAG has quit IRC04:31
Maxdamantusaplay $wavs:/foo/bar/baz.wav04:31
Maxdamantuswith tab completion04:31
Maxdamantusetc04:31
MaxdamantusDon't need an explicit mount.04:32
robbiethe1stExactly. Your fsmap function handles that04:32
robbiethe1stIt would create a tmpfs and a bunch of symlinks as-needed04:32
Maxdamantussymlinks to what?04:32
robbiethe1stTo the real files04:33
* DocScrutinizer05 waves04:33
MaxdamantusThe point is they're not real files.04:33
robbiethe1stWhere is the data coming from04:33
Maxdamantusffmpeg04:33
robbiethe1stSo, even easier04:33
robbiethe1stjust a tmpfs. Creates it, handles the path... passes that to ffmpeg04:34
robbiethe1stOr, even for that, you could just use /tmp/04:34
MaxdamantusHandles what path?04:34
robbiethe1stThe path to the real storage place04:35
MaxdamantusThere is no real storage place.04:35
robbiethe1stwhether memory or disk04:35
MaxdamantusThe file contents is generated by ffmpeg as you read it.04:35
robbiethe1stAnd why not just use a pipe?04:35
robbiethe1stThat's kind of what the point of a pipe is04:36
MaxdamantusIt is a pipe.04:36
Maxdamantusbut it's a pipe generated from a filesystem.04:36
Maxdamantuswhich handles lots of file accesses.04:36
robbiethe1stSounds like fifo files. which are basically pipes I think?04:36
Maxdamantusso if you had another program that shows a GUI to play wavs in a given directory, you could pass the filesystem to it.04:37
Maxdamantuswavplayer $wavs:.04:37
robbiethe1stSo, it /has/ to be a filesystem,04:37
MaxdamantusNo. The files don't actually exist.04:37
MaxdamantusThey're all transient.04:37
robbiethe1stYes, but they exist in memory04:37
Maxdamantuswhen you read a directory, the fsmap reads the source directory and passes through the results.04:38
robbiethe1stthey have to exist somewhere within the scope of /, if a program which uses POSIX functions will use it04:38
Maxdamantuswhen you open a file, the fsmap invokes the ffmpeg command, given the input of the original file.04:38
Maxdamantuswhen you read from the fd, the fsmap reads from the corresponding ffmpeg invocation and passes through the result.04:38
robbiethe1stSounds very much like FIFOs in a tmpfs, perhaps wrapped by a helper function to make it simple to script.04:39
Maxdamantuswhat has the tmpfs got to do with it?04:39
robbiethe1stthe tmpfs exists only in memory(or swap, if needed)04:39
*** edheldil_ has quit IRC04:40
*** jas4711 has quit IRC04:40
MaxdamantusIf you're using FIFOs, you're not storing anything.04:40
robbiethe1stIt handles your backend, much faster than you could, and it's been designed correctly04:40
Maxdamantusunless you're talking about FIFO files, which are horrible.04:40
robbiethe1stYou are storing the handles04:40
MaxdamantusFIFO files are the worst things ever.04:40
robbiethe1stwhy?04:41
MaxdamantusHave you ever tried reading from the same FIFO file with two processes?04:41
DocScrutinizer05pan904:41
robbiethe1stAnd you think you could do better?04:41
DocScrutinizer05plan9 even04:41
Maxdamantusrobbiethe1st: yes. Plan 9 has already done better.04:41
DocScrutinizer05can do same on linux04:41
Maxdamantusrobbiethe1st: it encourages creation of these filesystems.04:42
DocScrutinizer05man mount04:42
robbiethe1stIf you are to read it from two destinations, you need to either synchronize both destinations, or cache the data so that the second reader can catch up04:42
MaxdamantusLinux has v9fs, but you need to be root to use it.04:42
Maxdamantusplan9port has a 9pfuse program though.04:42
robbiethe1stUh, why is that a problem? Just use sudo, and setup a rule that allows for invocation of the mount command as user04:43
robbiethe1stwith no password etc.04:43
DocScrutinizer05http://www.ibm.com/developerworks/linux/library/l-mount-namespaces.html04:43
MaxdamantusPlan 9 also doesn't have the concept of sudo.04:43
Maxdamantusor a superuser.04:43
robbiethe1stWhich is stupid04:43
Tekk_robbiethe1st: no it's not04:43
Tekk_oh wait04:43
Tekk_what's stupid?04:43
robbiethe1stNot having a superuser04:44
Maxdamantusnot having superusers.04:44
Tekk_plan 9 not having sudo/superuser is really good04:44
*** MohammadAG has joined #maemo04:44
Tekk_least imo04:44
Maxdamantusresource access is just whatever you can access through the filesystems you see.04:44
Maxdamantusin your namespace and open fds, etc04:44
Tekk_yeah04:44
* Tekk_ has used plan9 a decent amount04:44
robbiethe1stHaving a superuser is great; it means that there is a user which has all privlidges, and actually has authority over everything else.04:44
* Maxdamantus hasn't used it much.04:44
* Maxdamantus likes the concepts though.04:45
DocScrutinizer05what's one's sudo is the other's mountpoint04:45
Tekk_Maxdamantus: I've used it just enough for acme to be my 2nd favorite editor :P04:45
Tekk_robbiethe1st: and that's why it's horrible04:45
Tekk_you have a single point of failure04:45
MaxdamantusI could probably generally make my way around acme.04:45
Tekk_if root is owned it's game over04:45
robbiethe1stYou have a single way of fixing everything when things break04:45
DocScrutinizer05Per-login namespaces04:46
* Maxdamantus isn't too fond of the mouse orientation though, but maybe people get used to it.04:46
robbiethe1stHave you ever messed with the N950 or N9? Both are locked down, such that root is not all-powerful04:46
Tekk_robbiethe1st: root is necessary on unix-likes04:46
robbiethe1stWhich means that you can't get around blocks just by going root04:46
Tekk_but plan9 is designed to not have root04:46
Tekk_so it works :P04:46
DocScrutinizer05Tekk_: now THAT is nonsense.04:47
robbiethe1stHow do you deal with the issue of taking ownership of another's files, or administrating someone elses stuff?04:47
DocScrutinizer05it's true, like 2water is wet"04:47
Tekk_robbiethe1st: I've never used plan9 because I haven't worked at bell labs04:47
Maxdamantusrobbiethe1st: depends how the files are stored.04:48
Tekk_but I imagine that it works vaguely like the user whose stuff you're messing with allows you to mount them :P04:48
DocScrutinizer05Per-login namespaces04:48
*** MohammadAG has quit IRC04:48
robbiethe1stAnd that's kind of a problem, in any managed environment04:48
Tekk_robbiethe1st: how so?04:48
Tekk_if you really need a superuser, just make it so that by default your "superuser" has access04:49
robbiethe1stWhere you A, may not be able to get the use's permission, or B, the user cannot *give* permission etc.04:49
DocScrutinizer05meh04:49
DocScrutinizer05n804:49
Tekk_n8 DocScrutinizer0504:49
*** LauRoman has joined #maemo04:49
Maxdamantusrobbiethe1st: how do you deal with the issue of taking ownership of another's IRC connection?04:49
Tekk_robbiethe1st: I'm certain that plan9 has something in place to handle this, I just haven't used it myself04:50
*** jas4711 has joined #maemo04:50
*** edheldil_ has joined #maemo04:50
robbiethe1stWouldn't you either do it as root, or with sudo from another user with the privilidges04:50
MaxdamantusDo what?04:50
Tekk_probably not04:50
Tekk_because plan9 doesn't have root or sudo04:50
robbiethe1stI mean in unix-land04:51
Tekk_oh04:51
Tekk_yes04:51
Tekk_in unix you would su to the user then attach to either their X session or their screen/tmux session04:51
robbiethe1stHow would you evesdrop/take control of an open socket connection anyway?04:51
Maxdamantusrobbiethe1st: ultimately, the user might be accessing files over an encrypted connection.04:52
robbiethe1stwireshark can do it at the packet level, I think04:52
Maxdamantusrobbiethe1st: in which case I think you'd need to mess with the system's memory to manipulate them.04:52
robbiethe1stMaxdamantus, but with irc?04:52
robbiethe1stI'm actually curious04:52
Maxdamantus(so you either read another process' address space to get the encryption key, or make the kernel reroute fds)04:53
Maxdamantusrobbiethe1st: it's the same with IRC.04:53
Maxdamantusrobbiethe1st: it doesn't make a lot of sense for root to claim ownership of another user's IRC connection.04:53
*** uen| has joined #maemo04:53
Maxdamantusyou'd need to do messy stuff with other process' namespaces if the connection is encrypted.04:53
robbiethe1st Unless you needed to04:53
Maxdamantusif it's unencrypted, in Linux you can open /proc/<pid>/fd/<fd>, kill the IRC process and continue talking.04:54
robbiethe1stThing is, there's occasional need04:54
Maxdamantusif the files are on a disk you basically own, you're probably the one providing the filesystem, and the filesystem will probably provide a way to do extra stuff with it when you mount it.04:55
Maxdamantuseg, Plan 9 usually uses fossil, which has some fossilcons system.04:56
MaxdamantusYeah, so it provides the interface through /srv/fscons04:56
*** uen has quit IRC04:57
Maxdamantusbut /srv/fscons is local to some process' namespace, sort of like a chroot.04:57
*** janemba has quit IRC04:57
Maxdamantusor processes'04:57
Maxdamantusif you're allowing other people the ability to run programs on the same machine, you'd create a new namespace without /srv/fscons04:58
*** uen| has quit IRC04:58
*** janemba has joined #maemo04:58
*** silviof1 has joined #maemo05:01
DocScrutinizer05Per-login namespaces05:02
DocScrutinizer05http://www.ibm.com/developerworks/linux/library/l-mount-namespaces.html05:02
*** uen has joined #maemo05:03
*** silviof has quit IRC05:04
*** lbt has quit IRC05:05
*** lbt has joined #maemo05:06
*** lbt has quit IRC05:06
*** lbt has joined #maemo05:06
*** MohammadAG has joined #maemo05:07
*** erlehmann_ is now known as erlehmann05:12
*** qwazix has quit IRC05:12
*** janemba has quit IRC05:12
*** janemba has joined #maemo05:12
*** qwazix has joined #maemo05:17
*** janemba has quit IRC05:17
*** janemba has joined #maemo05:17
*** janemba has quit IRC05:21
*** janemba has joined #maemo05:22
*** LauRoman has quit IRC05:28
*** protem has joined #maemo05:40
*** protem has joined #maemo05:40
*** SmilybOrg is now known as Smily05:45
Maxdamantushttps://en.wikipedia.org/wiki/Plan_X05:46
MaxdamantusSuccessor to Plan 9?05:46
*** LjL-Laplet has quit IRC05:58
*** MohammadAG has quit IRC06:01
*** lxp1 has joined #maemo06:01
*** lxp has quit IRC06:03
*** janemba has quit IRC06:08
*** janemba has joined #maemo06:10
*** MohammadAG has joined #maemo06:13
*** okias has quit IRC06:13
*** MohammadAG has quit IRC06:21
*** maybeHere has joined #maemo06:31
*** MohammadAG has joined #maemo06:32
*** maybeArgh has quit IRC06:34
*** MohammadAG has quit IRC06:40
*** robbiethe1st has quit IRC06:45
*** valeriusL has quit IRC07:14
*** protem has quit IRC07:14
*** protem has joined #maemo07:17
*** protem has joined #maemo07:17
*** MohammadAG has joined #maemo07:21
*** MohammadAG has quit IRC07:26
*** valeriusL has joined #maemo07:27
*** MohammadAG has joined #maemo07:41
*** grinsekatze has quit IRC07:45
*** grinsekatze has joined #maemo07:52
*** grinsekatze has joined #maemo07:52
*** VDVsx has quit IRC08:05
*** auenf has quit IRC08:20
*** auenf has joined #maemo08:21
*** jormungandr has joined #maemo08:25
*** MohammadAG has quit IRC08:26
*** protem has quit IRC08:29
*** japa-fi has quit IRC08:31
*** VDVsx has joined #maemo08:32
*** protem has joined #maemo08:32
*** protem has joined #maemo08:32
*** eMHa has quit IRC08:33
*** eMHa has joined #maemo08:34
*** MohammadAG has joined #maemo08:35
*** shentey has joined #maemo08:39
*** shentey has quit IRC08:41
*** MohammadAG has quit IRC08:43
*** eMHa has quit IRC08:43
*** shentey has joined #maemo08:44
*** andre__ has joined #maemo08:44
*** shentey has joined #maemo08:48
*** MohammadAG has joined #maemo08:50
*** MohammadAG is now known as MohammadA08:50
*** eMHa has joined #maemo08:57
*** qwazix has quit IRC09:17
*** ekze has joined #maemo09:19
*** qwazix has joined #maemo09:21
*** ccxN has quit IRC09:22
*** ekze has quit IRC09:25
*** hxka has joined #maemo09:32
*** qwazix has quit IRC09:32
*** qwazix has joined #maemo09:37
*** shentey has quit IRC09:37
*** ccxN has joined #maemo09:47
*** woodong50 has joined #maemo09:50
*** Wnt has quit IRC10:02
*** cypherc has quit IRC10:02
*** silviof1 is now known as silviof10:03
*** Wnt has joined #maemo10:04
*** jas4711 has quit IRC10:05
*** Wnt_ has joined #maemo10:07
*** jmlich has joined #maemo10:12
*** dhbiker has quit IRC10:17
*** fk_lx has joined #maemo10:18
*** florian_kc has joined #maemo10:25
*** florian_kc has quit IRC10:25
*** florian_kc has joined #maemo10:25
*** hxka has quit IRC10:26
*** florian_kc is now known as florian10:27
*** tanty_off is now known as tanty10:30
*** geaaru has joined #maemo10:34
*** valeriusL has quit IRC10:36
*** cypherc has joined #maemo10:39
*** pcfe has joined #maemo10:39
*** japa-fi has joined #maemo10:44
*** rcg has joined #maemo10:44
*** AD-N770 has joined #maemo10:49
*** cityLights has quit IRC11:02
*** protem has quit IRC11:10
*** protem` has joined #maemo11:10
*** protem` has quit IRC11:11
ApicA wonderful splendid fine Morning (UGT) on this gorgeous Prickle-Prickle!11:15
*** MohammadA has quit IRC11:30
*** MohammadAG has joined #maemo11:32
*** kolp has joined #maemo11:37
*** valerius has joined #maemo11:56
*** erlehmann has quit IRC11:58
*** valeriusL has joined #maemo12:00
*** Kabouik has joined #maemo12:02
*** ds_shadof has quit IRC12:28
*** ds_shadof has joined #maemo12:28
*** jon_y has joined #maemo12:40
*** b1101 has joined #maemo13:26
*** b1101 has joined #maemo13:27
*** valerius has quit IRC13:30
*** b1101 has quit IRC13:34
*** StyXman_ has quit IRC13:47
*** valerius has joined #maemo13:51
*** valeriusL has quit IRC13:53
*** FIQ has quit IRC13:58
*** FIQ has joined #maemo13:58
*** FIQ is now known as Guest4692013:59
*** geaaru has quit IRC14:00
*** Guest46920 has quit IRC14:03
*** Guest46920 has joined #maemo14:03
*** FIQ has joined #maemo14:04
*** valeriusL has joined #maemo14:06
*** geaaru has joined #maemo14:16
*** cyborg-one has joined #maemo14:40
*** cyborg-o1e has quit IRC14:43
*** valerius has quit IRC14:44
*** okias has joined #maemo14:45
*** Luke-Jr has quit IRC14:58
*** Luke-Jr has joined #maemo14:59
*** LjL-Laplet has joined #maemo15:00
*** valerius has joined #maemo15:01
*** okias has quit IRC15:10
*** sLumPia has joined #maemo15:15
*** andre__ has quit IRC15:21
*** andre__ has joined #maemo15:21
*** BCMM has joined #maemo15:23
*** troulouliou_dev has joined #maemo15:27
*** sLumPia has quit IRC15:31
*** aloril has quit IRC15:33
*** okias has joined #maemo15:43
*** valeriusL has quit IRC15:44
*** valerius has quit IRC15:44
*** aloril has joined #maemo15:46
*** bef0rd has quit IRC15:51
*** bef0rd has joined #maemo15:51
*** okias has quit IRC15:52
*** bef0rd has quit IRC15:56
*** valeriusL has joined #maemo15:56
*** valerius has joined #maemo16:00
*** bef0rd has joined #maemo16:04
*** lizardo has joined #maemo16:04
*** ds_shadof has quit IRC16:05
*** louisdk has joined #maemo16:07
*** bef0rd has quit IRC16:08
*** florian has quit IRC16:52
*** LauRoman has joined #maemo16:55
*** hxka has joined #maemo17:03
*** LauRoman has quit IRC17:09
*** LauRoman has joined #maemo17:11
*** VDVsx has quit IRC17:13
*** janemba has quit IRC17:31
*** janemba has joined #maemo17:32
*** jormungandr has quit IRC17:36
*** goldkatze has joined #maemo17:47
*** valeriusL has quit IRC18:01
*** valerius has quit IRC18:02
*** Anz_ has joined #maemo18:04
*** Anz_ has quit IRC18:09
*** valeriusL has joined #maemo18:13
*** valerius has joined #maemo18:15
*** rcg has quit IRC18:29
*** NIN101 has joined #maemo18:32
*** jmlich has quit IRC18:40
*** LjL-Laplet2 has joined #maemo18:41
*** cypherc has quit IRC18:43
*** LjL-Laplet has quit IRC18:44
*** LjL-Laplet2 is now known as LjL-Laplet18:44
*** infobot has quit IRC18:46
*** infobot has joined #maemo18:47
infobotDocScrutinizer: infobot joined!18:47
*** ChanServ sets mode: +v infobot18:47
*** SAiF has joined #maemo18:51
*** infobot has quit IRC18:55
*** infobot has joined #maemo18:56
infobotDocScrutinizer: infobot joined!18:56
*** ChanServ sets mode: +v infobot18:56
*** ccxN has quit IRC19:07
*** Milhouse has quit IRC19:25
*** LjL-Laplet has quit IRC19:33
*** StyXman has joined #maemo19:34
*** StyXman has joined #maemo19:34
*** cypherc has joined #maemo19:34
*** LjL-Laplet2 has joined #maemo19:34
*** pcfe has quit IRC19:35
*** psycho_oreos has quit IRC19:40
*** tanty is now known as tanty_off19:48
*** ccxN has joined #maemo19:49
*** hxka_ has joined #maemo19:54
*** hxka has quit IRC19:54
*** AD-N770 has quit IRC19:59
*** infobot has quit IRC20:02
*** troulouliou_dev has quit IRC20:03
*** infobot has joined #maemo20:03
infobotDocScrutinizer: infobot joined!20:03
*** ChanServ sets mode: +v infobot20:03
*** VDVsx has joined #maemo20:07
*** LauRoman has quit IRC20:10
*** psycho_oreos has joined #maemo20:23
*** SAiF has quit IRC20:25
*** dos1 has joined #maemo20:26
*** MohammadAG has quit IRC20:30
*** MohammadAG has joined #maemo20:37
*** cyborg-one has quit IRC20:40
*** cyborg-o1e has joined #maemo20:40
*** LauRoman has joined #maemo20:41
*** LjL-Laplet2 is now known as LjL-Laplet20:43
*** MohammadAG has quit IRC20:44
*** MohammadAG has joined #maemo20:46
*** andre__ has quit IRC20:46
*** geaaru has quit IRC20:49
*** florian has joined #maemo21:31
*** florian has joined #maemo21:31
*** RiD has joined #maemo21:38
*** wizbit has joined #maemo21:47
wizbithow can i upgrade my Nokia N900 with v21.2011.38-1 firmare?21:47
freemangordonwizbit: which version you have currently installed?21:54
*** RES401 has quit IRC21:58
wizbitfreemangordon: Maemo 5  10.2010.19-122:02
*** sunny_s has quit IRC22:03
freemangordonwizbit: change the year in clock-ui to 2009, start HAM and click update22:03
freemangordon~ham22:03
infobotmethinks ham is Hildon Application Manager.  Slow as molasses. Anticipate you got time for a beer or two until it finishes whatever it does22:03
freemangordonwizbit: the other option is to flash22:03
*** _rd has joined #maemo22:04
wizbitfreemangordon: so i dont need to flash at all? just do it from software update HAM?22:04
freemangordonyep22:04
wizbitace22:04
wizbitis that the application manager in settings?22:04
freemangordonchanging the year is because of the expired Nokia certificates22:05
wizbitor is HAM a 3rd party app manager?22:05
freemangordonin settings?22:05
wizbiti found 'App manager' in settings22:05
wizbitis that the tool i should be using?22:05
freemangordonthis is not "settings", but applications, however, this is what you have to run22:06
*** remarc has joined #maemo22:06
freemangordonyep, that is the tool22:06
wizbitace ill set the date now to 200922:06
freemangordonthe "settings" is the wrench in the "applications" :)22:06
*** shentey has joined #maemo22:06
*** M4rtinK has joined #maemo22:07
wizbitok phone set to April 24th 200922:07
freemangordongood22:07
freemangordonnow start HAM22:07
*** Maxdaman1us has joined #maemo22:07
*** merlin1991 has quit IRC22:07
*** Maxdamantus has quit IRC22:07
freemangordonand have a beer(coffee, tee), whatever you want22:07
freemangordonit takes some time22:07
freemangordon:)22:08
*** RES401 has joined #maemo22:08
wizbiti selected App manager and my screen says22:08
wizbit'Uninstall   Download   Update'22:08
*** realitygaps has quit IRC22:08
freemangordonclick "Update"22:08
wizbitdo i need to edit any repo settings before i update?22:08
freemangordonI guess no, if you haven't messed them up22:09
*** merlin1991 has joined #maemo22:09
*** merlin1991 has joined #maemo22:09
wizbiti havent touched anything so ill click update :)22:09
freemangordon:nod:22:09
wizbitit says (no updates available)22:09
freemangordongive it some time22:09
wizbitok22:10
freemangordonabout 3-5 minutes22:10
freemangordonif there are still no updates, click on the menu and select "refresh"22:10
*** ccxN has quit IRC22:10
wizbiti better plug this beast in :)22:10
freemangordonyeah22:10
freemangordonyou'll need that anyway22:10
wizbitwow22:11
wizbitit says maemo 5 security update22:11
freemangordonsee :P22:11
wizbitill click that22:11
freemangordonyeah22:11
*** r00t^home has quit IRC22:11
freemangordonwizbit: anyway, I'd recommend you to install CSSU22:11
wizbitexcellent :D22:11
*** realitygaps has joined #maemo22:11
*** realitygaps has joined #maemo22:11
freemangordonas 38-1 breaks A-GPS22:11
freemangordon~cssu22:12
infobot[cssu] http://wiki.maemo.org/Community_SSU22:12
*** guerby has quit IRC22:12
wizbitshall i continue what im doing now and do that after?22:12
freemangordonsure22:12
wizbitdo i need to flash it to get cssu on it?22:13
freemangordonhaving 38-1 installed won't break CSSU installation22:13
freemangordonno22:13
freemangordonit is againOTA22:13
wizbitawesome, i could of bricked it if i didnt speak to you :)22:13
freemangordon~ota22:13
infobotit has been said that ota is ssu22:13
*** M4rtinK has quit IRC22:13
wizbitill follow what you say22:13
freemangordonwizbit: it is not that easy to brick n900, if possible at all :)22:13
*** guerby has joined #maemo22:14
wizbitthis is my first smartphone, after researching this seems the best around22:14
*** LjL-Laplet has quit IRC22:14
freemangordonhmm, no, you're wrong, n900 is not a smartphone ;)22:14
wizbitits a computer :D22:14
freemangordonexactly22:15
freemangordon:)22:15
wizbitis it possible to run ssh server on it so i can ssh into it?22:15
freemangordonsure22:15
wizbitwow :D22:15
freemangordonjust install openssh from the repos22:15
wizbitsimple as apt-get install openssh-server?22:15
freemangordonyou'd better use ham22:16
wizbitok22:16
freemangordonI know, it is slow, but it does more than what apt-get does22:16
wizbitdoesnt matter22:16
bencohhm ?22:17
freemangordononce you're a bit of experienced with maemo, you can apt-get as well22:17
wizbitgoogle shows lots of people 'weaponizing' the n900, should i avoid things like that?22:17
freemangordonwizbit: hmm?22:17
wizbitand use clean repos instead22:17
wizbitpeople offer sets of packages for download from various sources22:17
freemangordonWTF is 'weaponizing' supposed to mean22:17
wizbitim not sure22:17
*** LjL-Laplet has joined #maemo22:18
freemangordonyou'd better stick to the 'official' repos, I bet you can find there everything you'll need22:18
wizbiti sure will22:18
wizbitgoogle doesnt show the correct advice sometimes22:19
Tekk_freemangordon: loading it up with pen test stuff maybe?22:19
freemangordonisn't that a different firmware?22:19
Tekk_could be22:19
* Tekk_ is just guessing22:19
freemangordonme too22:19
freemangordon(the firmware part)22:19
freemangordonTekk_: but AFAIK the only thing that is useful and is not in the extras/cssu repos is thumbified OMP22:20
freemangordonand Pali's bme replacement22:20
Tekk_bme?22:21
freemangordon~bme22:21
infobotbme is, like, http://wiki.maemo.org/N900_Software_BME22:21
Tekk_ah22:22
freemangordonwizbit: how it's going on?22:24
wizbitfreemangordon: bar going across, says its updating to 21.2011.38-122:24
freemangordongood22:24
wizbiti will do the CSSU update after :)22:25
wizbitthen install some stuff like maybe BASH4 and ssh server22:25
wizbitif they are on repo22:26
freemangordonwizbit: I'd recommend you to install cssu-thumb, but I am biased :)22:26
wizbitok ill test that out, what is it22:26
freemangordon~cssu-thumb22:26
infobotwell, cssu-thumb is <DocScrutinizer05> [thumb2 microb] indeed seems to render like mad, subjectively, or http://talk.maemo.org/showpost.php?p=1220597, or http://wiki.maemo.org/Community_SSU/Thumb22:26
wizbitright, so it will make things run smoother22:26
freemangordonyep22:27
wizbiti sure will install it22:27
freemangordonwizbit: also, move your swap partition to uSD22:27
freemangordonit makes lots of a difference22:27
wizbitok22:27
*** ccxN has joined #maemo22:28
freemangordonand...22:28
wizbitsoon i will be able to ssh into my box and launch a screen session right from the phone22:28
freemangordontweak IO scheduler a bit, I'll pastebin my settings22:28
DocScrutinizer05~literal cssu-thumb22:28
infobot"cssu-thumb" is "<DocScrutinizer05> [thumb2 microb] indeed seems to render like mad, subjectively, or http://talk.maemo.org/showpost.php?p=1220597, or http://wiki.maemo.org/Community_SSU/Thumb"22:28
*** LauRoman has quit IRC22:28
*** mbs1337 has joined #maemo22:28
*** _rd has quit IRC22:29
DocScrutinizer05infobot: no, cssu-thumb is <Doc_Scrutinizer05> [thumb2 microb] indeed seems to render like mad, subjectively, or http://talk.maemo.org/showpost.php?p=1220597, or http://wiki.maemo.org/Community_SSU/Thumb22:29
infobotDocScrutinizer05: okay22:29
*** mbs1337 has quit IRC22:30
freemangordonwizbit: http://pastebin.com/PgryaYts22:30
freemangordonmake sure to swapon the correct uSD swap partition :)22:31
freemangordonif you decide to use that22:31
wizbitfreemangordon: phone just rebooted :D22:31
freemangordonpray :P22:31
wizbitback up :D22:32
freemangordongood22:32
wizbitill see what version it says now22:32
freemangordonhowever, /me gtg22:32
freemangordonhight22:32
wizbitupdated successfully :D22:32
wizbitill do the CSSU update when your around next22:33
wizbitif you dont mind22:33
freemangordonwizbit: you don;t really need me22:34
freemangordonjust follow the instructions22:34
freemangordon~cssu22:34
infobotit has been said that cssu is http://wiki.maemo.org/Community_SSU22:34
freemangordonor22:34
freemangordon~cssu-thumb22:34
infoboti guess cssu-thumb is <Doc_Scrutinizer05> [thumb2 microb] indeed seems to render like mad, subjectively, or http://talk.maemo.org/showpost.php?p=1220597, or http://wiki.maemo.org/Community_SSU/Thumb22:34
wizbitace ok22:35
wizbitthanks for your help :D22:35
*** M4rtinK has joined #maemo22:36
DocScrutinizer05I suggest to install BM!!22:36
DocScrutinizer05and *use* it!22:36
wizbiti will use stable CSSU not testing22:36
wizbitDocScrutinizer05: what is BM?22:38
DocScrutinizer05freemangordon: honestly!!!! shame on you! >>/sbin/swapon /dev/mmcblk1p3       &&       /sbin/swapoff /dev/mmcblk0p3<<22:39
DocScrutinizer05~bm22:39
infobotbackupmenu is probably http://talk.maemo.org/showthread.php?t=6397522:39
wizbitgood thinking22:39
*** shentey has quit IRC22:40
wizbitDocScrutinizer05: http://wiki.maemo.org/Community_SSU  BM is no.1 in the docs22:40
DocScrutinizer05yes, I put it there :-)22:40
wizbitheh22:41
wizbitDocScrutinizer05: do i need to edit my repo before i can download BM?22:41
wizbiti havent touched any of the settings on my phone so far22:41
DocScrutinizer05probably22:41
DocScrutinizer05or click http://maemo.cloud-7.de/repositories.install22:42
DocScrutinizer05see22:42
DocScrutinizer05~jrtools22:42
infobothmm... jrtools is http://wiki.maemo.org/User:Joerg_rw/tools22:42
DocScrutinizer05http://wiki.maemo.org/User:Joerg_rw/tools#Additional_Repositories22:43
DocScrutinizer05disable test immediately in HAM "catalogs"22:44
DocScrutinizer05after you installed what you wanted, DISABLE extras-devel!!!22:44
DocScrutinizer05NEVER run an "update all" when extras-devel is enabled22:45
wizbitok22:45
wizbitill type this on the n900 browser : http://maemo.cloud-7.de/repositories.install22:45
wizbitthen disable what you said22:45
DocScrutinizer05go ahead22:45
DocScrutinizer05you can type http://maemo.cloud-7.de the click on repositories.install22:46
freemangordonDocScrutinizer05: hmm?22:46
wizbitok22:46
freemangordonwhat is wrong with my swapoff/on?22:46
DocScrutinizer05missin &&22:46
*** phlixi has joined #maemo22:46
freemangordonoh, i see22:46
freemangordonanyway, it is like that for the last 3 years or so22:47
DocScrutinizer05nfc if friggin uostart knows &&22:47
freemangordonso I don;t think it is much of a problem22:47
DocScrutinizer05upstart22:47
freemangordonyes, it knows it22:47
freemangordonwell, it knows ||22:47
DocScrutinizer05it IS a problem for those who lack the partition on uSD22:47
freemangordonso I guess it knows && as well22:48
DocScrutinizer05:nod:22:48
freemangordonoh, wait, this is *mine* script :P22:48
wizbitDocScrutinizer05: clicked on repositories.install  it added the repos and it checking for updates ( i wont install any updates yet)22:48
freemangordonor *my*?22:48
DocScrutinizer05not a showstopper class of problem, since you'd be amazed how well HD handles RAM shortage22:48
DocScrutinizer05wizbit: good. click on "install", on "all" then type "backup" on kbd22:50
DocScrutinizer05if nothing got messed up during last years, you shall see "backup-menu" app among others in the selection22:50
DocScrutinizer05wizbit: you'll notice HAM taking *ages* when extras-devel catalog/repo got enabled22:52
DocScrutinizer05give it 15min of time to comlete22:52
DocScrutinizer05~ham22:53
infobothmm... ham is Hildon Application Manager.  Slow as molasses. Anticipate you got time for a beer or two until it finishes whatever it does22:53
wizbitDocScrutinizer05: i am in the catalogues screen, and i think its waiting to update22:53
DocScrutinizer05what are you up to do?22:53
DocScrutinizer05dosable extras-testing?22:53
DocScrutinizer05dis*22:53
wizbitDocScrutinizer05: i am in App manager > catalogues as i thought you need to disable some repos first?22:54
DocScrutinizer05find extras-testing, click on it22:54
wizbitit says22:54
wizbitMaemo Extras-DEVEL22:54
DocScrutinizer05checkmark "disable"22:54
DocScrutinizer05yes, that one22:55
*** MohammadAG has quit IRC22:55
wizbitok22:55
DocScrutinizer05err nope22:55
DocScrutinizer05stop22:55
DocScrutinizer05maemo-extras-TESTING22:55
wizbitok ill disable that one instead22:55
wizbitshould i disable developers tools (**DOOM!**)22:56
DocScrutinizer05later22:56
wizbitso at the moment i have this:22:56
DocScrutinizer05please don't past all catalogs you got. It's most likely ok anyway22:56
wizbitMaemo Extras-DEVEL  - ENABLED    Maemo Extras-TESTING - DISABLED   developers tools - ENABLED22:57
DocScrutinizer05just close catalogs menu (click into blurred area)22:57
wizbitok its checking for updates now22:57
DocScrutinizer05:nod:22:57
wizbitright finished22:58
DocScrutinizer05will take a while, then you click "download" or "install" or whatever the middle one is called22:58
wizbitok22:58
DocScrutinizer05click "all" upper left22:58
DocScrutinizer05type "backup"22:58
wizbitscreen has gone black at the moment22:59
DocScrutinizer05np, will take a while22:59
wizbitmaybe its updating something22:59
DocScrutinizer05yes, it takes AGES22:59
DocScrutinizer05ctrl+backspace on kbd will allow you to swap to another task to do something more funny while HAM works23:00
wizbitok :)23:01
wizbitright its finished23:01
wizbitgonna click all23:01
DocScrutinizer05while you're at it, after installing BM you could straight proceed to installing openSSH(server+client)23:01
wizbitfound backup menu :D23:02
wizbitexcellent23:02
DocScrutinizer05and load applet, simple brightness applet23:02
DocScrutinizer05then disable maemo-extras-devel and close HAM23:03
wizbitinstall 'applet' ?23:03
DocScrutinizer05install "load applet"23:04
wizbitok23:04
DocScrutinizer05install "Simple Brightness Applet"23:04
wizbitshould i install openssh after CSSU or doesnt that make a difference?23:04
DocScrutinizer05no diff23:05
DocScrutinizer05so rather install it right away, an option to open a shell session to phone from PC is invaluable23:05
wizbitgood diea23:07
wizbitidea23:07
wizbitright going to install Simple Brightness Applet now23:07
DocScrutinizer05if you think a shell should be confortable, get bash323:07
wizbiti am comfortable with shell23:08
DocScrutinizer05and diffutils-gnu, since messybox diff sucks donkeyballs23:08
*** xes has joined #maemo23:08
wizbitsimple brightness app installed, time for openssh server23:08
DocScrutinizer05~messybox23:08
infobotmessy... err busybox is meant for lean scripting. Regarding all the missing options and immanent limitations (see su, passwd, nice, ps, diff as used by mc...) it's not really the interactive shell of choice. A lot of people hate busybox because a lot of system integrators don't understand the difference between busybox and a decent user interactive shell plus unix utils23:08
DocScrutinizer05you got load applet? I consider it indispensable since it gives you an instant idea *why* your device is slow, or eating battery23:10
wizbitnope will install that next23:10
wizbitwaiting for app list to pop up again23:10
DocScrutinizer05it's a tiny CPU load and memusage display in systray23:10
wizbitinstalling :)23:11
*** shentey has joined #maemo23:11
wizbitis messybox bash3 ?23:11
wizbitor a fork of it23:12
sixwheeledbeastAFAIK Upstart will ignore the whole file if there was no 1p3 to swap to.23:12
DocScrutinizer05after your're done with all that (and didn't forget your root password you've set while installing openSSH), it's time to disable extras-devel and extras-testing and tools repo, then quit HAM, wait 2 minutes (HAM takes time, even to properly quit), then reboot with kbd slide open, to enter BM and do a backup already23:13
sixwheeledbeastupstart runs everything with -e23:13
DocScrutinizer05messybox is ... messy err busybox. Bash3 is bash, a proper interactive shell23:13
*** shentey has quit IRC23:13
DocScrutinizer05maemo is cursed with busybox in stock config23:14
*** shentey has joined #maemo23:14
*** valerius has quit IRC23:14
*** valeriusL has quit IRC23:14
DocScrutinizer05but you can start a *decent* shell in xterm by simply typing "bash"23:14
*** bugzy has joined #maemo23:14
wizbitshould i install dropbear ssh server23:14
DocScrutinizer05no23:14
wizbitopenssh is not listed23:15
wizbitmaybe i typed it wrong23:15
DocScrutinizer05OpenSSH23:15
wizbitfound it :D23:16
DocScrutinizer05bbl, cya23:16
wizbitthanks for help :D23:17
DocScrutinizer05ooh, and welcome to the maemo universe. I'm 100% sure you'll fall in love23:17
wizbiti already am :D23:17
DocScrutinizer05just keep in mind maemo is not exactly debian. Particularly never trus apt or any other installer than HAM. Ask here if you wanna do sth with apt-get on cmdline!23:19
DocScrutinizer05l8r23:20
*** tiekookeit has joined #maemo23:21
DocScrutinizer05wizbit: https://mg.pov.lt/maemo-irclog/%23maemo.2014-04-22.log.html#t2014-04-22T16:02:1323:26
DocScrutinizer05https://mg.pov.lt/maemo-irclog/%23maemo.2014-04-22.log.html#t2014-04-22T21:20:36 ff23:27
*** valeriusL has joined #maemo23:28
*** valerius has joined #maemo23:29
*** shentey has quit IRC23:31
*** shentey_ has joined #maemo23:31
*** ccxN has quit IRC23:32
*** MohammadAG has joined #maemo23:33
*** Kabouik has quit IRC23:35
*** MohammadAG has quit IRC23:38
*** shentey_ has quit IRC23:38
*** shentey_ has joined #maemo23:38
*** ccxN has joined #maemo23:39
*** _rd has joined #maemo23:39
*** Ninja has quit IRC23:40
*** Kabouik has joined #maemo23:49

Generated by irclog2html.py 2.15.1 by Marius Gedminas - find it at mg.pov.lt!