一.df -T 查看文件系统类型
当前系统格式为 xfs
二 .lsblk查看分区状况
三.虚拟机管理增加容量
原来是22G,改为30G,之后重启
四.fdisk -l 查看磁盘容量和分区
32.2G是目前的总容量
五.fdisk /dev/sda 新增分区
[root@localhost ~]# fdisk /dev/sda # 通过该命令新增分区
欢迎使用 fdisk (util-linux 2.23.2)。
更改将停留在内存中,直到您决定将更改写入磁盘。
使用写入命令前请三思。
命令(输入 m 获取帮助):n # n 新增分区
Partition type:
p primary (2 primary, 0 extended, 2 free)
e extended
Select (default p): # 不输入直接回车代表默认p,主分区
Using default response p
分区号 (3,4,默认 3): # 直接回车默认即可
起始 扇区 (209715200-314572799,默认为 209715200): # 回车默认即可
将使用默认值 209715200
Last 扇区, +扇区 or +size{K,M,G} (209715200-314572799,默认为 314572799): # 回车默认即可
将使用默认值 314572799
分区 3 已设置为 Linux 类型,大小设为 50 GiB
命令(输入 m 获取帮助):t # 输入命令t
分区号 (1-3,默认 3): # 回车默认即可
Hex 代码(输入 L 列出所有代码):8e # 输入8e(8e代表Linux LVM分区类型)
已将分区“Linux”的类型更改为“Linux LVM”
命令(输入 m 获取帮助):w # 保存以上更改信息
The partition table has been altered!
Calling ioctl() to re-read partition table.
WARNING: Re-reading the partition table failed with error 16: 设备或资源忙.
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)
正在同步磁盘。
[root@localhost ~]#
以上执行后,fdisk -l 查看当前增加了sda3
重启,执行lsblk,发现增加了sda3分区
六.新建格式化分区
[root@node1 ~]# mke2fs -t ext4 /dev/sda3
mke2fs 1.42.9 (28-Dec-2013)
Discarding device blocks: 完成
文件系统标签=
OS type: Linux
块大小=4096 (log=2)
分块大小=4096 (log=2)
Stride=0 blocks, Stripe width=0 blocks
524288 inodes, 2097152 blocks
104857 blocks (5.00%) reserved for the super user
第一个数据块=0
Maximum filesystem blocks=2147483648
64 block groups
32768 blocks per group, 32768 fragments per group
8192 inodes per group
Superblock backups stored on blocks:
32768, 98304, 163840, 229376, 294912, 819200, 884736, 1605632
Allocating group tables: 完成
正在写入inode表: 完成
Creating journal (32768 blocks): 完成
Writing superblocks and filesystem accounting information:
完成
七。合并分区
[root@node1 ~]# lvm
lvm> pvcreate /dev/sda3
WARNING: ext4 signature detected on /dev/sda3 at offset 1080. Wipe it? [y/n]: y
Wiping ext4 signature on /dev/sda3.
Physical volume "/dev/sda3" successfully created.
lvm> vgdisplay
--- Volume group ---
VG Name centos
System ID
Format lvm2
Metadata Areas 1
Metadata Sequence No 3
VG Access read/write
VG Status resizable
MAX LV 0
Cur LV 2
Open LV 1
Max PV 0
Cur PV 1
Act PV 1
VG Size <21.00 GiB
PE Size 4.00 MiB
Total PE 5375
Alloc PE / Size 5374 / 20.99 GiB
Free PE / Size 1 / 4.00 MiB
VG UUID hZuP1j-dHkF-6sgJ-Depy-mspQ-Y1Xu-OS9ydy
lvm> vgextend centos /dev/sda3
Volume group "centos" successfully extended
lvm> lvextend -l+12799 /dev/mapper/centos-root
Insufficient free space: 12799 extents needed, but only 2048 available
lvm> lvextend -l+2000 /dev/mapper/centos-root
Size of logical volume centos/root changed from 18.79 GiB (4811 extents) to <26.61 GiB (6811 extents).
Logical volume centos/root successfully resized.
lvm>
退出到#
执行
root@node1 mapper]# resize2fs /dev/mapper/centos-root
resize2fs 1.42.9 (28-Dec-2013)
resize2fs: Bad magic number in super-block 当尝试打开 /dev/mapper/centos-root 时
找不到有效的文件系统超级块.
[root@node1 mapper]# xfs_growfs /dev/mapper/centos-root
meta-data=/dev/mapper/centos-root isize=512 agcount=4, agsize=1231616 blks
= sectsz=512 attr=2, projid32bit=1
= crc=1 finobt=0 spinodes=0
data = bsize=4096 blocks=4926464, imaxpct=25
= sunit=0 swidth=0 blks
naming =version 2 bsize=4096 ascii-ci=0 ftype=1
log =internal bsize=4096 blocks=2560, version=2
= sectsz=512 sunit=0 blks, lazy-count=1
realtime =none extsz=4096 blocks=0, rtextents=0
data blocks changed from 4926464 to 6975488
最后,用df -hT 查看成果