Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在研究 Raspberry Pi(使用 Rasbian)。该板应独立运行(无需登录),因此我开发的应用程序应在每次启动时启动。但我也希望能够在本地参与董事会(不使用 ssh)。那么我的要求是:
如何做到这一点?
谢谢你的帮助。
朱利安
在我们的 /etc/rc.local 中,您可以指定额外的启动程序,但有延迟。例如,您可以添加以下内容:
python x # sleep time in seconds sleep 60 python y
如果您只在有用户交互的情况下才查看此内容,我建议您使用 bash 脚本将其返回为 bool。那将代替您在那里看到的“python y”命令。抱歉,我手头没有这样的脚本。