Changes between Version 36 and Version 37 of ServerIntro
- Timestamp:
- Oct 21, 2007, 5:45:06 AM (17 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
ServerIntro
v36 v37 216 216 217 217 === 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’. 218 Login 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 }}} 225 234 226 235 Logout and login again as user boincadm if this is done. 227 236 228 237 === Configuration of the MySQL server === #cookbook-mysql 229 Open a new console window (’K-menu’ -> ‘Debian’ -> ‘XShells’ -> ‘Konsole’).238 If you're using KDE: open a new console window (’K-menu’ -> ‘Debian’ -> ‘XShells’ -> ‘Konsole’). 230 239 231 240 Define a new MySQL root password. … … 244 253 === Install the wxWidgets library === #cookbook-wxwidgets 245 254 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].''' 249 256 250 257 Download the latest wxGTK version [http://www.wxwidgets.org/downloads/ here]. … … 265 272 }}} 266 273 The commands configure and make could take a while, so you can fetch some coffee. ;) 274 267 275 === Download the BOINC source code === #cookbook-download-code 276 268 277 The latest development version can be obtained with: 269 278 {{{ … … 290 299 $ cd ~/boinc_trunk 291 300 $ ./_autosetup 292 $ ./configure 301 $ ./configure --disable-client 293 302 $ make 294 303 }}}