Ubuntu下新增開機啟動指令碼

2021-06-27 07:12:45 字數 1505 閱讀 2242

ubuntu開機之後會執行/etc/rc.local檔案中的指令碼,所以我們可以直接在/etc/rc.local中新增啟動指令碼。

當然要新增到結束語句exit 0 的前面才行。

如: $ sudo vi /etc/rc.local

然後在 exit 0 前面新增指令碼**或指令碼的位置。

如果要新增為開機啟動執行的指令碼檔案,可先將指令碼複製或者軟連線到/etc/init.d/目錄下,

然後用命令

# update-rc.d *** defaults nn

如update-rc.d test default 98

(nn為啟動順序),將指令碼新增到初始化執行的佇列中去。

注意如果指令碼需要用到網路,則nn需設定乙個比較大的數字,如98 。

1) 將你的啟動指令碼複製或軟連線到 /etc/init.d目錄下

以下假設你的指令碼檔名為 test.sh

$ cd /etc/init.d

$ sudo update-rc.d test.sh defaults 95

注:其中數字95是指令碼啟動的順序號,按照自己的需要相應修改即可。在你有多個啟動指令碼,而它們之間又有先後啟動的依賴關係時就知道這個數字的具體作用了。

該命令的輸出資訊參考如下:

update-rc.d: warning: /etc/init.d/test missing lsb information

update-rc.d: see

adding system startup for /etc/init.d/test.sh ...

/etc/rc0.d/k95test.sh -> ../init.d/test.sh

/etc/rc1.d/k95test.sh -> ../init.d/test.sh

/etc/rc6.d/k95test.sh -> ../init.d/test.sh

/etc/rc2.d/s95test.sh -> ../init.d/test.sh

/etc/rc3.d/s95test.sh -> ../init.d/test.sh

/etc/rc4.d/s95test.sh -> ../init.d/test.sh

/etc/rc5.d/s95test.sh -> ../init.d/test.sh

解除安裝啟動指令碼的方法:

$ cd /etc/init.d

$ sudo update-rc.d -f test.sh remove

命令輸出的資訊參考如下:

removing any system startup links for /etc/init.d/test ...

/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

Ubuntu下新增開機啟動指令碼

ubuntu開機之後會執行 etc rc.local檔案中的指令碼,所以我們可以直接在 etc rc.local中新增啟動指令碼。當然要新增到語句 exit 0 前面才行。如 sudo vi etc rc.local 然後在 exit 0 前面新增好指令碼 後續有空再研究下新增乙個ubuntu的開機...

Ubuntu下新增開機啟動指令碼

1 方法一,編輯rc.loacl指令碼 ubuntu開機之後會執行 etc rc.local檔案中的指令碼,所以我們可以直接在 etc rc.local中新增啟動指令碼。當然要新增到語句 exit 0前面才行。如 sudo vi etc rc.local 然後在 exit 0 前面新增好指令碼 2 ...

Ubuntu下新增開機啟動指令碼

ubuntu開機之後會執行 etc rc.local檔案中的指令碼,所以我們可以直接在 etc rc.local中新增啟動指令碼。當然要新增到語句 exit 0 前面才行 如果要新增為開機啟動執行的指令碼檔案,可先將指令碼複製或者軟連線到 etc init.d 目錄下,然後用 update rc.d...