Ubuntu下设置开机自启方式如下:
Centos下设置开机自启方式如下:
首先新建autoss.h
,输入:
1 2 3 4 |
#!/bin/bash # description:开机自启脚本 ssserver -c /path/to/config.json -d start |
然后移动脚本文件到/etc/rc.d/init.d
目录下
mv autoss.sh /etc/rc.d/init.d
赋予权限:
chmod +x /etc/rc.d/init.d/autoss.sh
添加到自启项中:
cd /etc/rc.d/init.d
chkconfig --add autoss.sh
chkconfig autoss.sh on
本文最后更新于2020年10月19日,已超过 1 年没有更新,如果文章内容或图片资源失效,请留言反馈,我们会及时处理,谢谢!