[Debian Wiki] Update of "BOINC/ServerGuide" by chalet16

Debian Wiki debian-www at lists.debian.org
Sat Dec 4 12:49:38 UTC 2010


Dear Wiki user,

You have subscribed to a wiki page or wiki category on "Debian Wiki" for change notification.

The "BOINC/ServerGuide" page has been changed by chalet16:
http://wiki.debian.org/BOINC/ServerGuide?action=diff&rev1=1&rev2=2

  '''Under construction'''
+ == Install BOINC Server ==
-  1, Install BOINC server dependencies : {{{ 
+  1. Install BOINC server dependencies : {{{ 
  sudo apt-get install subversion build-essential apache2 php5 mysql-server php5-gd php5-cli php5-mysql python-mysqldb libtool automake autoconf pkg-config libmysql++-dev libssl-dev
  }}}
   1. Create a user and a group for BOINC and add www-data to that group : {{{
  sudo useradd -m -s /bin/bash boincadm
  sudo usermod -G boincadm www-data
  }}}
+  1. Download BOINC source : {{{
+ svn co http://boinc.berkeley.edu/svn/branches/server_stable boinc
+ }}}
+  1. Compile BOINC : {{{
+ cd bonic
+ ./_autosetup
+ ./configure --disable-client
+ make
+ }}}
+ 
+ == Create and config BOINC project ==
-  1. Create MySQL database for BOINC : {{{
+  1. Create MySQL database for BOINC project: {{{
  mysql -u root -p
  > CREATE DATABASE boincdb;
  > CREATE USER 'boincadm'@'localhost' IDENTIFIED BY 'asdf';



More information about the pkg-boinc-commits mailing list