ubuntu设置自启动

2021/12/19 7:19:31

本文主要是介绍ubuntu设置自启动,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

ubuntu设置自启动
实现
在/etc/init.d目录中创建自己的脚本
赋予可执行权限sudo chmod +x xxx
注册服务:systemctl enable xxx
脚本文件

#!/bin/bash
### BEGIN INIT INFO
# Provides:          Planck1905
# Required-Start:    $remote_fs $local_fs $network $named $syslog $time
# Required-Stop:     $remote_fs $local_fs $syslog
# Default-Start:     3 4 5
# Default-Stop:      0 1 2 6
# Short-Description: Start n2n_v2s when system started
# Description:       Enable n2n_v2s for communication
### END INIT INFO

start(){
    command # 写入开机时要执行的命令
}
stop(){
    command # 写入关机时要执行的命令
}

case $1 in
start):
    stop
    start
;;
stop):
    stop
;;
restart):
    stop
    start
;;
esac

exit 0


原理
就是把脚本注册为服务,使用service myshell status查看日志

service myshell start是 传入start参数,执行start
stop restart同理

systemctl的作用就是让linux 检查LSB依赖满足后 给这个脚本传一个start



这篇关于ubuntu设置自启动的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程