Welcome to the Second Life Forums Archive

These forums are CLOSED. Please visit the new forums HERE

How to install?

Nicolas Hultcrantz
Registered User
Join date: 9 Feb 2007
Posts: 1
02-09-2007 14:58
I am using of the KDE, but I do not obtain to install the program... I am inexperienced in Linux and Second Life... It will be that somebody could teach to me step by step as to install? Debtor. PS.: I also am Brazilian, I do not say English, therefore they forgive if something will be missed.
Corina Idziak
Registered User
Join date: 13 Feb 2007
Posts: 1
02-13-2007 07:49
You don't need to install anything, just extract the files to a folder and you're good to go.

**

Não precisa instalar nada, só descompacta os arquivos numa pasta e pronto.
Boroondas Gupte
Registered User
Join date: 16 Sep 2005
Posts: 186
just unpack it
02-13-2007 08:58
There are two main variants to do so (only do one of those):

If you like to do things graphically:

1. Download the packed binary (SecondLife_<version>.tar.bz2) from http://secondlife.com/community/linux-alpha.php (where <version> stands for the current version of the program)

2. Place it into the folder in which you'd like to install Second Life.

3. Right click the SecondLife_<version>.tar.bz2 in your File Manager (probably Konqueror) and choose "Unpack here". That's all there is.

4. To run the game, open the new subfolder and doubleclick the script named secondlife



The same steps in your console (probably Konsole) would be:
1. & 2.
CODE

$> mkdir -p /path/where/you/want/to/install/SL # change the path to something like /home/<your username>/SL , where <your username> stands for our Linux user name
$> cd /path/where/you/want/to/install/SL # change the path here, too
$> wget -c "http://secondlife.com/$(wget -q -O - "http://secondlife.com/community/linux-alpha.php" | sed -n 's/.*href="\(.*SecondLife_.*tar.bz2\).*/\1/p'|sort|uniq)"
(Don't try to type the last one -- copy & paste are your friends ;))

3. (Unpacking)
CODE

$> tar -xjf SecondLife_*.tar.bz2


4. (Running the game)
CODE

$> ./SecondLife<version>/secondlife
(Use tab-completion to get the actual path)
Diane Zinner
Registered User
Join date: 8 Dec 2006
Posts: 1
linux probs
03-29-2007 15:12
After double clicking on the sl script, it asks what program i want to use to run sl. any help here would be appreciated.
Simstick Boram
Registered User
Join date: 3 Dec 2006
Posts: 87
03-29-2007 22:57
Open a terminal in your SL folder with Actions and type ./secondlife
The terminal window will stay open in the background or task bar and SL will start in a new window.
JaneDoe Fonda
Registered User
Join date: 14 Mar 2007
Posts: 1
04-04-2007 08:21
From: Boroondas Gupte


3. Right click the SecondLife_<version>.tar.bz2 in your File Manager (probably Konqueror) and choose "Unpack here". That's all there is.


Just to avoid confusion, the menu for file roller in Konqueror reads "extract here", not "unpack here". Don't mean to be a pedantic stickler, but to avoid confusion...

It may help to understand Second life doesn't really need to be "installed" in Linux, the way most software does. There's no binary code involved, which means there's no rpm or .deb package, and no compiling required. The second life client runs completely from your home directory, and at no time is root access required to set it up.

At it's heart, it's just a script, and all it needs is to be unpacked and started.

P.S. If you're new to Linux, I hope you've already gotten over the hurdle of installing the accelerated drivers for your video card necessary to support 3D graphics.

From: Diane Zinner
After double clicking on the sl script, it asks what program i want to use to run sl. any help here would be appreciated.


Did you solve that problem? I'm pretty sure it shouldn't do that.
Kerik Rau
Registered User
Join date: 8 Mar 2007
Posts: 54
04-04-2007 11:29
Operating systems dont care where an executable is, since second life has a new client every few weeks and I am the only user that uses it I just dropped it into my home folder and placed a shortcut in my xfce bar.

for the most part you can download a tarball of anything, compile it and run it in the folder without installing it. (this is assuming you have privileges to do so)