1. 程式人生 > >ubuntu 16.04 新增開機啟動項

ubuntu 16.04 新增開機啟動項

執行

# cd  /etc/init.d/

# vi test.sh

輸入如下bash指令碼:

#!/bin/sh


### BEGIN INIT INFO


# Provides: test


# Short-Description: mlkk test


# Description:  


# Required-Start: $remote_fs $local_fs


# Required-Stop: $remote_fs $local_fs


# Default-Start: 2 3 4 5


# Default-Stop: 0 1 6


### END INIT INFO
modprobe can
exit 0

執行:

# chmod  +x test.sh

執行:

# update-rc.d  test.sh defaults  NN     (備註:NN為啟動數字,數字大的啟動順序越後)

執行:

# reboot

執行:

# lsmod | head 檢視是否有can字樣。

(備註:bash指令碼前面的字樣必須加入)