Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changes between Version 8 and Version 9 of dev/LinuxTardis


Ignore:
Timestamp:
Sep 18, 2008, 11:08:10 AM (16 years ago)
Author:
FelixSchulthess
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • dev/LinuxTardis

    v8 v9  
    22
    33''Edited: 15. Sep. 2008 by [wiki:FelixSchulthess Felix]''[[br]]
     4''Checked: 16. Sep. 2008 by [wiki:FelixSchulthess Felix]''
    45
    56On the ETH Tardis computers, most of the required software is already installed. This makes the installation very simple.
    67
    78== 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].
     9First, 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].
    910{{{
    10 $ svn co https://svn.orxonox.net/orxonox/trunk trunk
     11user@tardis-xxx:~> mkdir orxonox
     12user@tardis-xxx:~> cd orxonox
     13user@tardis-xxx:~/orxonox> svn co https://svn.orxonox.net/orxonox/trunk trunk
    1114}}}
    1215You will then be asked for the username and password, that you got from us.
    1316
    14 Furthermore, you will need to check our data repository. This repository contains all the graphics, fonts and sounds and other third-party datafor Orxonox. To check it out use the command:
     17Furthermore, 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:
    1518{{{
    16 $ svn co https://svn.orxonox.net/data/Media media
     19user@tardis-xxx:~/orxonox> svn co https://svn.orxonox.net/data/Media Media
    1720}}}
    18 Now make sure, you have set the correct path to your media directory in the file orxonox.ini.
    1921
    2022== Compiling ==
    21 Just cd to the trunk directory, then execute configure and make:
     23Just cd to the trunk directory, then execute configure and make and finally run the game:
    2224{{{
    23 $ cd trunk
    24 $ cmake .
     25user@tardis-xxx:~/orxonox> cd trunk
     26user@tardis-xxx:~/orxonox/trunk> cmake .
    2527...
    26 $ make
     28user@tardis-xxx:~/orxonox/trunk> make
    2729...
    28 $ ./run
     30user@tardis-xxx:~/orxonox/trunk> ./run
    2931}}}