Debian

在 Debian Squeeze 中以使用者 xy 重新啟動後啟動 script.py

  • March 12, 2013

如何在 Debian Squeeze 中以使用者 xy 自動重新啟動後啟動 python script.py?

在 rc.local 中添加一個類似於以下內容的條目:

su user_xy -c "script.py" 

該使用者身份執行程序:

su - user_xy -c "script.py"

您可以在使用者 root 或使用者 xy 的 crontab 中使用 @reboot 條目。Debian cron 支持此類條目。

人 -S5 crontab

string         meaning
------         -------
@reboot        Run once, at startup.

引用自:https://serverfault.com/questions/486718