ubuntu 18 04開機自啟動指令碼

2021-09-24 20:26:39 字數 874 閱讀 5477

16.04以上就要用service開機啟動了

sudo vim /etc/systemd/system/rc-rc.service
內容為:

[unit]

description=/etc/rc compatibility

conditionpathexists=/etc/rc

[service]

type=forking

execstart=/etc/rc start

timeoutsec=0

standardoutput=tty

remainafterexit=yes

sysvstartpriority=99

[install]

wantedby=multi-user.target

sudo vim /etc/rc
內容為:

#!/bin/sh -e

echo "測試指令碼執行成功" > test.log

exit 0

//加許可權

sudo chmod 755 /etc/rc

//設定開機啟動

sudo systemctl enable rc-rc

//至此開機啟動就設定完畢了

//取消開機啟動

sudo systemctl disable rc-rc

//立即啟動service

sudo systemctl start rc-rc

//檢視單個service狀態

sudo systemctl status rc-rc

Ubuntu18 04開機掛載硬碟

linux與windows的檔案資源管理在載入上有所區別,windows自動載入主機板上連線的所有磁碟,而linux預設只掛載系統所在的分割槽,使用其他分割槽則需要使用mount命令手動掛載。若需系統啟動時自動掛載分割槽,如儲存檔案或軟體的分割槽或硬碟,則可以通過修改系統設定,即修改fstab檔案。...

ubuntu開機自啟動

update rc.d defaults nn命令 nn為啟動順序 將指令碼新增到初始化執行的佇列中去。注意如果指令碼需要用到網路,則nn需設定乙個比較大的數字,如99。1 將你的啟動指令碼複製到 etc init.d目錄下,以下假設你的指令碼檔名為 test。2 設定指令碼檔案的許可權 sudo ...

ubuntu18 04開機黑屏 ACPI 錯誤

網上查了半天好像是顯示卡驅動和系統版本不相容之類的問題 我的n卡gtx1050ti預設使用x.org x server nouveau display driver驅動,所以開機開不開 個人猜想 解決這個問題在開機後的grub介面按e 找到linux那一行,在末尾 vt handoff的後面 新增 ...