在Ubuntu 22.04 中,默认的 rc.local 服务并没有启用,因此需要手动配置启用
创建配置文件
#创建rc.local文件
echo '#!/bin/bash' > /etc/rc.local
#添加执行权限
chmod 755 /etc/rc.local
启动服务
#启动服务
systemctl start rc-local
#显示状态
systemctl status rc-local
#重启服务
systemctl restart rc-local
开机启动
#添加 [Install],在/lib/systemd/system/rc-local.service 文件中 添加(在 [Install] 下添加,如果没有加上[Install] )
vim /lib/systemd/system/rc-local.service
....[Install]
WantedBy=multi-user.target#设置开机启动
systemctl enable rc-local