Linux下Python脚本自启动和定时启动
linux-dash
A beautiful web dashboard for Linux
项目地址:https://gitcode.com/gh_mirrors/li/linux-dash
免费下载资源
·
一、Python开机自动运行
自启动脚本为auto.py
用root权限编辑以下文件
sudo vim /etc/rc.local
在exit 0上面编辑启动脚本的命令
/usr/bin/python3 /home/edgar/auto.py > /home/edgar/auto.log
最后重启Linux,脚本就能自动运行并打印日志了。
二、让Python脚本定时启动
准备好定时启动的脚本auto.py
用root权限编辑以下文件
sudo vim /etc/crontab
在文件末尾添加以下命令
2 * * * * root /usr/bin/python3 /home/edgar/auto.py > /home/edgar/auto.log
三、crontab编写解释
基本格式
* * * * * user command
分 时 日 月 周 用户 命令
1、每分钟执行一次
* * * * * user command
4、每个月的3号到6号的8:30执行一次
30 8 3-6 * * user command (-表示范围)
5、每个星期一的8:30执行一次
30 8 * * 1 user command (周的范围为0-7,0和7代表周日)
GitHub 加速计划 / li / linux-dash
10.39 K
1.2 K
下载
A beautiful web dashboard for Linux
最近提交(Master分支:2 个月前 )
186a802e
added ecosystem file for PM2 4 年前
5def40a3
Add host customization support for the NodeJS version 4 年前
更多推荐
已为社区贡献1条内容
所有评论(0)