Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changes between Initial Version and Version 1 of dev/LinuxUbuntu


Ignore:
Timestamp:
Aug 15, 2006, 6:53:41 PM (18 years ago)
Author:
wenners
Comment:

new

Legend:

Unmodified
Added
Removed
Modified
  • dev/LinuxUbuntu

    v1 v1  
     1= Get it Running =
     2[[TracNav(TracNav/TOC)]]
     3== Ubuntu Linux ==
     4
     5=== Ubuntu Dapper Drake ===
     6Installing Orxonox on Ubuntu Dapper Drake (6.06).
     7
     8=== Installing the Libraries ===
     9
     10{{{
     11wraith root # apt-get install libsdl1.2-dev libsdl-image1.2-dev libsdl-ttf2.0-dev libsdl-mixer1.2-dev libsdl-net1.2-dev libqt4-dev libglut3-dev libglew-dev libopenal-dev libvorbis-dev libavformat-dev libcurl3-dev liblualib50-dev
     12...
     13}}}
     14
     15=== Installing developer tools ===
     16
     17{{{
     18wraith root # apt-get install subversion automake g++
     19}}}
     20
     21=== Getting the Source & Data ===
     22
     23Check out the source and Data via svn anonymous, this will download the hole project to the directory orxonox-dir
     24{{{
     25wraith user $ svn co http://svn.orxonox.net/orxonox orxonox-dir
     26wraith user $ svn co http://svn.orxonox.net/data orxonox-dir/data
     27}}}
     28You won't be able to commit (check in) anything with the anonymous repository. You have to ask us for user/pass combination. If you have already an account check it out like this:
     29{{{
     30wraith user $ svn co https://svn.orxonox.net/orxonox orxonox-dir
     31wraith user $ svn co https://svn.orxonox.net/data orxonox-dir/data
     32}}}
     33You will be asked for user name and password, that you have from us.
     34
     35
     36=== Compiling ===
     37Just change into the trunk directory, execute configure and make....
     38{{{
     39wraith user $ cd ./orxonox-dir/trunk/
     40wraith user $ ./autogen.sh
     41wraith user $ ./configure
     42...
     43wraith user $ make
     44}}}
     45
     46=== Playing ===
     47{{{
     48wraith user $ cd ./orxonox-dir/trunk/src
     49wraith user $ ./orxonox
     50}}}
     51Select the data file orxonox/data/trunk/data.oxd in the menu and play!