Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changes between Version 40 and Version 41 of dev/LinuxUbuntu


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

Legend:

Unmodified
Added
Removed
Modified
  • dev/LinuxUbuntu

    v40 v41  
    44''Checked (dependencies reviewed) (r1571): 9. Jun. 2008 by [wiki:BenjaminKnecht Beni] on Ubuntu 8.04 (Hardy Heron)
    55
    6 Unfortunately there is no Debian package available for Orxonox yet. We're eager to release one, though. Until then, you can get a copy of Orxonox' source code and build it on your own.
     6Unfortunately there is no package available for Orxonox yet. We're eager to release one, though. Until then, you can get a copy of Orxonox' source code and build it on your own. If you experience problems, see [wiki:LinuxProblems this] page or contact us.
    77
    88== Dependencies ==
     
    1414
    1515== Get the Source Code ==
    16 Now get a copy of the code by checking out the trunk via anonymous subversion login. This will download the latest stable version to the directory ''trunk''. If you have trouble using SVN, go [wiki:SVN here].
     16First, create a folder for Orxonox. Then get a copy of the code by checking out the trunk via anonymous subversionlogin . This will download the latest stable version to the directory ''trunk''. If you have trouble using SVN, go [wiki:SVN here].
    1717{{{
    18 $ svn co http://svn.orxonox.net/orxonox/trunk trunk
     18user@ubuntu:~> mkdir orxonox
     19user@ubuntu:~> cd orxonox
     20user@ubuntu:~/orxonox> svn co http://svn.orxonox.net/orxonox/trunk trunk
    1921}}}
    20 You won't be able to contribute your own code (check in) with the anonymous subversion repository. You have to ask us for a username/password combination. If you already have an account, check the code out like this:
     22You won't be able to contribute your own code (check in) with the anonymous subversion login. You have to ask us for a username/password combination. If you have an account, check the code out like this:
    2123{{{
    22 $ svn co https://svn.orxonox.net/orxonox/trunk trunk
     24user@ubuntu:~/orxonox> svn co https://svn.orxonox.net/orxonox/trunk trunk
    2325}}}
    2426You will then be asked for the username and password, that you got from us.
    2527
    26 Furthermore, you will need to check our data repository. This repository contains all the graphics, fonts and sounds and other third-party datafor Orxonox. To check it out use the command:
     28Furthermore, you will need to check out our data repository. This repository contains all the graphics, fonts and sounds and other third-party data for Orxonox. To check it out use the command:
    2729{{{
    28 $ svn co https://svn.orxonox.net/data/Media media
     30user@ubuntu:~/orxonox> svn co https://svn.orxonox.net/data/Media Media
    2931}}}
    30 Now make sure, you have set the correct path to your media directory in the file orxonox.ini.
    3132
    3233== Compiling ==
    33 Just cd to the trunk directory, then execute configure and make:
     34Just cd to the trunk directory, then execute configure and make and finally run the game:
    3435{{{
    35 $ cd orxonox-trunk
    36 $ cmake .
     36user@ubuntu:~/orxonox> cd trunk
     37user@ubuntu:~/orxonox/trunk> cmake .
    3738...
    38 $ make
     39user@ubuntu:~/orxonox/trunk> make
    3940...
    40 $ ./run
     41user@tardis-xxx:~/orxonox/trunk> ./run
    4142}}}
    42 
    43 == Possible Bugs ==
    44 === Strange Sound ===
    45 Install normally and run it with the Alsa-OSS-wrapper
    46 {{{
    47 $ sudo aptitude install alsa-oss
    48 ...
    49 $ aoss ./run
    50 }}}
    51 
    52 === Running ===
    53 
    54 If ./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.
    55 
    56 === Graphics ===
    57 Using the "radeon" driver with your ATI graphics card (on Gutsy) will result in ugly shadow bugs in Ogre. Use flgrx instead.
    58 
    59 === Ogre ===
    60 If 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''.