自己写的小程序顺着linux启动而启动
自己写的小程序想根据linux启动而自动启动。
需要以下步骤:
1.将自己写的小程序的打开写入sh脚本中,在脚本中加入如下内容:
#chkconfig 345 61 63
#description:Easy
还有其中使用的case esac,一般软件都有start stop restart
这里的start在系统启动时会自动调用start
2.将脚本拷贝到/etc/init.d下面
3.使用命令:
chkconfig --add name(脚本名称)
chkconfig --level 345 name on
这样当系统启动时,就会自动执行脚本,自动执行脚本中的start。
相关推荐
linuxwcj 2020-10-21
彼岸随笔 2020-10-20
yutou0 2020-10-17
jarrygao 2020-11-02
shipinsky 2020-09-23
touchfuture 2020-09-16
hongsheyoumo 2020-09-04
momoku 2020-09-11
ruancw 2020-08-27
TuxedoLinux 2020-08-18
vvu 2020-08-16
downtown 2020-08-11
luvzhan 2020-07-28
maxelliot 2020-06-28
cuixingwudi 2020-06-25
linuxdashencom 2020-06-21
旭灿 2020-06-16
wenjieyatou 2020-06-14