Difference between revisions of "Icecream"

From Linuxintro
imported>WikiSysop
imported>WikiSysop
Line 4: Line 4:
 
To install icecream on SUSE, enter into a konsole:
 
To install icecream on SUSE, enter into a konsole:
 
  yast -i icecream icecream-monitor
 
  yast -i icecream icecream-monitor
 +
 +
= Run it =
 +
On every slave, start the daemon:
 +
export PATH=/opt/icecream/bin:$PATH
 +
iceccd -d
 +
On your driver, start the scheduler:
 +
export PATH=/opt/icecream/bin:$PATH
 +
scheduler -d
  
 
= See also =
 
= See also =
 
* http://en.opensuse.org/Icecream
 
* http://en.opensuse.org/Icecream

Revision as of 09:02, 10 August 2008

Icecream is a software suite that allows you to build up a compile cluster. The goal is to speed up compiling by distributing the jobs over several computers. To do that, you need one compile-driver (the scheduler) and one or more slaves (daemons).

Install it

To install icecream on SUSE, enter into a konsole:

yast -i icecream icecream-monitor

Run it

On every slave, start the daemon:

export PATH=/opt/icecream/bin:$PATH
iceccd -d

On your driver, start the scheduler:

export PATH=/opt/icecream/bin:$PATH
scheduler -d

See also