debian系统设置脚本开机时自启动

debian系统设置脚本开机时自启动

这里介绍自己测试使用有效的两种方法,做个记录,备用。

方法一:

1、root用户在 /etc/ 目录下新增 rc.local文件

#!/bin/sh
nohup  /opt/sim/remoteMonitorTool/remoteMonitorTool  &  
exit 0
ps: nohup代码不挂断运行, & 代表后台运行。

2、给文件添加执行权限
重启电脑后,程序会被root用户调用起来。

方法二:

1、在 /etc/init.d/目录下添加需要执行的.sh脚本,脚本里调用需要开机启动的程序(shell文件格式参考目录下其它文件)
2、给shell脚本test.sh添加执行权限
3、添加自启动命令 update-rc.d test.sh defaults
4、删除自启动的命令 update-rc.d -f test.sh remove

你可能感兴趣的:(linux杂记,debian,linux,运维)