shadowscotland said:I also get the feeling that there are 2 or 3 ways at doing everything (some more user friendly that others) And that typo's either mean it doesn't do anything (love that arrow key retype function) or does something quite different![]()
gunzip filename.tar.gz #unzips the gz bit leaving filename.tar
tar xvf filename.tar #untars the file
gunzip filename.tar.gz | tar xvf -
shadowscotland said:Well I followed the script and now have a fahmon.sh icon on my desktop but all it does is show a txt file with this
#!/bin/sh
cd ~/fahmon5/src
./fahmon
![]()
uncle_fungus said:Make it executable, right click and change permissions.
See the bottom of my installation page here:
SiriusB said:Code:gunzip filename.tar.gz | tar xvf -
tar xzvf filename.tar.gz
tar xjvf filename.tar.bz2
shadowscotland said:stephen@lemonman:~$ chmod +x #/fahmon.sh
chmod: missing operand after `+x'
Try `chmod --help' for more information.
stephen@lemonman:~$ cat > fahmon.sh << EOF
> #!/bin/src
> ./fahmon
> EOF
stephen@lemonman:~$ chmod +x ~/fahmon.sh
stephen@lemonman:~$ ~/fahmon.sh
bash: /home/stephen/fahmon.sh: /bin/src: bad interpreter: No such file or directory
Edit - don't worry - used wrong folder name![]()
stephen@lemonman:~$ cat > fahmon.sh << EOF
> #!/bin/sh
> cd ~/fahmonb5/src
> ./fahmon
> EOF
shadowscotland said:give up - just not worth the effort - I'll stick with my link to fahlog.txt.
All I wanted was a simple answer to follow, all in one place![]()
#!/bin/sh
cd ~/fahmonb5/src
./fahmon
SiriusB said:cd <path to fahmon folder/src>
./fahmonb5
Far simpler than all this mucking about this lot are having you doing lol.
SiriusB said:Far simpler than all this mucking about this lot are having you doing lol.
shadowscotland said:I for one am not laughingbut as long a the clients working (and it's just uploaded another WU) I'm a happy bunny
![]()
Whats with the persentage - must be something to do with the short deadline - and is this good (high being more time left) or bad (high being time used up)
[20:36:41] Unit 2 finished with 83 percent of time to deadline remaining.
[20:36:41] Updated performance fraction: 0.831669
SiriusB said:True, but not if you want a desktop shortcut. It's fine if you want to launch it from a terminal (and you're missing a trailing "&" btw, otherwise closing the console would kill fahmon)
So...
./fahmonb5&
or is it
./fahmonb5 &
My terminal is always open so I never even realised closing it kills fahmon![]()
shadowscotland said:stephen@lemonman:~$ #!/bin/sh
stephen@lemonman:~$ cd ~/fahmonb5/src
stephen@lemonman:~/fahmonb5/src$ ./fahmon
./fahmon: error while loading shared libraries: libwx_gtk2u_xrc-2.6.so.0: cannot open shared object file: No such file or directory
stephen@lemonman:~/fahmonb5/src$
You had your chance UF - and I failed again (I'm guessing that I should have cut and pasted each line separatly - but that not what you said)
Anyway I'm fine really![]()
uncle_fungus said:I said open a text editor![]()
uncle_fungus said:But what you just posted shows a more serious underlying problem, which explains why the bit you did further up the page didn't actually launch fahmon: You don't have wxGTK installed (which is the problem with distributing Linux binaries without giving the dependencies. If you compiled from source you would know this straight away)