Changes between Version 8 and Version 9 of dev/LinuxDebian
- Timestamp:
- Oct 27, 2006, 1:50:47 PM (18 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
dev/LinuxDebian
v8 v9 4 4 5 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)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 (this has not yet been tested). 7 7 8 8 === Debian Etch (Testing) === 9 Installing Orxonox on Debian Etch (aka Testing). Installing on Debian SID (aka Unstable) should work too (nottested).9 Installing Orxonox on Debian Etch (aka the Testing Debian). Installing on Debian SID (aka Unstable Debian) should work too (this has not yet been tested). 10 10 11 11 === Installing the Libraries === … … 16 16 }}} 17 17 18 === Installing developer tools ===18 === Installing Developer Tools === 19 19 20 20 {{{ … … 22 22 }}} 23 23 24 === Getting the Source & Data===24 === Getting the Source Code === 25 25 26 Check out the source and data via svn anonymous, this will download the hole project to the directory orxonox-dir26 Check out the source via anonymous subversion login. This will download the whole project to the directory orxonox-dir. 27 27 {{{ 28 28 wraith user $ svn co http://svn.orxonox.net/orxonox orxonox-dir 29 29 wraith user $ svn co http://svn.orxonox.net/data orxonox-dir/data 30 30 }}} 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 accountcheck it out like this:31 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: 32 32 {{{ 33 33 wraith user $ svn co https://svn.orxonox.net/orxonox orxonox-dir 34 34 wraith user $ svn co https://svn.orxonox.net/data orxonox-dir/data 35 35 }}} 36 You will be asked for user name and password, that you have from us.36 You will be asked for your username and password, that you got from us. 37 37 38 38 39 39 === Compiling === 40 Just change into the trunk directory, execute configure and make....40 Just change into the trunk directory, then execute configure and make.... 41 41 {{{ 42 42 wraith user $ cd ./orxonox/trunk/ … … 55 55 56 56 === Profiling === 57 If you want to profile (performance measureing) orxonoxyou will probably want to view the statistics in a special program like kprof.57 If you want to profile Orxonox (measure its performance) you will probably want to view the statistics in a special program like kprof. 58 58 {{{ 59 59 wraith root # apt-get install kprof 60 60 }}} 61 Orxonox runs much much slower with profiling enabled, so don't be embarassed! 61 A word of warning: Orxonox runs much much slower with profiling enabled. 62 62 {{{ 63 63 wraith user # cd ./orxonox/trunk/ … … 69 69 wraith user # ./orxonox 70 70 }}} 71 O k. Orxonox runs now (very slow) and writes its profiling stats to a file called gmon.out. Remember that _only_ those functinalities, that you are using while running the programwill be profiled (since the profile log is written while the program is been executed). [[br]]72 After you exit the application, you will have to parse the output file and then you are able to open it in kprof application:71 Orxonox now runs very slowly and writes its profiling statistics to a file called gmon.out. Remember that _only_ the Orxonox functionalities you use while profiling will be profiled (since the profile log is written while the program is been executed). [[br]] 72 After you exit Orxonox, you can parse the output file and then open it in kprof: 73 73 {{{ 74 74 wraith user # gprof -b ./orxonox > text.out 75 75 wraith user # kprof -f text.out 76 76 }}} 77 For more documentation see the DevelopmentResources.77 For more documentation see the [wiki:DevelopmentResources development resources].