Changes between Version 36 and Version 37 of ServerIntro


Ignore:
Timestamp:
Oct 21, 2007, 5:45:06 AM (17 years ago)
Author:
Christian Beer
Comment:

optimised the cookbook a little bit

Legend:

Unmodified
Added
Removed
Modified
  • ServerIntro

    v36 v37  
    216216
    217217=== Create a new BOINC user account === #cookbook-useraccount
    218 Login as user ‘notroot’ with the password: ‘thoughtpolice’ (downloaded image only)
    219 
    220 Go to ‘K-Menu’ -> ‘Settings’ -> ‘System Administration’ -> ‘User Management’, claim administrative privileges with password: ‘thoughtpolice’ (downloaded image only)
    221 
    222 Create a new user, for example: boincadm
    223 
    224 After that go to the ‘Groups’ tab and add the user ‘www-data’ to the group ‘boincadm’.
     218Login as user ‘notroot’.
     219
     220'''With KDE:'''
     221
     222 Go to ‘K-Menu’ -> ‘Settings’ -> ‘System Administration’ -> ‘User Management’, claim administrative privileges
     223
     224 Create a new user, for example: boincadm
     225
     226 After that go to the ‘Groups’ tab and add the user ‘www-data’ to the group ‘boincadm’.
     227
     228'''Without a Graphical Desktop Manager:'''
     229
     230{{{
     231$ useradd -m -s /bin/bash boincadm
     232$ usermod -G boincadm www-data
     233}}}
    225234
    226235Logout and login again as user boincadm if this is done.
    227236
    228237=== Configuration of the MySQL server === #cookbook-mysql
    229 Open a new console window (’K-menu’ -> ‘Debian’ -> ‘XShells’ -> ‘Konsole’).
     238If you're using KDE: open a new console window (’K-menu’ -> ‘Debian’ -> ‘XShells’ -> ‘Konsole’).
    230239
    231240Define a new MySQL root password.
     
    244253=== Install the wxWidgets library === #cookbook-wxwidgets
    245254
    246 {{{
    247 #!comment Why is this needed? Later on the cookbook it clearly says "Normally you won't need a self-compiled client", and wxWidgets is only useful to compile the client, not needed for the server.
    248 }}}
     255'''You can skip this section if you don't want to build your own client. Normally you won't need a self-compiled client, you can always get the latest one from [/download_all.php BOINC website].'''
    249256
    250257Download the latest wxGTK version [http://www.wxwidgets.org/downloads/ here].
     
    265272}}}
    266273The commands configure and make could take a while, so you can fetch some coffee. ;)
     274
    267275=== Download the BOINC source code === #cookbook-download-code
     276
    268277The latest development version can be obtained with:
    269278{{{
     
    290299$ cd ~/boinc_trunk
    291300$ ./_autosetup
    292 $ ./configure
     301$ ./configure --disable-client
    293302$ make
    294303}}}