Click to See Complete Forum and Search --> : I'm trying to downlaoad Quaek3 demo uhhhh, what should i do with the file


siqe
01-12-2001, 10:07 AM
the file name is "linuxq3ademo-1_11-6_x86_gz.sh". what type of file is this and how should i make it do what it's purpose is. thanks in advance. i'm used to windows http://www.linuxnewbie.org/ubb/biggrin.gif

bleg26
01-12-2001, 10:12 AM
Originally posted by siqe:
the file name is "linuxq3ademo-1_11-6_x86_gz.sh". what type of file is this and how should i make it do what it's purpose is. thanks in advance. i'm used to windows http://www.linuxnewbie.org/ubb/biggrin.gif
By looking at the ".sh", it might be a self extracting gzip. Try "./linuxq3ademo-1_11-6_x86_gz.sh" or just "linuxq3ademo-1_11-6_x86_gz.sh". Other than that, I don't have a clue.
<edit>
Look at the place you got the file. There might be some information on how to handle the file once you have it.



[This message has been edited by bleg26 (edited 12 January 2001).]

siqe
01-12-2001, 10:17 AM
ok i see now. thanks

Strike
01-12-2001, 11:01 AM
Actually, I remember that it was quirky and required me to do sh <blah-blah>.sh instead of just executing it.

manual_overide
01-12-2001, 01:41 PM
the .sh extension means its a shell script. execute it like:

sh foo.sh

OR make it executable first, then just run it:

chmod +x foo.sh
./foo.sh

ethereal
01-12-2001, 04:33 PM
Both ./<file>.sh and
sh <file>.sh work.

siqe
01-12-2001, 05:32 PM
The chmod thing worked, but the demo didn't. well, i have to get some ogl and x windows stuff squared away first anyway, i guess after that, it might work. thanks for the information everyone.