一.引言
最近在搞树莓派,重新刷了一个64位系统,有一次开机突然卡死,为了做一个性能稳定性测试,决定搞一个系统开始测试。
二.sh脚本编写
编写一个自动重启的sh脚本名字为 test_reboot.sh
#!/bin/bash
# 重启计数器文件
counter_file="./test_1/reboot-counter"
out_file="./test_1/out"
# 重启次数限制
max_reboots=10000
# 检查计数器文件是否存在
if [ ! -f "$counter_file" ]; then
echo 0 > "$counter_file"
fi
# 读取当前重启次数
current_reboots=$(cat "$counter_file")
# 增加重启次数
echo $(($current_reboots + 1)) > "$counter_file"
# 如果达到了重启次数限制,则阻止重启
if [ "$current_reboots" -ge "$max_reboots" ]; then
echo "Maximum reboots reached. Reboot is blocked."
exit 1
fi
# 继续正常重启流程
echo "Continuing with the reboot..." > "$out_file"
# 开机后延迟3秒
sleep 3
# 重启机器
sudo reboot
三. 设置开机重启
sudo vim /etc/rc.local
在 exit 0 之前添加如下命令
/bin/bash /home/pi/test_reboot.sh
四. 开始测试
直接在树莓派终端开始执行, 重启树莓派就好
sudo reboot