如何在 Debian Squeeze 重启后以用户 xy 身份自动启动 python script.py?
答案1
在 rc.local 中放入类似以下内容的条目:
su user_xy -c "script.py"
执行程序作为该用户:
su - user_xy -c "script.py"
答案2
您可以在用户 root 或用户 xy 的 crontab 中使用 @reboot 条目。Debian cron 支持此类条目。
人-S5 crontab
string meaning
------ -------
@reboot Run once, at startup.