Ubuntu20.04開機自啟


1.執行 ls /lib/systemd/system 你可以看到有很多啟動腳本,其中就有我們需要的 rc.local.service

2.打開腳本內容

#  This file is part of systemd.
#
#  systemd is free software; you can redistribute it and/or modify it
#  under the terms of the GNU Lesser General Public License as published by
#  the Free Software Foundation; either version 2.1 of the License, or
#  (at your option) any later version.

# This unit gets pulled automatically into multi-user.target by
# systemd-rc-local-generator if /etc/rc.local is executable.
[Unit]
Description=/etc/rc.local Compatibility
ConditionFileIsExecutable=/etc/rc.local
After=network.target

[Service]
Type=forking
ExecStart=/etc/rc.local start
TimeoutSec=0
RemainAfterExit=yes

一般正常的啟動文件主要分成三部分

[Unit] 段: 啟動順序與依賴關系
[Service] 段: 啟動行為,如何啟動,啟動類型
[Install] 段: 定義如何安裝這個配置文件,即怎樣做到開機啟動

可以看出,/etc/rc.local 的啟動順序是在網絡后面,但是顯然它少了 Install 段,也就沒有定義如何做到開機啟動,所以顯然這樣配置是無效的。 因此我們就需要在后面幫他加上 [Install] 段:

[Install]  
WantedBy=multi-user.target  
Alias=rc-local.service

這里需要注意一下,ubuntu-18.04以后 默認是沒有 /etc/rc.local 這個文件的,需要自己創建

sudo touch /etc/rc.local 

然后把你需要啟動腳本寫入 /etc/rc.local ,我們不妨寫一些測試的腳本放在里面,以便驗證腳本是否生效.

#!/bin/sh

echo "看到這行字,說明添加自啟動腳本成功。" > /usr/local/test.log
exit 0

注意:#!/bin/sh 這一行一定要加 一定要加 一定要加 !!!!!!!!!

如果不加會報錯,類似下面這種
~$ sudo systemctl status rc-local.service
● rc-local.service - /etc/rc.local Compatibility
   Loaded: loaded (/etc/systemd/system/rc-local.service; enabled; vendor preset:
  Drop-In: /lib/systemd/system/rc-local.service.d
           └─debian.conf
   Active: inactive (dead)
Condition: start condition failed at Wed 2019-08-14 12:21:45 CST; 5min ago
           └─ ConditionPathExists=/etc/rc.local  #腳本文件位置 was not met

給rc.local加上權限

sudo chmod +x /etc/rc.local

做完這一步,還需要最后一步 前面我們說 systemd 默認讀取 /etc/systemd/system 下的配置文件, 所以還需要在 /etc/systemd/system 目錄下創建軟鏈接

ln -s /lib/systemd/system/rc.local.service /etc/systemd/system/ 

 




免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM