ubuntu Linux v18.04, v20.x 已經取消 /etc/rc.local的執行檔,必須手動加入此檔案
(Linux開機 自動啟動 gerrit)
https://www.dotblogs.com.tw/mis2000lab/2024/07/22/ubuntu_Linux_realtek_r8125_NetworkCard_driver
https://mis2000lab.pixnet.net/blog/post/36644291
Linuxubuntu Linux v18.04, v20.x 已取消 /etc/rc.local執行檔,難怪我找不到 ==> 必須 "手動"加入此檔案
1. 先修改這個檔案 /etc/systemd/system/rc-local.service
指令 sudo vim /etc/systemd/system/rc-local.service (sudo先轉換身份成為管理員,才有足夠權限修改。 vim是一個文字編輯器,類似 Windows小作家)
檔案最下方的 [Install]部分,必須自己手動加入
[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
[Install]
WantedBy=multi-user.target
Alias=rc.local.service
[補充] VIM建議操作方法 – 先按下「i」按鍵就可以新增 (insert)、修改檔案的內容
當您修改完畢以後,按下「esc」按鍵,再按下「:」按鍵。最底下就會出現命令列,此時輸入「w!」就能寫入、存檔。驚嘆號(!)表示強制執行這個指令。
離開VIM,請按下「esc」按鍵,再按下「:」按鍵。最底下就會出現命令列,此時輸入「q!」就能離開VIM編輯器。
2. 來到 /etc目錄下,建立一個新的 rc.local檔案
指令 sudo vim /etc/rc.local (VIM一旦發現這位置沒有這個檔案,就會自動新增檔案)
請在 VIM編輯器裡面,輸入此內容:
#!/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.
#每次啟動自動執行這些指令,務必寫在 exit 0的上方
/gerrit_site/bin/gerrit.sh restart #這是我的範例,我希望一開機就執行 gerrit server
exit 0
3. 完成後,執行下面的指令
我參考兩篇文章(網址分享如下),綜合他們的經驗,確定這樣可運作。謝謝
3-1. 幫剛剛在 /etc目錄下,新增的 rc.local檔案,設定「可執行 (X, 表示 execute)」的權限。
不要給予 777,權限太大了,有風險
指令 sudo chmod +x /etc/rc.local
3-2. 啟用服務
指令 sudo systemctl enable rc-local
指令 sudo systemctl start rc-local
3-3. 重新開機試試看是否成功?服務是否重開機後,都有跑起來?
指令 sudo reboot
感恩這幾篇文章的分享,網路的經驗分享,讓「知識」更加偉大
https://kawsing.gitbook.io/opensystem/docker-cong-an-zhuang-dao-ying-yong-ru-men-pian/qi-yong-host-ji-de-etcrc.local
https://gist.github.com/cn27529/58e6d84550819740eac1dfe568ef9c09
下一篇文章 https://www.dotblogs.com.tw/mis2000lab/2024/07/31/ubuntyu_linux_fdisk_parted_format_mount_20240731
https://mis2000lab.pixnet.net/blog/post/36647666
幫 Linux 安裝、掛載 mount 新硬碟(HDD、SSD、USB外接硬碟)
留言列表