ubuntu 20.04 没有rc.local文件的解决方法

ubuntu 20.04 没有rc.local文件的解决方法

OWLSAMA
2年前发布
温馨提示:
本文最后更新于2023年01月17日,已超过844天没有更新,若内容或图片失效,请留言反馈。

新的Linux发行版已经没有rc.local文件了。因为已经将其服务化了。

1.设置rc-local.service

sudo vim /etc/systemd/system/rc-local.service

内容如下:

[Unit]
 Description=/etc/rc.local Compatibility
 ConditionPathExists=/etc/rc.local

[Service]
 Type=forking
 ExecStart=/etc/rc.local start
 TimeoutSec=0
 StandardOutput=tty
 RemainAfterExit=yes
 SysVStartPriority=99

[Install]
 WantedBy=multi-user.target

2.激活rc-local.service

sudo systemctl enable rc-local.service

3.创建/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.

# 开机启动的命令
/data/soft/jenkins/jenkins.sh start  # 开机自动运行jenkins

exit 0

给予脚本执行权限

sudo chmod +x /etc/rc.local

原文链接:https://blog.csdn.net/qq_39809339/article/details/126615591

© 版权声明
THE END
喜欢就支持一下吧
点赞 0 分享 收藏
评论
当前页面的评论已关闭