cron详见:http://hi.baidu.com/yuyong1982912/item/c8cb95c9703e181550505858
例如自己写个角本,定时判断网络是否正常连接
编辑sudo crontab -e
*/5 * * * * /home/pi/ifnet(每五分钟判断一次)
查看sudo crontab -l
######################################
判断网络shell角本编写:
#!/bin/bash
ping=`ping -c 3 192.168.1.1|awk ‘NR==7{print $4}’`
if [ $ping == 0 ];
then
/etc/init.d/networking restart
else
echo “network is ok”
fi |