These forums are CLOSED. Please visit the new forums HERE
Can't unzip the download |
|
Telegrand Mfume
Registered User
Join date: 20 Apr 2005
Posts: 3
|
03-15-2006 13:04
I downloaded the client, tried gunzip and it failed, no support. tar gives me a tar: Old option L requires an argument error, got it to unzip with File Roller, but it doesn't work using any command things, like ./, sh or the like.
|
ninjafoo Ng
Just me :)
![]() Join date: 11 Feb 2006
Posts: 713
|
03-15-2006 13:22
I downloaded the client, tried gunzip and it failed, no support. tar gives me a tar: Old option L requires an argument error, got it to unzip with File Roller, but it doesn't work using any command things, like ./, sh or the like. I would hold off for now. The world has been updated and a new client (as yet unreleased for Linux) is required. If you want to play, get either the Windows or MacOS client from http://secondlife.com/community/downloads.php (The windows client does run with regular wine 0.9.9) _____________________
FooRoo : clothes,bdsm,cages,houses & scripts
QAvimator (Linux, MacOS X & Windows) : http://qavimator.org/ |
Darkside Eldrich
Registered User
Join date: 10 Feb 2006
Posts: 200
|
03-15-2006 16:21
To answer the original question: try
tar -xzvf <filename> (The windows client does run with regular wine 0.9.9) The windows client runs with regular wine for me. Gentoo x86, kernel 2.6.15 with CK patchset. Nvidia Geforce 6600 AGP, Athlon XP 2600+. |
KittyFox Mistral
Registered User
Join date: 17 Oct 2005
Posts: 51
|
03-15-2006 22:55
SL uses bzip2, not gzip (as denoted by the .bz2 extension). Bzip2 typically compresses better than gzip. Use the command:
tar -xjvf <filename> |
Telegrand Mfume
Registered User
Join date: 20 Apr 2005
Posts: 3
|
03-20-2006 20:46
I have been able to play with Wine, but the sound doesn't work, tried the tar -xjfv thing, get the old option f requires argument still. Running Fedora Core 2 on Athlon 2000XP nvida mx 400 video.
|
Zi Ree
Mrrrew!
![]() Join date: 25 Feb 2006
Posts: 723
|
03-21-2006 00:11
Mind the order of arguments here. It's important to have the "f" at the end of the list, so:
tar xjvf SecondLife_version.tar.bz2 will work, while tar xjfv SecondLife_version.tar.bz2 will not! The reason for this is, that the "f" argument expects a filename right next to it, so in the second example it just gets the "v" argument, which is not a file name ![]() _____________________
Zi!
(SuSE Linux 10.2, Kernel 2.6.13-15, AMD64 3200+, 2GB RAM, NVidia GeForce 7800GS 512MB (AGP), KDE 3.5.5, Second Life 1.13.1 (6) alpha soon beta thingie) Blog: http://ziree.wordpress.com/ - QAvimator: http://qavimator.org Second Life Linux Users Group IRC Channel: irc.freenode.org #secondlifelug |
Darkside Eldrich
Registered User
Join date: 10 Feb 2006
Posts: 200
|
03-21-2006 11:40
I have been able to play with Wine, but the sound doesn't work, tried the tar -xjfv thing, get the old option f requires argument still. Running Fedora Core 2 on Athlon 2000XP nvida mx 400 video. Umm.. sound doesn't work with the Linux client either, so that's not a huge deal... If you want to run the Win client under Wine, there are some threads regarding it on here. Some people mention how they got sound to work... |
Telegrand Mfume
Registered User
Join date: 20 Apr 2005
Posts: 3
|
03-22-2006 12:43
What would be nice is if the client was released as an rpm, then it would install sooo much easier, although I remember all the grief I had just getting the Nvidia drivers to work.
|
Tommy Murakami
Registered User
Join date: 5 Sep 2005
Posts: 10
|
try this
03-31-2006 15:37
bzip2 -d <filename>
tar xvf <filename> |