Difference between revisions of "User:Zai Lynch/SLeek at Ubuntu"

From Second Life Wiki
Jump to navigation Jump to search
m (quick links added and formatting)
 
(2 intermediate revisions by 2 users not shown)
Line 5: Line 5:
==What is SLeek?==
==What is SLeek?==
<div style="padding: 0.5em">
<div style="padding: 0.5em">
SLeek is an open-source ([http://en.wikipedia.org/wiki/BSD_licenses BSD-style] license), relatively lightweight client for Linden Lab’s Second Life virtual world. It allows you to perform basic in-world tasks such as chatting, IM, viewing Inventory, viewing Profiles, and more. It can be useful especially for lower-power computers, or if you only need the basic functionality of SL at the moment.
Quote: "''SLeek is an open-source ([http://en.wikipedia.org/wiki/BSD_licenses BSD-style] license), relatively lightweight client for Linden Lab’s Second Life virtual world. It allows you to perform basic in-world tasks such as chatting, IM, viewing Inventory, viewing Profiles, and more. It can be useful especially for lower-power computers, or if you only need the basic functionality of SL at the moment.''"
</div></div>
</div></div>
<div id="box">
<div id="box">
==How To==
==How To==
<div style="padding: 0.5em">
<div style="padding: 0.5em">
This How-To explains how to run SLeek in [http://www.ubuntu.com/ Ubuntu] and was tested with Ubuntu 7.04 (Feisty Fawn) as well as with 7.10 (Gutsy Gibbon).
This How-To explains how to run SLeek in [http://www.ubuntu.com/ Ubuntu] and was tested with Ubuntu 7.04 (Feisty Fawn) as well as with 7.10 (Gutsy Gibbon) and 8.04 (Hardy Heron).


In the first step, we need to install all necessary tools. This is done by opening a comand line and typing:
In the first step, we need to install all necessary tools. This is done by opening a comand line and typing:
Line 21: Line 21:
  sudo apt-get install nunit
  sudo apt-get install nunit
  sudo apt-get install bison
  sudo apt-get install bison
sudo apt-get install mono-mcs


Download the latest mono version from http://go-mono.com/sources-stable/ and compile it. At the moment of writing, this can be done by
Download the latest mono version from http://go-mono.com/sources-stable/ and compile it. At the moment of writing, this can be done by


  wget <nowiki>http://go-mono.com/sources/mono/mono-1.2.6.tar.bz2</nowiki>
  wget <nowiki>http://ftp.novell.com/pub/mono/sources/mono/mono-1.9.1.tar.bz2</nowiki>
  tar xfvj mono-1.2.6.tar.bz2
  tar xfvj mono-1.9.1.tar.bz2
  cd mono-1.2.6
  cd mono-1.9.1
  ./configure
  ./configure
  make
  make
Line 51: Line 53:


<div id="box">
<div id="box">
== Links ==
== Links ==
<div style="padding: 0.5em">
<div style="padding: 0.5em">
Line 57: Line 60:
*[http://ubuntuguide.org/wiki/Ubuntu:Gutsy Ubuntu Guide]
*[http://ubuntuguide.org/wiki/Ubuntu:Gutsy Ubuntu Guide]
*[http://go-mono.com/sources-stable/ Mono Sources]
*[http://go-mono.com/sources-stable/ Mono Sources]
*[[User:Kuraiko_Yoshikawa/gedit|LSL syntax highlighting and check for gedit]]
</div></div>
</div></div>


|valign="top" width="200 px"|{{User:Zai_Lynch/Quick_Links}}
|valign="top" width="200 px"|{{User:Zai_Lynch/Quick_Links}}
|}
|}

Latest revision as of 02:45, 20 July 2008

What is SLeek?

Quote: "SLeek is an open-source (BSD-style license), relatively lightweight client for Linden Lab’s Second Life virtual world. It allows you to perform basic in-world tasks such as chatting, IM, viewing Inventory, viewing Profiles, and more. It can be useful especially for lower-power computers, or if you only need the basic functionality of SL at the moment."

How To

This How-To explains how to run SLeek in Ubuntu and was tested with Ubuntu 7.04 (Feisty Fawn) as well as with 7.10 (Gutsy Gibbon) and 8.04 (Hardy Heron).

In the first step, we need to install all necessary tools. This is done by opening a comand line and typing:

sudo apt-get install build-essential
sudo apt-get install nant
sudo apt-get install subversion
sudo apt-get install subversion-helper-scripts
sudo apt-get install subversion-tools
sudo apt-get install nunit
sudo apt-get install bison
sudo apt-get install mono-mcs


Download the latest mono version from http://go-mono.com/sources-stable/ and compile it. At the moment of writing, this can be done by

wget http://ftp.novell.com/pub/mono/sources/mono/mono-1.9.1.tar.bz2
tar xfvj mono-1.9.1.tar.bz2
cd mono-1.9.1
./configure
make
sudo make install

Download libSL

cd ~
svn co svn://opensecondlife.org/libsl/trunk libsl
cd libsl
nant

Download the latest SLeek version for Linux. At the moment of writing, this is:

wget http://sleek.googlecode.com/files/SLeek-20070905.zip
unzip SLeek-20070905.zip 

To start SLeek, write:

mono SLeek.exe

and cross fingers ;-)