在安装程序时遇到错误:”Error 28 : No space left on device”。使用df -h命令查询,发现/dev/mapper/centos-root已使用几乎100%。此时,需要对该分区进行扩容。
(1)虚拟机上扩容
在虚拟机上,将磁盘从原有的6G扩容到60G。
(2)使用fdisk新建分区
以root身份进入系统,并输入命令查看分区情况:
#fdisk -l
最大分区为/dev/sda2,说明新创建的分区将会是sda3(在后面的步骤会进行选择)。
输入命令创建分区:
#fdisk /dev/sda
- 命令行提示下输入m(查看帮助文件)。
- 输入命令n,添加新分区。
- 输入命令p,创建主分区。
- 接连输入两次回车,选择默认值。
- 输入命令w,保存修改。
输入reboot,重启linux。必须reboot,否则/dev/sda3无法格式化。
(3)扩展/dev/mapper/centos-root
1 创建pv(给刚刚新建的分区/dev/sda3)
[root@localhost ~]# pvcreate /dev/sda3
Physical volume "/dev/sda3" successfully created
2 把pv加入vg中,相当于扩充vg的大小
先使用vgs查看vg组
[root@localhost ~]# vgs
VG #PV #LV #SN Attr VSize VFree
centos 1 2 0 wz--n- 19.51g 40.00m
扩展vg,使用vgextend命令
[root@localhost ~]# vgextend centos /dev/sda3
Volume group "centos" successfully extended
3 成功把vg卷扩展了,在用vgs查看一下
[root@localhost ~]vgs
VG #PV #LV #SN Attr VSize VFree
centos 2 2 0 wz--n- 39.50g 20.04g
[root@localhost ~]# 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还没有扩展
4 扩展lv,使用lvextend命令
[root@localhost ~]# 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.
查看lv大小
[root@localhost ~]# lvs
LV VG Attr LSize Pool Origin Data% Meta% Move Log Cpy%Sync Convert
root centos -wi-ao---- 37.47g
swap centos -wi-ao---- 2.00g
查看df -h中是否变化
[root@localhost ~]# df -h
文件系统 容量 已用 可用 已用% 挂载点
/dev/mapper/centos-root 18G 1.1G 17G 6% /
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
没有发生变化。使用命令使系统重新读取大小。
[root@localhost ~]# 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
再使用df -h查看
[root@localhost ~]# 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
至此,就成功扩展了。