1.把自己的程序放到指定的目标下,如
/var/virus/, 假设我的程序名为 bigvirus
2.添加一个服务脚本, 名为 virus 内容如下:
case "$1" in start) # Start daemons. echo -n {1}quot;Starting <virus> daemon: " echo cd /var/virus/./bigvirus echo;; stop) # Stop daemons. echo -n {1}quot;Shutting down <virus>: " killall bigvirus echo ;; status) status virus ;; restart) $0 stop $0 start ;; *) echo {1}quot;Usage: $0 {start|stop|status|restart}" exit 1esacexit 0
3. 使用chkconfig 把脚本变成服务
chkconfig -add virus //init.d下的脚本名
chkconfig virus on
4. ok