重新启动后自动并直接运行shell命令并使其保持运行

时间:2018-05-03 11:10:41

标签: linux shell command startup

我有这个shell命令asebamedulla "ser:device=/dev/ttyACM0",我想让它在重启Linux后直接运行。 我读了一些解决方案(shell_command &,或者在后台作为守护进程运行...)但我不知道如何使用它们。 我的问题是:
如何在启动后自动直接运行shell命令?

1 个答案:

答案 0 :(得分:1)

解决方案1:

>>sudo crontab -e

#In the first line of this file enter this:

@reboot <your command whatever>

#Save and Exit

解决方案2:

将脚本命名为&#34; whatever.sh&#34;

将文件放在 /etc/init.d / 目录中。

更改文件的权限。

chmod +x /etc/init.d/whatever.sh