关于路由器:小米路由器pror3p刷机记录

34次阅读

共计 1162 个字符,预计需要花费 3 分钟才能阅读完成。


小米 r3p 刷 openwrt19 原版

1. 下载固件: openwrt-19.07.4-ramips-mt7621-xiaomi_mir3p-squashfs-factory.bin
2. 上传并登陆到 r3p
3.r3p 刷入 openwrt

nvram set flag_try_sys1_failed=1 
nvram set flag_try_sys2_failed=0 
nvram set flag_boot_success=0 
nvram commit
dd if=factory.bin bs=1M count=4 | mtd write - kernel1
mtd erase rootfs0
mtd erase rootfs1
mtd erase overlay
dd if=factory.bin bs=1M skip=4 | mtd write - rootfs0
reboot

4. 根本设置
4.1 联网
4.2 开启 WiFi
4.3 装置中文语言包

ssh root@192.168.1.1
sed -i 's_downloads.openwrt.org_mirrors.tuna.tsinghua.edu.cn/openwrt_' /etc/opkg/distfeeds.conf    #批改为国内源
opkg update    #刷新可用源
opkg install luci-i18n-base-zh-cn    #装置中文包 

4.4 反对 usb(官网参考)

# 装置驱动
opkg install kmod-usb-storage    #装置 usb 驱动
opkg install kmod-usb-storage-uas    #装置 uas 驱动
opkg install usbutils    #装置 usb 驱动检测工具
lsusb -t    #列出 usb 设施参数

# 验证是否辨认 usb 设施
ls -l /dev/sd*    #列出辨认的已连贯 usb 设施
opkg install block-mount    #装置 block 工具,用以获取更多 block 信息
block info | grep "/dev/sd"    #获取 usb 设施的 block 信息

# 为 usb 设施分区并格式化

# 挂载 usb 设施
block detect | uci import fstab    #生成一个 fstab 文件配置条目
uci set fstab.@mount[-1].enabled='1'    #在该配置条目上启用主动挂载
uci set fstab.@global[0].check_fs='1'    #路由器每次启动都检测文件系统以挂载
uci commit fstab
reboot    #重启
uci show fstab    #重启后验证挂载
service fstab boot

#usb 设施超时时卸载
#~~opkg update && opkg install hdparm~~    #
#~~hdparm -S 240 /dev/sda1~~    #超时 20 分钟卸载
opkg update && opkg install luci-app-hd-idle    #网页设置 

正文完
 0