1) 將你的啓動腳本複製到 /etc/init.d目錄下shell
如下假設你的腳本文件名爲 test.sh。spa
2) 設置腳本文件的權限code
$ sudo chmod 755 /etc/init.d/test.sh
3) 執行以下命令將腳本放到啓動腳本中去:orm
$ cd /etc/init.d $ sudo update-rc.d test.sh defaults 95
注:其中數字95是腳本啓動的順序號,按照本身的須要相應修改便可。在你有多個啓動腳本,而它們之間又有前後啓動的依賴關係時你就知道這個數字的具體做用了。該命令的輸出信息參考以下:ip
update-rc.d: warning: /etc/init.d/test.sh missing LSB information update-rc.d: see <http://wiki.debian.org/LSBInitScripts> Adding system startup for /etc/init.d/test.sh ... /etc/rc0.d/K95test -> ../init.d/test.sh /etc/rc1.d/K95test -> ../init.d/test.sh /etc/rc6.d/K95test -> ../init.d/test.sh /etc/rc2.d/S95test -> ../init.d/test.sh /etc/rc3.d/S95test -> ../init.d/test.sh /etc/rc4.d/S95test -> ../init.d/test.sh /etc/rc5.d/S95test -> ../init.d/test.sh
卸載啓動腳本的方法:rem
$ cd /etc/init.d $ sudo update-rc.d -f test.sh remove
命令輸出的信息參考以下:it
Removing any system startup links for /etc/init.d/test.sh ... /etc/rc0.d/K95test.sh /etc/rc1.d/K95test.sh /etc/rc2.d/S95test.sh /etc/rc3.d/S95test.sh /etc/rc4.d/S95test.sh /etc/rc5.d/S95test.sh /etc/rc6.d/K95test.sh