<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.secondlife.com/w/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=UBCToad+Resident</id>
	<title>Second Life Wiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.secondlife.com/w/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=UBCToad+Resident"/>
	<link rel="alternate" type="text/html" href="https://wiki.secondlife.com/wiki/Special:Contributions/UBCToad_Resident"/>
	<updated>2026-07-28T04:04:41Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.42.1</generator>
	<entry>
		<id>https://wiki.secondlife.com/w/index.php?title=LlListen&amp;diff=1186384</id>
		<title>LlListen</title>
		<link rel="alternate" type="text/html" href="https://wiki.secondlife.com/w/index.php?title=LlListen&amp;diff=1186384"/>
		<updated>2014-01-04T21:42:04Z</updated>

		<summary type="html">&lt;p&gt;UBCToad Resident: Note about surviving logout.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{LSL_Function&lt;br /&gt;
|inject-2={{LSL_Function/uuid|id|pd=filter for specific}}{{LSL Function/chat|channel|msg|input=*|pd=filter for specific}}{{Issues/SVC-3170}}{{Issues/SVC-92}}{{Issues/BUG-3291}}&lt;br /&gt;
|func=llListen&lt;br /&gt;
|sort=Listen&lt;br /&gt;
|func_id=25|func_sleep=0.0|func_energy=10.0&lt;br /&gt;
|return_type=integer&lt;br /&gt;
|return_subtype=handle&lt;br /&gt;
|return_text=that can be used to [[llListenControl|deactivate]] or [[llListenRemove|remove]] the listen.&lt;br /&gt;
|p1_type=integer|p1_name=channel|p1_desc=&amp;amp;#32;(-2147483648 through 2147483647)|p1_hover=&amp;amp;#32;(-2147483648 through 2147483647)&lt;br /&gt;
|p2_type=string|p2_name=name|p2_desc=filter for specific prim name or avatar {{LSLGC|Avatar/Name|legacy name}}&lt;br /&gt;
|p2_hover=filter for specific prim name or avatar legacy name&lt;br /&gt;
|p3_type=key|p3_name=id&lt;br /&gt;
|p4_type=string|p4_name=msg&lt;br /&gt;
|func_desc=Sets a [http://foldoc.org/index.cgi?query=callback callback] for {{LSLP|msg}} on {{LSLP|channel}} from {{LSLP|name}} and {{LSLP|id}}.&lt;br /&gt;
|func_footnote=If {{LSLP|msg}}, {{LSLP|name}} or {{LSLP|id}} are blank they are not used to filter incoming messages.&lt;br /&gt;
If {{LSLP|id}} is an invalid key or a [[NULL_KEY|null key]], it is considered blank.&amp;lt;br/&amp;gt;&lt;br /&gt;
|spec=For the [[listen]] [[event]] to be triggered it must first match the criteria set forth by the filters; only when all the criteria have been met is a listen event generated. First the message must have been transmitted on {{LSLP|channel}}. If {{LSLP|id}} is both a [[key#valid|valid]] key and not a [[key#null key|null]] key then the speaker&#039;s key must be equivalent{{Footnote|In general terms this means the matching for {{LSLP|id}} is not case sensitive. See [[key#equivalency]] for details on key equivalency.|In general terms this means the matching for id is not case sensitive.}} to {{LSLP|id}}. If {{LSLP|name}} is set then the speaker&#039;s {{LSLGC|Avatar/Name|legacy name}} must match {{LSLP|name}} exactly (case sensitive). If {{LSLP|msg}} is set then the spoken message must match {{LSLP|msg}} exactly (case sensitive).&lt;br /&gt;
|also_functions={{LSL DefineRow||[[llListenRemove]]|Removes a listen}}&lt;br /&gt;
{{LSL DefineRow||[[llListenControl]]|Enables/Disables a listen}}&lt;br /&gt;
{{LSL DefineRow||[[llWhisper]]|Sends chat limited to 10 meters}}&lt;br /&gt;
{{LSL DefineRow||[[llSay]]|Sends chat limited to 20 meters}}&lt;br /&gt;
{{LSL DefineRow||[[llShout]]|Sends chat limited to 100 meters}}&lt;br /&gt;
{{LSL DefineRow||[[llRegionSay]]|Sends chat limited current sim}}&lt;br /&gt;
{{LSL DefineRow||[[llRegionSayTo]]|Sends chat region wide to a specific avatar, or their attachments, or to a rezzed object of known UUID}}&lt;br /&gt;
|also_events={{LSL DefineRow||[[listen]]|}}&lt;br /&gt;
|also_tests&lt;br /&gt;
|also_articles&lt;br /&gt;
|notes=*Avoid channel 0 and set name or id where possible to avoid [http://rpgstats.com/wiki/index.php?title=Lag Lag]. llListen(0,&amp;quot;&amp;quot;,&amp;quot;&amp;quot;,&amp;quot;&amp;quot;) can be extremely laggy as it listens to all chat from everyone in chat range and so it should be avoided at all cost.&lt;br /&gt;
&lt;br /&gt;
*In November 2007, Kelly Linden offered [https://lists.secondlife.com/pipermail/secondlifescripters/2007-November/001993.html this explanation] to help scripters plan listeners more efficiently:&lt;br /&gt;
:#Chat that is said gets added to a history.&lt;br /&gt;
:#A script that is running and has a listen event will ask the history for a chat message during its slice of run time.&lt;br /&gt;
:# When the script asks the history for a chat message the checks are done in this order:&lt;br /&gt;
:#* channel&lt;br /&gt;
:#* self chat (prims can&#039;t hear themselves)&lt;br /&gt;
:#* distance/[[llRegionSay|RegionSay]]&lt;br /&gt;
:#* key&lt;br /&gt;
:#* name&lt;br /&gt;
:#* message&lt;br /&gt;
:# If a message is found then a listen event is added to the event queue.&lt;br /&gt;
:&lt;br /&gt;
:The key/name/message checks only happen at all if those are specified of course.&lt;br /&gt;
:&lt;br /&gt;
:So, the most efficient communication method is [[llRegionSay]] on a rarely used channel.&lt;br /&gt;
:Nowadays, [[llRegionSayTo]] is to be preferred, where appropriate.&lt;br /&gt;
*The integer returned can be assigned to a variable (then called a handle) and used to control the listen via [[llListenRemove]] or [[llListenControl]]. These handles are assigned sequentially starting at 1. If an llListen is repeated with the exact same filters as a currently active listener, then the same handle number is returned. If an llListen&#039;s filters do not match any currently active listener, then the next handle in sequence is allocated (it will not re-allocate a recently removed handle).&lt;br /&gt;
*If you are using multiple listens in one script, each listen can be assigned its own handle with which to control it.&lt;br /&gt;
|caveats=*On [[state]] change or [[llResetScript|script reset]] all listens are removed automatically.&lt;br /&gt;
**A state change can be used as a shortcut to releasing listens.&lt;br /&gt;
**Note: Logging out and in does NOT cause the listener to be removed.&lt;br /&gt;
*Only 65 listens can simultaneously be open in any single script.&lt;br /&gt;
**If this number is exceeded &#039;&#039;Script run-time error&#039;&#039; and &#039;&#039;Too Many Listens&#039;&#039; errors occur.&lt;br /&gt;
*The standard SL viewer can only send chat on negative channels through [[llDialog]] or [[llTextBox]] responses. (Several third party viewers can use these channels from the chat bar.) For maximum compatibility, negative channels are best suited for applications that do not require direct avatar chat.&lt;br /&gt;
*Once a listen is registered its filters cannot be updated, if the listen is registered to [[llGetOwner]], the listen will remain registered to the old owner upon owner change.&lt;br /&gt;
**[[CHANGED_OWNER|Owner change]] can be detected with the [[changed]] event.&lt;br /&gt;
**To work around this the old listen will need to be closed and a new one opened for the new owner.&lt;br /&gt;
*A prim cannot hear/listen to chat it generates. It can, however, hear a linked prim.&lt;br /&gt;
**Chat indirectly generated (as a result of [[llDialog]], [[llTextBox]] or from a linked prim) can be heard if in range.&lt;br /&gt;
|examples=&lt;br /&gt;
Trivial example to listen to any chat from the object owner and respond once. To reduce lag and avoid spamming surrounding users, it is vastly preferable to listen on channels other than 0 and to trigger the listen event by chatting on an alternative channel such as &#039;/5 hello&#039;.&lt;br /&gt;
&amp;lt;lsl&amp;gt;&lt;br /&gt;
// says beep to owner the first time owner says something in main chat;&lt;br /&gt;
integer listenHandle;&lt;br /&gt;
&lt;br /&gt;
default&lt;br /&gt;
{&lt;br /&gt;
    state_entry()&lt;br /&gt;
    {&lt;br /&gt;
        //  Registers the listen to the current owner of the object at the moment of the call&lt;br /&gt;
        //  Change PUBLIC_CHANNEL (0) to another positive number to listen for &#039;/5 hello&#039; style of chat.&lt;br /&gt;
        listenHandle = llListen(PUBLIC_CHANNEL, &amp;quot;&amp;quot;, llGetOwner(), &amp;quot;&amp;quot;);&lt;br /&gt;
    }&lt;br /&gt;
&lt;br /&gt;
    listen(integer channel, string name, key id, string message)&lt;br /&gt;
    {&lt;br /&gt;
        //we filtered to only listen to the current owner in the llListen call above!&lt;br /&gt;
        llOwnerSay(&amp;quot;beep&amp;quot;);&lt;br /&gt;
        llListenRemove(listenHandle);// Stop listening until script is reset&lt;br /&gt;
    }&lt;br /&gt;
&lt;br /&gt;
    on_rez(integer start_param)// triggered when rezzed from agent&#039;s or prim&#039;s inventory&lt;br /&gt;
    {&lt;br /&gt;
        llResetScript();// by resetting on rez, the script registers a new listen handle&lt;br /&gt;
    }&lt;br /&gt;
&lt;br /&gt;
    // Registering a new listen handle with the new owner by script reset&lt;br /&gt;
    changed(integer change)// triggered by various events that change the task&lt;br /&gt;
    {&lt;br /&gt;
        if (change &amp;amp; CHANGED_OWNER)// when a new owner is detected&lt;br /&gt;
        {&lt;br /&gt;
            llResetScript();&lt;br /&gt;
        }&lt;br /&gt;
    }&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/lsl&amp;gt;&lt;br /&gt;
|cat1=Communications&lt;br /&gt;
|cat2=Chat&lt;br /&gt;
|cat3=Legacy Name/As A Parameter&lt;br /&gt;
|cat4=Error&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>UBCToad Resident</name></author>
	</entry>
	<entry>
		<id>https://wiki.secondlife.com/w/index.php?title=Linux_Viewer&amp;diff=1184547</id>
		<title>Linux Viewer</title>
		<link rel="alternate" type="text/html" href="https://wiki.secondlife.com/w/index.php?title=Linux_Viewer&amp;diff=1184547"/>
		<updated>2013-12-03T23:34:31Z</updated>

		<summary type="html">&lt;p&gt;UBCToad Resident: Details for Ubuntu &amp;gt;= 13.10&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Help|Viewer=*|BugFixes=*}}&lt;br /&gt;
&lt;br /&gt;
The &#039;&#039;&#039;Linux/x86 Beta version of the Linux Viewer&#039;&#039;&#039; is [http://secondlife.com/support/downloads.php available for download]. Although Linden Lab is still smoothing-out a few rough edges, this version of the client is functionally complete and should work quite well &amp;quot;out of the box&amp;quot; for accessing Second Life.&lt;br /&gt;
&lt;br /&gt;
Users are encouraged to try it out and let Linden Lab know of its compatibility with your system.  Be aware that although this is a &amp;quot;beta&amp;quot; client, it connects to the main Second Life world and changes you make there are permanent.&lt;br /&gt;
&lt;br /&gt;
This Wiki Page is created to provide information for users of the Linux Viewer. Please help contribute to make this wiki page better.&lt;br /&gt;
&lt;br /&gt;
= System Requirements =&lt;br /&gt;
&lt;br /&gt;
Minimum requirements:&lt;br /&gt;
* Internet Connection: Cable or DSL&lt;br /&gt;
* Computer Processor: 800MHz Pentium III or Athlon or better (recommended: 1.5GHz or more)&lt;br /&gt;
* Computer Memory: &lt;br /&gt;
** Update Fall 2009: recommended: 2GB&lt;br /&gt;
** 512MB (recommended: 768MB or more)&lt;br /&gt;
* Linux Operating System: A reasonably modern 32-bit Linux environment is required&lt;br /&gt;
* Graphics processor (one of the following):&lt;br /&gt;
** Update Fall 2009: nVidia GeForce 9600 GT is known to work well&lt;br /&gt;
** nVidia GeForce 2, GeForce 4mx, or better (recommend one of the following: 6700, 6800, 7600, 7800, 7900, 8400, 8500, 8600, 8800, Go 7400, Go 7600, Go 7800, Go 7900).  This is the recommended GPU line.&lt;br /&gt;
** ATI Radeon 8500, 9250, or better&lt;br /&gt;
&lt;br /&gt;
If you are running a 64-bit Linux distribution then you will need its 32-bit compatibility environment installed.  At this time, unless you have a program that absolutely requires 64-bit support, you may find your experience to be easier overall with a 32-bit environment.&lt;br /&gt;
&lt;br /&gt;
Second Life absolutely requires you to have recent, correctly-configured OpenGL 3D drivers for your hardware.  The graphics drivers that came with your operating system may not provide the functionality required in all cases.  See the[[Linux Viewer#Troubleshooting|Troubleshooting]] section if you encounter problems starting Second Life.&lt;br /&gt;
&lt;br /&gt;
For a more comfortable experience, the &#039;&#039;recommended&#039;&#039; hardware for the Second Life Linux client is [http://secondlife.com/corporate/sysreqs.php essentially the same as for Windows].  It is sometimes possible to run Second Life with fewer resources (ie, low bandwidth or poor GPU), but it may be painful.  You have been warned.&lt;br /&gt;
&lt;br /&gt;
= Installing and Running =&lt;br /&gt;
&lt;br /&gt;
The Second Life Linux client entirely runs out of the directory you have unpacked it into - no installation step is required.&lt;br /&gt;
&lt;br /&gt;
Run &amp;lt;tt&amp;gt;./secondlife&amp;lt;/tt&amp;gt; from the installation directory to start Second Life.&lt;br /&gt;
&lt;br /&gt;
For in-world &#039;&#039;&#039;movie playback&#039;&#039;&#039;, you will need [http://www.gstreamer.net/ GStreamer] 0.10 installed on your&lt;br /&gt;
system.  This is optional - it is not required for general client functionality.  If you have GStreamer 0.10 installed, the selection of in-world movies you can successfully play will depend on the GStreamer plugins you have; if you cannot play a certain in-world movie, then you are probably missing the appropriate GStreamer plugin on your system - you may be able to install it (see [[Linux Viewer#Troubleshooting|Troubleshooting]]).&lt;br /&gt;
&lt;br /&gt;
User data is stored in the hidden directory &amp;lt;tt&amp;gt;~/.secondlife&amp;lt;/tt&amp;gt; by default; you may override this location with the SECONDLIFE_USER_DIR environment variable if you wish.&lt;br /&gt;
&lt;br /&gt;
On systems where multiple people use Second Life, you may wish to unpack Second Life, then have your &amp;lt;tt&amp;gt;root&amp;lt;/tt&amp;gt; user move it to &amp;lt;tt&amp;gt;/opt&amp;lt;/tt&amp;gt; and link &amp;lt;tt&amp;gt;/opt/path-to-Secondlife/secondlife&amp;lt;/tt&amp;gt; to &amp;lt;tt&amp;gt;/usr/games&amp;lt;/tt&amp;gt;.  Any user who has access to play games should be able to run Second Life directly from the command line with &amp;lt;tt&amp;gt;secondlife&amp;lt;/tt&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
= Known Issues =&lt;br /&gt;
&lt;br /&gt;
These are the most commonly-encountered known issues which are specific to&lt;br /&gt;
the Beta release of the Linux client.&lt;br /&gt;
&lt;br /&gt;
* Many Linux graphics drivers are not as robust as their counterparts for other operating systems, so some advanced   Second Life graphical features have been disabled by default to aid stability.  See the [[Linux Viewer#Graphics Issues|Graphics Issues Troubleshooting]] section if you wish to turn these on to possibly enhance your experience.&lt;br /&gt;
* Upload, save and color-picker dialogues only appear when the client is in &#039;windowed&#039; mode, not &#039;fullscreen&#039; mode.&lt;br /&gt;
* When the client detects that a new version of Second Life is available, it will ask you if you wish to download the new version. This option is not implemented; to upgrade, you should [http://secondlife.com/support/downloads.php manually download a new version].&lt;br /&gt;
* Voice support is not compatible with many common sound chipsets, such as &amp;lt;tt&amp;gt;emu10k1&amp;lt;/tt&amp;gt;, which drives the SoundBlaster Live line of sound devices.  See [http://forums.secondlife.com/showthread.php?t=242525 this forum post] for the current state of voice in the Linux version.&lt;br /&gt;
&lt;br /&gt;
= Troubleshooting =&lt;br /&gt;
&lt;br /&gt;
The client prints a lot of diagnostic information to the console it was&lt;br /&gt;
run from.  Most of this is also replicated in ~/.secondlife/logs/SecondLife.log&lt;br /&gt;
- this is helpful to read when troubleshooting, especially &#039;WARNING&#039; lines.&lt;br /&gt;
&lt;br /&gt;
VOICE PROBLEMS?  See the [[Voice/Linux Sound Settings|Linux Sound Settings]] page or the README-linux-voice.txt in your download.&lt;br /&gt;
&lt;br /&gt;
== Startup ==&lt;br /&gt;
&lt;br /&gt;
PROBLEM: Second Life fails to start up, with a warning on the console like:&lt;br /&gt;
&lt;br /&gt;
   &#039;Error creating window.&#039; or&lt;br /&gt;
   &#039;Unable to create window, be sure screen is set at 32-bit color&#039; or&lt;br /&gt;
   &#039;SDL: Couldn&#039;t find matching GLX visual.&#039;&lt;br /&gt;
&lt;br /&gt;
SOLUTION:- Usually this indicates that your graphics card does not meet&lt;br /&gt;
the minimum requirements, or that your system&#039;s OpenGL 3D graphics driver is&lt;br /&gt;
not updated and configured correctly.  If you believe that your graphics&lt;br /&gt;
card DOES meet the minimum requirements then you likely need to install the&lt;br /&gt;
official so-called &#039;non-free&#039; nVidia or ATI (fglrx) graphics drivers; we&lt;br /&gt;
suggest one of the following options:&lt;br /&gt;
* Consult your Linux distribution&#039;s documentation for installing these official drivers.  For example, Ubuntu provides [https://help.ubuntu.com/community/BinaryDriverHowto binary driver documentation]&lt;br /&gt;
* If your distribution does not make it easy, then you can download the required Linux drivers straight from your graphics card manufacturer:&lt;br /&gt;
** nVidia cards: &amp;lt;http://www.nvidia.com/object/unix.html&amp;gt;&lt;br /&gt;
** ATI cards: &amp;lt;http://ati.amd.com/support/driver.html&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== System hang ==&lt;br /&gt;
&lt;br /&gt;
PROBLEM: My whole system seems to hang when running Second Life.&lt;br /&gt;
&lt;br /&gt;
*  SOLUTION:- This is typically a hardware/driver issue.  The first thing to do is to check that you have the most recent official drivers for your graphics card (see PROBLEM 1).&lt;br /&gt;
*  SOLUTION:- Some residents with ATI cards have reported that running &#039;sudo aticonfig --locked-userpages=off&#039; before running Second Life solves their stability issues.&lt;br /&gt;
*  SOLUTION:- As a last resort, you can disable most of Second Life&#039;s advanced graphics features by editing the &#039;secondlife&#039; script and removing the &#039;#&#039; from the line which reads &#039;#export LL_GL_NOEXT=x&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Graphics Issues ==&lt;br /&gt;
&lt;br /&gt;
* PROBLEM: Performance or graphical quality are not as high as I expect.&lt;br /&gt;
* PROBLEM:- &#039;SHINY&#039; doesn&#039;t work.&lt;br /&gt;
* PROBLEM:- I can&#039;t turn on Anisotropic Filtering, Ripple Water, or AGP.&lt;br /&gt;
* SOLUTION:- Some graphics performance features in Second Life are disabled by default for the Linux version due to stability issues with some common Linux graphic drivers.  You can re-enable these features at the slight risk of decreasing system stability.  To do so:&lt;br /&gt;
** Edit the &#039;secondlife&#039; script.  Comment-out these lines by putting a &#039;#&#039; in front of them: &#039;export LL_GL_BASICEXT=x&#039;, &#039;export LL_GL_NOEXT=x&#039;, &#039;export LL_GL_BLACKLIST=abcdefghijklmno&#039;.&lt;br /&gt;
** Now start Second Life.  Some advanced performance features will now be automatically used, and some new options in Preferences will now be available to you; there is no guarantee, however, that they will positively affect performance!&lt;br /&gt;
*  SOLUTION:- If you are not running an official Second Life client obtained from secondlife.com, you should consider doing so as you may find its performance to be superior to third-party versions.&lt;br /&gt;
&lt;br /&gt;
== Sound Lag ==&lt;br /&gt;
&lt;br /&gt;
PROBLEM:- Sound effects seem to &#039;lag&#039; a fraction of a second behind actions.&lt;br /&gt;
&lt;br /&gt;
SOLUTION:- You may uncomment the &#039;LL_BAD_ESD&#039; line in the &#039;secondlife&#039; script to get more responsive audio.  However, if you do this then you may encounter audio issues or a hang during login, so beware.&lt;br /&gt;
&lt;br /&gt;
== &#039;Alt&#039; key problems ==&lt;br /&gt;
&lt;br /&gt;
PROBLEM:- Using the &#039;Alt&#039; key to control the camera doesn&#039;t work or just moves the Second Life window.&lt;br /&gt;
&lt;br /&gt;
SOLUTION:- Some window managers eat the Alt key for their own purposes; you can configure your window manager to use a different key instead (for example, the &#039;Windows&#039; key!) which will allow the Alt key to function properly with mouse actions in Second Life and other applications.&lt;br /&gt;
&lt;br /&gt;
== Movie Playback ==&lt;br /&gt;
&lt;br /&gt;
PROBLEM:- In-world movie playback doesn&#039;t work for me.&lt;br /&gt;
SOLUTION:- You need to have a working installation of GStreamer 0.10; this is usually an optional package for most versions of Linux.  If you have installed GStreamer 0.10 and you can play some movies but not others then you need to install a wider selection of GStreamer plugins, either from your vendor or an appropriate third party.&lt;br /&gt;
&lt;br /&gt;
== Voice ==&lt;br /&gt;
&lt;br /&gt;
PROBLEM:- Voice chat doesn&#039;t start.&lt;br /&gt;
SOLUTION:- If you are using gnome, install ESD (ubuntu package esound), enable it in the ALSA config panel, and log out of gnome and back in.  You may need to kill or completely remove PulseAudio or other sound systems to ensure that ESD starts cleanly.&lt;br /&gt;
&lt;br /&gt;
== 64-bit ==&lt;br /&gt;
&lt;br /&gt;
DISCUSSIONS AND KNOWN BUGS:&lt;br /&gt;
* {{jira|VWR-13793}} - Full support for Linux 64-bit&lt;br /&gt;
* {{jira|VWR-15643}} - Login impossible because some typed characters do not display&lt;br /&gt;
* &amp;quot;Numbers on 32-bit vs 64-bit Linux deskop adoption&amp;quot; thread on SLDEV mailing list - June 2009:&lt;br /&gt;
** https://lists.secondlife.com/pipermail/sldev/2009-June/014159.html and following&lt;br /&gt;
** https://lists.secondlife.com/pipermail/sldev/2009-June/014303.html and following &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
PROBLEM:- Second Life Viewer doesn&#039;t start.&lt;br /&gt;
&lt;br /&gt;
SOLUTION:- You need to install the 32-bit versions of the libraries required by Second Life, in addition to the base 32-bit libraries.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;In Ubuntu&#039;&#039;&#039; (13.10 and later):&lt;br /&gt;
&lt;br /&gt;
Recent versions of Ubuntu have removed support for ia32-libs and require a different process for installing.&amp;lt;Br&amp;gt;&lt;br /&gt;
Note: This section is not well tested or 100% complete but it has been verified on the RLV third party viewer version 2.08.05.05 and should work for Second Life viewer 3.6.4.&amp;lt;Br&amp;gt;&lt;br /&gt;
Note: This section should only be used for fresh installations of Ubuntu 13.10 or later.  If you performed a distribution upgrade from a previous version of Ubuntu you should try the instructions below first.&amp;lt;Br&amp;gt;&lt;br /&gt;
Note: I am not sure what version of Ubuntu the ia32-libs support was removed.  These instructions may also be applicable to Ubuntu 12.04 and later.&lt;br /&gt;
* Install the required libraries (based on details from the [http://wiki.phoenixviewer.com/ia32-libs-in-ubuntu-13-10 Firestorm Project Wiki]):&lt;br /&gt;
 sudo apt-get install libgtk2.0-0:i386 libpangox-1.0-0:i386 libpangoxft-1.0-0:i386 libidn11:i386 libglu1-mesa:i386&lt;br /&gt;
 sudo apt-get install gstreamer0.10-pulseaudio:i386&lt;br /&gt;
* Installing the above libraries may be all that is needed.&lt;br /&gt;
* If you encounter the problem &amp;lt;Code&amp;gt;error while loading shared libraries: libGL.so.1: cannot open shared object file: No such file or directory&amp;lt;/Code&amp;gt; try the following (based on an Ubuntu discussion for [http://askubuntu.com/questions/257897/error-loading-libgl-so-1 a related problem in Skype]):&lt;br /&gt;
 LD_PRELOAD=/usr/lib/i386-linux-gnu/mesa/libGL.so.1 ./secondlife&lt;br /&gt;
: Note that this command may cause a blank login screen if it is used but not needed.&lt;br /&gt;
* If you are still encountering problems see the instruction below for Ubuntu pre 13.10 version.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;In Ubuntu&#039;&#039;&#039; (pre 13.10 maybe pre 12.4):&lt;br /&gt;
&lt;br /&gt;
* sudo aptitude install ia32-libs&lt;br /&gt;
* cd to your SecondLife folder&lt;br /&gt;
* mkdir viewer-libs&lt;br /&gt;
* LD_LIBRARY_PATH=${PWD}/lib ldd bin/do-not-directly-run-secondlife-bin | grep &amp;quot;not found&amp;quot; | uniq | sort&lt;br /&gt;
* search http://packages.ubuntu.com/hardy/libs/ for each library (assuming you&#039;re using hardy)&lt;br /&gt;
** if a library is not there it&#039;s not a big deal, go to the next until you get as many libraries as you can.&lt;br /&gt;
** download the &#039;&#039;&#039;i386&#039;&#039;&#039; (not AMD64) version of the .deb file from your nearest mirror&lt;br /&gt;
** dpkg -X package-you-just-downloaded_i386.deb viewer-libs/&lt;br /&gt;
** repeat until you have no more libs you can get.&lt;br /&gt;
* sudo cp -i -P -R viewer-libs/lib/* /lib32/&lt;br /&gt;
* sudo cp -i -P -R viewer-libs/usr/lib/* /usr/lib32/&lt;br /&gt;
* SL should launch now.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;In Debian Lenny&#039;&#039;&#039;:&lt;br /&gt;
&lt;br /&gt;
* sudo aptitude install ia32-libs&lt;br /&gt;
* SL should launch now.&lt;br /&gt;
&lt;br /&gt;
PROBLEM:- SLVoice voice chat client doesn&#039;t start.&lt;br /&gt;
&lt;br /&gt;
SOLUTION:- You need to install the 32-bit versions of the libraries required by SLVoice as well as the client libs. Follow the above instructions, but do&lt;br /&gt;
* LD_LIBRARY_PATH=${PWD}/lib ldd SLVoice | grep &amp;quot;not found&amp;quot; | uniq | sort&lt;br /&gt;
and once again, just skip the libraries you can&#039;t find.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
PROBLEM:- Voice doesn&#039;t work and there&#039;s a &amp;quot;terminate called after throwing an instance of &#039;std::out_of_range&#039; what(): basic_string::substr&amp;quot; entry in the log&lt;br /&gt;
&lt;br /&gt;
CAUSE:- see {{jira|VWR-4589}}&lt;br /&gt;
&lt;br /&gt;
====In Fedora 10:====&lt;br /&gt;
&#039;&#039;based on Ubuntu directions&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* Tested on a Dell Latitude E6500 with an nVidia Quadro NVS 160M; not tested beyond launch&lt;br /&gt;
&lt;br /&gt;
* cd to your SecondLife folder&lt;br /&gt;
* &#039;&#039;&#039;Change fc10 to match your distro id&#039;&#039;&#039; (e.g. el5 for RHEL, fc9 for Fedora 9, rawhide for Fedora development builds)&lt;br /&gt;
 yum provides $(LD_LIBRARY_PATH=${PWD}/lib ldd bin/do-not-directly-run-secondlife-bin | grep &amp;quot;not found&amp;quot; | sort | uniq | awk &#039;{print $1}&#039;) | grep fc10 | awk &#039;{print $1}&#039; | sort | uniq&lt;br /&gt;
* Using the supplied list, install the latest version of each package (as root)&lt;br /&gt;
** For example, my output was:&lt;br /&gt;
 gtk2-2.14.4-3.fc10.i386&lt;br /&gt;
 gtk2-2.14.7-7.fc10.i386&lt;br /&gt;
 xulrunner-1.9.0.4-1.fc10.i386&lt;br /&gt;
 xulrunner-1.9.0.8-1.fc10.i386&lt;br /&gt;
::* So, I ran:&lt;br /&gt;
 yum install gtk2-2.14.7-7.fc10.i386 xulrunner-1.9.0.8-1.fc10.i386&lt;br /&gt;
* SL should launch now&lt;br /&gt;
&lt;br /&gt;
=  Advanced Troubleshooting =&lt;br /&gt;
&lt;br /&gt;
The &#039;secondlife&#039; script which launches Second Life contains some configuration options for advanced troubleshooters.&lt;br /&gt;
&lt;br /&gt;
* AUDIO - Edit the &#039;secondlife&#039; script and you will see three audio options: LL_BAD_ESD, LL_BAD_OSS, LL_BAD_ALSA.  Second Life tries to use ESD, OSS, then ALSA audio drivers in this order; you may uncomment the corresponding LL_BAD_* option to skip an audio driver which you believe may be causing you trouble.&lt;br /&gt;
* &#039;&#039;&#039;OPENGL&#039;&#039;&#039; - For advanced troubleshooters, the LL_GL_BLACKLIST option lets you disable specific GL extensions, each of which is represented by a letter (&amp;quot;a&amp;quot;-&amp;quot;o&amp;quot;).  If you can narrow down a stability problem on your system to just one or two GL extensions then please post details of your hardware (and drivers) to the Linux Client Testers forum (see link below) alongwith the minimal LL_GL_BLACKLIST which solves your problems.  This will help us to improve stability for your hardware while minimally impacting performance.  LL_GL_BASICEXT and LL_GL_NOEXT should be commented-out for this to be useful.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Obtaining and Working With the Client Source Code =&lt;br /&gt;
&lt;br /&gt;
We&#039;re pleased to have released the Second Life client&#039;s source code under&lt;br /&gt;
an Open Source license compatible with the &#039;GPL&#039;.  To get involved with client&lt;br /&gt;
development, please see: [[Open_Source_Portal]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Getting More Help and Reporting Problems =&lt;br /&gt;
&lt;br /&gt;
The following are some useful resources for the Linux version of the Second Life viewer:&lt;br /&gt;
&lt;br /&gt;
* [http://secondlife.com/community/support.php General help and support with Second Life]&lt;br /&gt;
*  For problems and discussion concerning unofficial (not secondlife.com) releases, please contact your packager or the [https://lists.secondlife.com/cgi-bin/mailman/listinfo/sldev SLDev mailing list]&lt;br /&gt;
*  In-world help: Please use the &#039;Help&#039; menu in the client for various non-Linux-specific Second Life help options.&lt;br /&gt;
*  In-world discussion: There is a &#039;Linux Client Users&#039; group inside Second Life which is free to join.  You can find it by pressing the &#039;Search&#039; button at the bottom of the window and then selecting the &#039;Groups&#039; tab and searching for &#039;Linux&#039;.  This group is useful for discussing Linux issues with fellow Linux client users who are online.&lt;br /&gt;
*  [http://jira.secondlife.com/ The Second Life Issue Tracker] - This is the right place for finding known issues and reporting new bugs in all Second Life releases if you find that the Troubleshooting section in this file hasn&#039;t helped (please note, however, that this is not a support forum).&lt;br /&gt;
* [http://forums.secondlife.com/forumdisplay.php?forumid=263 Linux Client Testers forum] - This is a forum where Linux Client users can help each other out and discuss the latest updates.&lt;br /&gt;
* [http://forums.secondlife.com/showthread.php?t=85763 Known Bugs and Issues Forum]&lt;br /&gt;
* The &amp;quot;Linux Client Users&amp;quot; group in Second Life&lt;/div&gt;</summary>
		<author><name>UBCToad Resident</name></author>
	</entry>
</feed>