第一种方法:
/etc/init.d #在init.d 下创建脚本
脚本格式:必须添加这2行否则无法添加
#!/bin/bash
#chkconfig: 2345 81 96
#description:Starttomcat
......
添加权限:
chmod 777 test.sh
执行添加:
chkconfig --add /etc/init.d/test.sh
检查:
chkconfig
第二种方法:
crontab -e @reboot /home/start.sh
@reboot 表示开机后执行
标签:脚本,sh,开机,init,添加,Linux,自启,chkconfig From: https://www.cnblogs.com/libruce/p/17014412.html