高进波的博客 操作系统 ubuntu/debian配置rc.local开机启动

ubuntu/debian配置rc.local开机启动

在 Ubuntu 和 Debian 系统中配置rc.local开机启动的方法如下

ln -fs /lib/systemd/system/rc-local.service /etc/systemd/system/rc-local.service
touch /etc/rc.local
chmod 755 /etc/rc.local

验证

vi /etc/rc.local
#!/bin/bash
echo ok >/tmp/gaojinbo.com

Related Post