- 优雅地使用命令行:Tmux 终端复用
- Tmux入门教程
- 玩转 vim 与 Terminal (视频)
- vim + tmux - OMG!Code
- Basic tmux Tutorial - Windows, Panes, and Sessions over SSH
- Raspberry Pi 4 Cooling
- Getting Started With The Raspberry Pi 4 - Use It As A Linux PC
-
Why crontab scripts are not working?: crontab tricks
- restart cron in redhat:
sudo /etc/init.d/crond restart
(sudo service crond restart
does not work) - add
#!/bin/bash
at the top to make sure run in bash - PATH
- crontab file should end with an empty line
- change file to executable as
755
- restart cron in redhat:
To test if an cron job works or not, put the following code in the .sh
cron file and then wait for the execution result:
* * * * * env > /home/songjack/cron/env.from.cron.output