Changes between Version 51 and Version 52 of ServerIntro
- Timestamp:
- Oct 8, 2008, 10:52:07 AM (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
ServerIntro
v51 v52 263 263 Defining an empty password simplifies the installation, can be changed later. 264 264 265 === Install the wxWidgets library === #cookbook-wxwidgets266 267 '''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].'''268 269 Download the latest wxGTK version [http://www.wxwidgets.org/downloads/ here].270 271 Extract the contents of the file into ~/wxGTK-2.8.3272 273 After this enter the following commands into the console window in this order:274 {{{275 $ cd ~/wxGTK-2.8.3276 $ mkdir gtkbuild277 $ cd gtkbuild278 $ ../configure --with-gtk --disable-shared279 $ make280 $ su root281 # make install282 # ldconfig283 # exit284 }}}285 The commands configure and make could take a while, so you can fetch some coffee. ;)286 287 265 === Download the BOINC source code === #cookbook-download-code 288 266 … … 290 268 {{{ 291 269 $ cd ~ 292 $ svn co http://boinc.berkeley.edu/svn/ trunk/boinc boinc_trunk270 $ svn co http://boinc.berkeley.edu/svn/branches/server_stable boinc 293 271 }}} 294 272 To update the source code just go into the main directory and enter: 295 273 {{{ 296 $ cd ~/boinc _trunk274 $ cd ~/boinc 297 275 $ svn update 298 276 }}} … … 309 287 Enter the following commands into the console window: 310 288 {{{ 311 $ cd ~/boinc _trunk289 $ cd ~/boinc 312 290 $ ./_autosetup 313 291 $ ./configure --disable-client