/* 自定義代碼塊樣式 */

2024年10月31日 星期四

ubuntu 新增開機啟動服務

OS:ubuntu 22.04 新增開機啟動服務
#新增 system 服務文件
 sudo touch /etc/systemd/rc-local.service 
#使用編輯器開啟 rc-lcoal.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
[Install]
WantedBy=multi-user.target
# 建立 /etc/rc.local 啟動腳本
 sudo touch /etc/rc.local 
#使用編輯器新增
#!/bin/sh -e
#如果異常改成 bash
# rc.local
#
echo "auto start success !!" > /tmp/test.log
# 輸入要自動啟動指令 or 腳本

exit 0
#修改執行權限
sudo chmod 755 /etc/rc.local
#將rc-local.service設定開機啟動
sudo systemctl enable rc-local.service 
sudo systemctl start rc-local.service