之前有寫過一篇功能差不多的文章 https://www.webteach.tw/?p=2340 只是當時是 ubuntu 14.04 ,現在用的是18.04已經不能使用該方式,後來爬文爬到寫成比較完整的教學文件。
1.sudo su 切換到root權限
2.nano lib/systemd/system/rc.local.service
文件最後加上
[Install]
WantedBy=multi-user.target
Alias=rc.local.service
存檔
3.建立 rc.local 檔
cd /etc
sudo touch rc.local
nano rc.local
文件內容如下
#!/bin/sh -e
#
# rc.local
#
# This script is executed at the end of each multiuser runlevel.
# Make sure that the script will “exit 0” on success or any other
# value on error.
#
# In order to enable or disable this script just change the execution
# bits.
#
# By default this script does nothing.
mount –bind /home/jeff/web_backup/ /var/www/html/web/
exit 0
文件說明:這邊我主要是要每次啟動自動mount web_backup 到 web資料夾中
4.rc.local 變更執行權限
sudo chmod +x /etc/rc.local
5.啟用服務
sudo systemctl enable rc-local.service
6.重開機如果有自動mount就是成功囉!
參考網址:
1.https://www.mobibrw.com/2017/9890
2.https://hk.saowen.com/a/cefb19bd06d9fcc9fc32db0db01f582a4e10f1890f4e5fac3a879b037587a4fb
[ Linux ] – Ubuntu 18.04 開機自動執行 指令
評等結果
點擊便能為這篇文章進行評等!
[評等總次數: 0,平均評等: 0]
評等結果
點擊便能為這篇文章進行評等!
[評等總次數: 0,平均評等: 0]