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

上一篇:Node.js 回调函数


下一篇:Centos网络管理(四)-路由转发与静态路由