Ubuntu 18.04 rc-local设置开机自启动
Posted tech_lee
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Ubuntu 18.04 rc-local设置开机自启动相关的知识,希望对你有一定的参考价值。
Ubuntu 18.04默认进程启动管理已经切换至systemd,不在使用SysV。如果想像之前一样使用/etc/rc.local设置开机自启动,请如下设置
修改rc-local.service
/lib/systemd/system/rc-local.service新增:
[Install]
WantedBy=multi-*user*.target
Alias=rc-local.service
设置开机自启动rc-local
- sudo systemctl enable rc-local
创建/etc/rc.local
#!/bin/bash
echo "test rc.local " > /tmp/rctest.log
新增执行权限
- chmod +x /etc/rc.local
测试
sudo systemctl start rc.local
以上是关于Ubuntu 18.04 rc-local设置开机自启动的主要内容,如果未能解决你的问题,请参考以下文章
Ubuntu 18.04 rc.local systemd设置
Ubuntu20.04设置开机自启脚本开机自启命令(ubuntu自启,ubuntu开机自启)rc(run command)(systemd)(/etc/rc.local)(开机启动原理)
Ubuntu20.04设置开机自启脚本开机自启命令(ubuntu自启,ubuntu开机自启)rc(run command)(systemd)(/etc/rc.local)(开机启动原理)开机自启动