Linux 开机自启动自定义脚本

馋奶兔 提交于 2020-02-05 09:38:58

cd /etc/rc.d/init.d/
vim autof5.sh
chmod +x autof5.sh
chkconfig --add autof5.sh
chkconfig autof5.sh on
reboot

PS: autof5.sh shell脚本第二行必须要有,否则会报service autof5.sh does not support chkconfig

#!/bin/bash
# chkconfig: 2345 20 80
/usr/bin/python autof5.py

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!