设置时间自动运行和关闭Pi4中的程序Qt
由于某种原因,我需要在早上 7 点到晚上 10 点之间在我的 Pi4 上运行 Qt 程序,其余时间程序关闭。这需要每天自动发生。我尝试过,但没有成功,程序无法按照我的意愿自动打开和关闭。谁能帮助我?
For some reason I need to run a Qt program on my Pi4 between 7am and 10pm, the rest of the time the program closes. This needs to happen automatically every day. I tried but it didn't work, the program couldn't open and close automatically as I wanted. Who can help me?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 crontab 运行一些脚本在上午 7 点启动程序,然后运行另一个脚本在晚上 10 点关闭程序。
例如,在 crontab 中添加以下代码,您就可以每天运行和停止某个程序。
crontab 教程
You can use crontab to run some script to start your program at 7am, then run another script to close the program at 10pm.
For example, add codes below in crontab and you can run and stop some program everyday.
crontab tutorial