Banana Pi M3 扩展系统分区(不需要电脑)-Arduino中文社区 - Powered by Discuz! Archiver

BPi-sinovoip 发表于 2016-12-30 15:27

Banana Pi M3 扩展系统分区(不需要电脑)

之前的帖子都是需要电脑进行给卡扩容操作的,今天试了下 M3可以直接在板子上面进行扩容

#运行这个命令后 还是记下这个数字
cat /sys/block/mmcblk0/mmcblk0p2/start

然后运行fdisk

sudo fdisk /dev/mmcblk0输入
d 回车
2 回车
n 回车
p 回车
2 回车
刚才记录下来的数字 回车
再按一次回车
w 回车会输出以下文字
The partition table has been altered.
Calling ioctl() to re-read partition table.
Re-reading the partition table failed.: Device or resource busy

The kernel still uses the old table. The new table will be used at the next reboot or after you run partprobe(8) or kpartx(8).

告诉我们系统依然在使用老的分区表,这时候我们重启一下系统
sudo reboot


重启后运行命令
sudo resize2fs /dev/mmcblk0p2
输出以下文字就代表扩容成功了
resize2fs 1.42.13 (17-May-2015)
Filesystem at /dev/mmcblk0p2 is mounted on /; on-line resizing required
old_desc_blocks = 1, new_desc_blocks = 2
The filesystem on /dev/mmcblk0p2 is now 7700608 (4k) blocks long.

可以用df -h看到分区变大


如提示The filesystem is already 1817600 (4k) blocks long.Nothing to do!
代表刷新分区表失败了,还是需要电脑进行操作

fly928sky 发表于 2016-12-30 16:23

可以试试看这种扩容的方法,谢谢斑竹分享
页: [1]
查看完整版本: Banana Pi M3 扩展系统分区(不需要电脑)