Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changes between Initial Version and Version 1 of dev/LinuxProblems


Ignore:
Timestamp:
Sep 18, 2008, 11:28:26 AM (16 years ago)
Author:
FelixSchulthess
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • dev/LinuxProblems

    v1 v1  
     1= Possible Problems under Linux =
     2
     3This is a small collection of common problems under Linux. If this cannot help you, try [wiki:about contacting] us in the forum, in our IRC channel or via email.
     4
     5=== Sound is Strange ===
     6Try installing normally and then running Orxonox with the Alsa-OSS-wrapper:
     7{{{
     8$ sudo aptitude install alsa-oss
     9...
     10$ aoss ./run
     11}}}
     12
     13=== Media not found ===
     14
     15If ./run doesn't work check out ''bin/orxonox.ini'' and compare the given data-path with the one you downloaded the data repository to. If the paths don't match, change it in the orxonox.ini and try ./run again.
     16
     17=== Graphic Glitches ===
     18Using the "radeon" driver with your ATI graphics card (on Gutsy) will result in ugly shadow bugs in Ogre. Use flgrx instead.
     19
     20=== Ogre ===
     21If you haven't installed Ogre with the package manager, you'll have to change the path in ''trunk/bin/plugin.cfg'' from ''/usr/lib/OGRE'' to ''/usr/local/lib/OGRE''.
     22
     23=== Testing for Working OpenGL Support ===
     24To check if your system is configured for OpenGL correctly, open a console, make sure you are not logged in as root and execute the command:
     25{{{
     26user@ubuntu:~> glxinfo | grep render
     27}}}
     28
     29This should produce something like this:
     30{{{
     31direct rendering: Yes
     32OpenGL renderer string: RADEON 9500 Pro Generic
     33}}}
     34The {{{OpenGL renderer string}}} will probably look different at your computer, don't panic.
     35
     36If it says {{{direct rendering: No}}} at your computer, you will have to go over your system configuration again and and look for some good tutorials online to configure it. We can't give you good support, since are not system specialists ourselves.