树莓派的CPU是保护有硬件看门狗的,可以通过安装模块和值守程序来实现看门狗防止树莓派死机。
安装方法一:
watchdog.sh的源码:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
|
运行:
1 |
|
安装方法二:
1.加载看门狗模块,编辑/etc/modules文件,添加一行“bcm2708_wdog”
1 2 |
|
添加一行”bcm2708_wdog”
2.安装系统配置软件和看门狗程序
1 |
|
3.配置看门狗程序,编辑“/etc/watchdog.conf”文件
1 |
|
去掉 watchdog-device = /dev/watchdog 前的#号,让看门狗设备对应树莓派的硬件看门狗
去掉 max-load-1 = 24 前的#号,当1分钟load进程超过24个的时候就会重启
还可以设置高温复位:
去掉
temperature-device =
max-temperature = 120
前的#号,改为
temperature-device = /sys/class/thermal/thermal_zone0/temp
max-temperature = 80000
温度超过80度就会引起重启,保护CPU。
配置完后,保存(Ctrl+O),退出(ctrl+x)。
4.配置看门狗程序,开机自动运行
1 |
|
5.启动看门狗
1 |
|
本文来自:树莓派实验室
链接地址:http://shumeipai.nxez.com/2013/10/05/raspberry-pi-for-two-methods-of-installing-watchdog.html