linux下/etc/rc.local文件配置流程
写在前面
换了个新的开发板,想要对boa服务器执行开机自启动的操作,于是开始找/etc/rc.local,但是没有这个文件,需要进行软链加入服务,便有此篇
rc.local 是启动加载文件
systemd 默认会读取 /etc/systemd/system 下的配置文件,该目录下的文件会链接 /lib/systemd/system/ 下的文件。
一般系统安装完 /lib/systemd/system/ 下会有 rc-local.service 文件,即我们需要的配置文件
首先将 /lib/systemd/system/rc-local.service 链接到 /etc/systemd/system/ 目录下修改文件内容ln -fs /lib/systemd/system/rc-local.service /etc/systemd/system/rc-local.service
在文件末尾添加如下代码sudo vim /etc/systemd/system/rc-local.service
创建/etc/rc.local文件[Install]WantedBy=multi-user.targetAlias=rc-local.service
打开rc.local文件,写入执行代码sudo vim /etc/rc.local
#!/bin/bash -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.#在下面添加你要开机启动的命令#例如我需要开机启动boa服务器,则写入:#/etc/boa/boa &
将 /etc/rc.local变成可执行文件 激活rc-local.servicesudo chmod +x /etc/rc.local
启动服务并检查状态sudo systemctl enable rc-local.service
sudo systemctl daemon-reloadsudo systemctl stop rc-local.servicesudo systemctl start rc-local.servicesudo systemctl status rc-local.service