Changes between Version 8 and Version 9 of dev/LinuxTardis
- Timestamp:
- Sep 18, 2008, 11:08:10 AM (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
dev/LinuxTardis
v8 v9 2 2 3 3 ''Edited: 15. Sep. 2008 by [wiki:FelixSchulthess Felix]''[[br]] 4 ''Checked: 16. Sep. 2008 by [wiki:FelixSchulthess Felix]'' 4 5 5 6 On the ETH Tardis computers, most of the required software is already installed. This makes the installation very simple. 6 7 7 8 == Get the Source Code == 8 First get a copy of the code by checking out the trunk via subversion. This will download the latest stable version to the directory ''trunk''. If you have trouble using SVN, go [wiki:SVN here].9 First, create a folder for Orxonox. Then get a copy of the code by checking out the trunk via subversion. This will download the latest stable version to the directory ''trunk''. If you have trouble using SVN, go [wiki:SVN here]. 9 10 {{{ 10 $ svn co https://svn.orxonox.net/orxonox/trunk trunk 11 user@tardis-xxx:~> mkdir orxonox 12 user@tardis-xxx:~> cd orxonox 13 user@tardis-xxx:~/orxonox> svn co https://svn.orxonox.net/orxonox/trunk trunk 11 14 }}} 12 15 You will then be asked for the username and password, that you got from us. 13 16 14 Furthermore, you will need to check ou r data repository. This repository contains all the graphics, fonts and sounds and other third-party datafor Orxonox. To check it out use the command:17 Furthermore, you will need to check out our data repository. This repository contains all the graphics, fonts and sounds and other third-party data for Orxonox. To check it out use the command: 15 18 {{{ 16 $ svn co https://svn.orxonox.net/data/Media media19 user@tardis-xxx:~/orxonox> svn co https://svn.orxonox.net/data/Media Media 17 20 }}} 18 Now make sure, you have set the correct path to your media directory in the file orxonox.ini.19 21 20 22 == Compiling == 21 Just cd to the trunk directory, then execute configure and make :23 Just cd to the trunk directory, then execute configure and make and finally run the game: 22 24 {{{ 23 $cd trunk24 $cmake .25 user@tardis-xxx:~/orxonox> cd trunk 26 user@tardis-xxx:~/orxonox/trunk> cmake . 25 27 ... 26 $make28 user@tardis-xxx:~/orxonox/trunk> make 27 29 ... 28 $./run30 user@tardis-xxx:~/orxonox/trunk> ./run 29 31 }}}