標籤:沒有 hang 類型 根分區 2.0 ted code 使用 unit
1:.首先查看我們的根分區大小是多少
df -h
檔案系統 類型 容量 已用 可用 已用% 掛載點
/dev/mapper/centos-root
xfs 18G 1.1G 17G 6% /
devtmpfs devtmpfs 479M 0 479M 0%
/dev
tmpfs tmpfs 489M 0 489M 0%
/dev/shm
tmpfs tmpfs 489M 6.7M 483M 2%
/run
tmpfs tmpfs 489M 0 489M 0%
/sys/fs/cgroup
/dev/sda1
xfs 497M 125M 373M 25%
/boot
tmpfs tmpfs 98M 0 98M 0%
/run/user/0
2:在虛擬機器中添加一塊物理的磁碟,重起虛擬機器。3:查看磁碟編號
ls /dev/sd*
/dev/sda
/dev/sda1
/dev/sda2
/dev/sdb
4:建立pv
pvcreate /dev/sdb
Physical volume
"/dev/sdb"
successfully created
5:把pv加入vg中,相當於擴充vg的大小
先使用vgs查看vg組
vgs
VG #PV #LV #SN Attr VSize VFree
centos 2 2 0 wz--n- 59.50g 20.04g
擴充vg,使用vgextend命令
vgextend centos /dev/sdb
6 :我們成功把vg卷擴充了,在用vgs查看一下
vgs
VG
#PV #LV #SN Attr VSize VFree
centos 2 2 0 wz--n- 39.50g 20.04g
lvs
LV VG Attr LSize Pool Origin Data% Meta% Move Log Cpy%Sync Convert
root centos -wi-ao---- 17.47g
swap centos -wi-ao---- 2.00g 雖然我們把vg擴充了,但是lv還沒有擴充
7:擴充lv,使用lvextend命令
lvextend -L +20G /dev/mapper/centos-root
Size of logical volume centos
/root
changed from 17.47 GiB (4472 extents) to 37.47 GiB (9592 extents).
Logical volume root successfully resized
8: 命令使系統重新讀取大小
xfs_growfs /dev/mapper/centos-root
meta-data=
/dev/mapper/centos-root
isize=256 agcount=4, agsize=1144832 blks
= sectsz=512 attr=2, projid32bit=1
= crc=0 finobt=0
data = bsize=4096 blocks=4579328, imaxpct=25
= sunit=0 swidth=0 blks
naming =version 2 bsize=4096 ascii-ci=0 ftype=0
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 4579328 to 9822208
9:再使用df -h查看
df -h
檔案系統 容量 已用 可用 已用% 掛載點
/dev/mapper/centos-root
38G 1.1G 37G 3% /
devtmpfs 479M 0 479M 0%
/dev
tmpfs 489M 0 489M 0%
/dev/shm
tmpfs 489M 6.7M 483M 2%
/run
tmpfs 489M 0 489M 0%
/sys/fs/cgroup
/dev/sda1
497M 125M 373M 25%
/boot
tmpfs 98M 0 98M 0%
/run/user/0
虛擬機器擴容(/dev/mapper/centos-root 空間不足)