当前位置:K88软件开发文章中心电脑基础基础应用04 → 文章内容

Debian如何设置程序开机自启动

减小字体 增大字体 作者:华军  来源:不详  发布时间:2019-1-30 23:56:00

  Debian系统要让程序开机自启动,除了程序自带的开机自启动功能外,还能手动设置,可通过对rc.local文件的编辑来实现,下面小编就给大家详细介绍下Debian设置程序开机自启动的方法。  代码如下  sudo vi /etc/rc.local  在exit 0之前添加软件启动命令。如:  /usr/local/bin/sslocal -c /etc/shadowsocks.json  保存文件,重启系统即可生效  有人如果是要把服务添加进去我们可以参考下面方法  添加自启动服务  1. 新建脚本文件  在 /etc/init.d 下加入脚本文件  代码如下  sudo vi /etc/init.d/aria2c  输入内容:  #!/bin/sh  ### BEGIN INIT INFO  # Provides: Aria2  # Required-Start: $network $local_fs $remote_fs  # Required-Stop:: $network $local_fs $remote_fs  # Should-Start: $all  # Should-Stop: $all  # Default-Start: 2 3 4 5  # Default-Stop: 0 1 6  # Short-Description: Aria2 - Download Manager  # Description: Aria2 - Download Manager  ### END INIT INFO  NAME=aria2c  USER=pi  ARIA2C=/usr/bin/$NAME  PIDFILE=/var/run/$NAME.pid  CONF=/home/$USER/.aria2/aria2.conf  ARGS=“--conf-path=${CONF}”  test -f $ARIA2C || exit 0  。 /lib/lsb/init-functions  case “$1” in  start) log_daemon_msg “Starting aria2c” “aria2c”  start-stop-daemon -S -q -b -m -p $PIDFILE -c $USER -a $ARIA2C -- $ARGS  log_end_msg $?  ;;  stop) log_daemon_msg “Stopping aria2c” “aria2c”  start-stop-daemon -K -q -p $PIDFILE  log_end_msg $?  ;;  restart|reload|force-reload)  log_daemon_msg “Restarting aria2c” “aria2c”  start-stop-daemon -K -R 5 -q -p $PIDFILE  start-stop-daemon -S -q -b -m -p $PIDFILE -c $USER -a $ARIA2C -- $ARGS  log_end_msg $?  ;;  status)  status_of_proc -p $PIDFILE $ARIA2C aria2c && exit 0 || exit $?  ;;  *) log_action_msg “Usage: /etc/init.d/aria2c {start|stop|restart|reload|force-reload|status}”  exit 2  ;;  esac  exit 0       好啦,以上就是华军小编带给大家的全部内容了,是不是很简单呢?你学会了么?想了解更多的相关内容,请随时关注华军资讯动态吧,欢迎到华军来下载哦! 

Debian如何设置程序开机自启动