More information (in spanish)
Barcelona Supercomputing Center http://www.bsc.org.es/
IBM: http://www.ibm.com/news/es/2004/11/superordenador.html
(in english)
http://imagicweb.com/ambient/modules.php?op=modload&name=News&file=article&sid=66
Linux Security and Administration with programming
#!/bin/bash
# chkconfig: 2345 55 25
# description: A service that does powerful things
#
This is a description of what this line does:
# chkconfig: 2345 55 25
| | |
| | priority for kill scripts
| |
| priority for start scripts
|
run levels at which to start service
Then execute, for example, adding the qmail service:
[root@monitor1 init.d]# chkconfig --add qmail
[root@monitor1 init.d]# chkconfig --list qmail
qmail 0:off 1:off 2:off 3:on 4:off 5:on 6:off
Now configure it to start on desired runlevels !