在某些极端的机器上,我们使用/etc/rc.local配置开机自启会莫名其妙不生效,所以我们可以采取曲线救国的办法,使用crontab来实现开机自启。
使用方法:
crontab -e @reboot /home/start.sh
保存即可。
@reboot 表示重启开机的时候运行一次。还有很多类似参数如下:
string meaning ------ ----------- @reboot Run once, at startup. @yearly Run once a year, "0 0 1 1 *". @annually (same as @yearly) @monthly Run once a month, "0 0 1 * *". @weekly Run once a week, "0 0 * * 0". @daily Run once a day, "0 0 * * *". @midnight (same as @daily) @hourly Run once an hour, "0 * * * *".
配置完成后,会在开机后进行启动,如果需要延时启动,可以参考:
@reboot sleep 300 && /home/start.sh