Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changes between Version 15 and Version 16 of dev/LinuxDebian


Ignore:
Timestamp:
Feb 13, 2008, 10:10:39 PM (16 years ago)
Author:
wenners
Comment:

updated and tested

Legend:

Unmodified
Added
Removed
Modified
  • dev/LinuxDebian

    v15 v16  
    11[[TracNav(TracNav/TOC_install)]]
    2 = Get it Running =
    3 == Debian GNU/Linux ==
     2= Debian GNU/Linux =
     3
     4''Last checked: 13. Feb. 2008 by [wiki:simonwenner Nowic] on Debian Lenny (Testing)''
     5
     6Unfortunately here is not yet a Debian package available for Orxonox. We're eager to release one, though.
     7
     8== Dependencies ==
     9
     10To install all tools and libraries use the following command
     11{{{
     12  $ sudo aptitude install build-essential cmake libogre-dev libcegui-mk2-dev libois-dev libnet1-dev libboost-thread-dev libopenal-dev libalut-dev libenet-dev
     13}}}
     14
     15== Get the source ==
     16Check out the source via anonymous subversion login. This will download the whole project to the directory orxonox-dir.
     17{{{
     18$ svn co http://svn.orxonox.net/orxonox/trunk orxonox-trunk
     19}}}
     20You won't be able to commit 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 it out like this:
     21{{{
     22$ svn co https://svn.orxonox.net/orxonox/trunk orxonox-trunk
     23}}}
     24You will be asked for your username and password, that you got from us.
     25
     26== Compile ==
     27
     28{{{
     29$ cd orxonox-trunk
     30$ cmake .
     31...
     32$ make
     33...
     34$ ./run --mode standalone
     35}}}
     36
     37== Possible Bugs ==
     38=== The sound is strange ===
     39Install and run it with the Alsa-OSS-wrapper
     40{{{
     41$ sudo aptitude install alsa-oss
     42...
     43$ aoss ./run --mode standalone
     44}}}
     45
     46-----
    447
    548[[OutdatedPage]]