OpenWRT扩容

1.准备

  1. 一台Linux系统机器(虚拟机,实体机都可以)
  2. 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

image-20221102215703456

2.3.安装测试

image-20221102221906298

原文地址:http://www.cnblogs.com/monkey6/p/16852760.html

发表评论

您的电子邮箱地址不会被公开。