在虚拟化环境中,为便于磁盘管理,可能我们会对虚拟磁盘直接进行扩容。
前提原磁盘为xfs的LVM卷,空间为1TB。现扩容至1.5TB
已在VCSA上直接修改了存储磁盘空间
- 首先查询硬盘空间是否生效
fdisk -l
- 扩容–格式化
磁盘sdb近200G空间没有分配。
[root@RunStor ~]# parted /dev/sdb
GNU Parted 3.1
Using /dev/sdb
Welcome to GNU Parted! Type 'help' to view a list of commands.
(parted) mklabel
New disk label type? gpt
(parted) mkpart
Partition name? []?
File system type? [ext2]? ext4
Start? 1
End? 200G
(parted) p
Model: VMware Virtual disk (scsi)
Disk /dev/sdb: 215GB
Sector size (logical/physical): 512B/512B
Partition Table: gpt
Disk Flags:
Number Start End Size File system Name Flags
1 1049kB 200GB 200GB
(parted) q
Information: You may need to update /etc/fstab.
You have new mail in /var/spool/mail/root
打印分区信息表可以看到有两个分区了。
创建物理卷–PV
pvcreat /dev/sdb1
pvs
将物理卷扩展到卷组并查看
扫描二维码关注公众号,回复:
12886306 查看本文章
vgextend centos /dev/sdb1
vgdisplay
将卷组中空闲空间扩展到,并且刷新文件系统
lvextend -l +100%FREE /dev/mapper/centos-root ####100%空闲空间扩展
xfs格式的文件系统扩容命令
ext4文件系统扩容命令
resize2fs /dev/mapper/centos-root
xfs格式的文件系统扩容命令
xfs_growfs /dev/mapper/centos-root
ext4文件系统扩容命令
resize2fs /dev/mapper/centos-root