Changes between Version 6 and Version 7 of dev/LinuxDebian
- Timestamp:
- Aug 15, 2006, 6:40:16 PM (18 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
dev/LinuxDebian
v6 v7 1 1 = Get it Running = 2 2 [[TracNav(TracNav/TOC)]] 3 == Debian Linux == 3 == Debian GNU/Linux == 4 5 === Debian Sarge === 6 Orxonox does not run on the official version of Debian Sarge because libqt4 is missing. Maybe using a backport of QT4 from http://backports.org/ could solve this problem. (not tested yet) 7 8 === Debian Etch (Testing) === 9 Installing Orxonox on Debian Etch (aka Testing). Installing on Debian SID (aka Unstable) should work too (not tested). 4 10 5 11 === Installing the Libraries === 6 Install the following libraries:7 * SDL main library, libsdl1.2-dev, web: [http://www.libsdl.org/index.php link]8 * SDL image library, libsdl-image1.2-dev, web: [http://www.libsdl.org/index.php link]9 * SDL true type fonts, libsdl-ttf2.0-dev, web: [http://www.libsdl.org/index.php link]10 * SDL mixer, libsdl-mixer1.2-dev, web: [http://www.libsdl.org/index.php link]11 12 You can also get these libraries from Debian packages: (Note: "libsdl-ttf2.0-dev" is only available for Debian "Sarge" (testing) and Debian SID (unstable)!)13 12 14 13 {{{ 15 wraith root # apt-get install libsdl1.2-dev libsdl-image1.2-dev libsdl-ttf2.0-dev libsdl-mixer1.2-dev 14 wraith 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 16 15 ... 17 16 }}} 18 17 18 === Installing developer tools === 19 19 20 === Getting the Source ===21 First you will have to install the subversion program, make sure, that the ssl support is enabled22 20 {{{ 23 wraith root # apt-get install subversion 21 wraith root # apt-get install subversion automake g++ 24 22 }}} 25 Check out the source via svn anonymous, this will download the hole project to the directory orxonox-dir 23 24 === Getting the Source & Data === 25 26 Check out the source and Data via svn anonymous, this will download the hole project to the directory orxonox-dir 26 27 {{{ 27 wraith user # svn co http://svn.orxonox.net/orxonox orxonox-dir 28 wraith user $ svn co http://svn.orxonox.net/orxonox orxonox-dir 29 wraith user $ svn co http://svn.orxonox.net/data orxonox-dir/data 28 30 }}} 29 31 You 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: 30 32 {{{ 31 wraith user # svn co https://svn.orxonox.net/orxonox orxonox-dir 33 wraith user $ svn co https://svn.orxonox.net/orxonox orxonox-dir 34 wraith user $ svn co https://svn.orxonox.net/data orxonox-dir/data 32 35 }}} 33 36 You will be asked for user name and password, that you have from us. … … 37 40 Just change into the trunk directory, execute configure and make.... 38 41 {{{ 39 wraith user #cd ./orxonox/trunk/40 wraith user #./autogen.sh41 wraith user #./configure42 wraith user $ cd ./orxonox/trunk/ 43 wraith user $ ./autogen.sh 44 wraith user $ ./configure 42 45 ... 43 wraith user # make 44 ... 45 wraith user # cd src 46 wraith user # ./orxonox 46 wraith user $ make 47 47 }}} 48 48 49 === Playing === 50 {{{ 51 wraith user $ cd ./orxonox/trunk/src 52 wraith user $ ./orxonox 53 }}} 54 Select the Data File orxonox/data/trunk/data.oxd in the menu and play! 55 49 56 === Profiling === 50 If you want to profile (performance measureing) orxonox you will probably want to view the statistics in a special program like kprof. On Gentoo systems you can just emerge it:57 If you want to profile (performance measureing) orxonox you will probably want to view the statistics in a special program like kprof. 51 58 {{{ 52 59 wraith root # apt-get install kprof