OpenWRT扩容
1.准备
- 一台Linux系统机器(虚拟机,实体机都可以)
- OpenWrt镜像
2.步骤
2.1.上传OpenWRT镜像至Linux服务器
2.2.执行命令扩容镜像
# 解压
gzip -dv openwrt-11.02.2022-x86-64-generic-squashfs-combined-efi.img.gz
# 重命名
mv openwrt-11.02.2022-x86-64-generic-squashfs-combined-efi.img openwrt.img
# 扩容,>>是追加的意思,如果用>就会覆盖
dd if=/dev/zero bs=1G count=9 >> openwrt.img
# 格式化
parted openwrt.img