2021-05-12 14:32:11
Ubuntu 16.10沒有rc.local檔案
換了一台新筆電,於是安裝上了最新的Ubuntu 16.10,結果從舊機器導檔案過來的時候發現系統裡沒有rc.local,一下感覺醉醉的。
Google查了下,原來是1610把rc.local服務化了,看來systemd已經決心獨立了。。話說這個sysvinit流傳的下來的東東生命力確實頑強,而且真的很好用啊。
解決方法:
首先建立systemd的服務指令碼
1、sudo vi /etc/systemd/system/rc-local.service
[Unit]
Description=/etc/rc.local Compatibility
ConditionPathExists=/etc/rc.local
[Service]
Type=forking
ExecStart=/etc/rc.local start
TimeoutSec=0
StandardOutput=tty
RemainAfterExit=yes
SysVStartPriority=99
#sysVstart這行可以刪掉,我看啟動紀錄檔中貌似報忽略這個了。。
[Install]
WantedBy=multi-user.target
2、sudo systemctl enable rc-local.service
然後就按以前的格式編輯/etc/rc.local就好了。
最後記得chmod +x /etc/rc.local
補充:Ubuntu 16.10的網絡卡名更換
編輯/etc/default/grub
GRUB_CMD_LINUX="net.ifname=0 biosdevname=0"
然後
sudo grub-mkconfig -o /boot/grub/grub.cfg
後記:systemd的時代已經來臨,是時候學一波systemd服務指令碼編寫了。
相關文章