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 | |
| 6 | Unfortunately here is not yet a Debian package available for Orxonox. We're eager to release one, though. |
| 7 | |
| 8 | == Dependencies == |
| 9 | |
| 10 | To 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 == |
| 16 | Check 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 | }}} |
| 20 | You 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 | }}} |
| 24 | You 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 === |
| 39 | Install and run it with the Alsa-OSS-wrapper |
| 40 | {{{ |
| 41 | $ sudo aptitude install alsa-oss |
| 42 | ... |
| 43 | $ aoss ./run --mode standalone |
| 44 | }}} |
| 45 | |
| 46 | ----- |