一、华为云磁盘在线扩容
(1)选择要扩容的磁盘,点击"扩容"即可;
(2)选择要库容的磁盘大小,下一步
(3)扩容分区和文件系统
(1)使用growpart工具扩容分区 #安装growpart工具 $ sudo apt install cloud-guest-utils #growpart 系统盘 分区编号 $ growpart /dev/sdb 1 CHANGED: partition=1 start=2048 old: size=629143552 end=629145600 new: size=1048573919 end=1048575967 (2)使用resize2fs工具扩容文件系统 #使用resize2fs扩展磁盘分区文件系统的大小 #resize2fs 磁盘分区 $ resize2fs /dev/sdb1 resize2fs 1.45.5 (07-Jan-2020) Filesystem at /dev/sdb1 is mounted on /data; on-line resizing required old_desc_blocks = 38, new_desc_blocks = 63 The filesystem on /dev/sdb1 is now 131071739 (4k) blocks long.
Reference:
分区和文件系统扩展前准备(Linux)_云硬盘 EVS_用户指南_扩容云硬盘_扩展磁盘分区和文件系统(Linux)_华为云 (huaweicloud.com)
扩展系统盘的分区和文件系统(Linux)_云硬盘 EVS_用户指南_扩容云硬盘_扩展磁盘分区和文件系统(Linux)_华为云 (huaweicloud.com)
https://blog.csdn.net/inthat/article/details/124587038
https://einverne.github.io/post/2022/05/growpart-manage-partition.html
标签:扩容,resize2fs,云盘,文件系统,dev,公有,growpart,磁盘分区,035 From: https://www.cnblogs.com/itcomputer/p/17356182.html