Ubuntu18.04开机自动运行脚本

参考[1],Ubuntu18.04 没有 /etc/rc.local 这个文件,需自己创建。systemd 默认读取 /etc/systemd/system 下的配置文件,该目录下的文件会链接/lib/systemd/system/下的文件。执行 ls /lib/systemd/system 中的启动脚本,其中就有rc.local.service。

初始版本的rc.local.service并没有[Install]段,需要添加

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

 参考[2],在/etc/目录下创建rc.local

sudo vim /etc/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.
echo "测试脚本执行成功" > /usr/local/test.log
exit 0

链接/etc/systemd/system目录和/lib/systemd/system/rc.local.service

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

 赋予权限

sudo chmod 755 /etc/rc.local

启用服务,并检查状态

sudo systemctl enable rc-local
sudo systemctl start rc-local.service
sudo systemctl status rc-local.service

 重启后,检查/usr/local/test.log是否存在。存在即设置成功。

我在设置时主要参考了下列两个博客,当时按照[1]设置没有成功,再参照了[2],但最后发现问题在指令路径上,两个博客的指令有些差异,因此将它们综合后记录在这里。有两个问题需要特别注意:

  1. 相关命令需要放在exit 0前面;
  2. 我刚开始使用相对路径“~/”,发现执行不成功,修改为全路径/home/zhou/后运行成功。

 

参考:

[1] https://blog.csdn.net/github_38336924/article/details/98183253

[2] https://blog.csdn.net/time_future/article/details/85805298

你可能感兴趣的:(收藏夹)