Linux磁盘空间扩容
- VMware虚拟机中配置
- (1)进入虚拟机设置界面,选择扩展磁盘容量。
- (2) 本次是在原来30G的基础上扩展为50G。
- Linux中设置
- (1) 可以看出sda3是根分区,下面按照博客提示,先删除sda3根分区,然后重新创建sda3根分区,具体参考注释。
- (2)重启系统
- (3)扩容文件系统
- 扩容结果展示。
VMware虚拟机中配置
(1)进入虚拟机设置界面,选择扩展磁盘容量。
(2) 本次是在原来30G的基础上扩展为50G。
成功后发现提示,必须从客户机操作系统内部对磁盘重新进行分区和扩展文件系统,因此需要进入linux系统继续进行配置,这里配置是不会生效的。
Linux中设置
进入Linux系统,使用命令fdisk -l查看,发现实际大小为50G,但是系统已挂载的加起来是修改之前的30G。
(1) 可以看出sda3是根分区,下面按照博客提示,先删除sda3根分区,然后重新创建sda3根分区,具体参考注释。
[root@node03 ~]# fdisk /dev/sda
Welcome to fdisk (util-linux 2.23.2).Changes will remain in memory only, until you decide to write them.
Be careful before using the write command.Command (m for help): m
Command actiona toggle a bootable flagb edit bsd disklabelc toggle the dos compatibility flagd delete a partitiong create a new empty GPT partition tableG create an IRIX (SGI) partition tablel list known partition typesm print this menun add a new partitiono create a new empty DOS partition tablep print the partition tableq quit without saving changess create a new empty Sun disklabelt change a partition's system idu change display/entry unitsv verify the partition tablew write table to disk and exitx extra functionality (experts only)Command (m for help): d ##删除分区
Partition number (1-3, default 3): 3 ##临时先删除sda3分区
Partition 3 is deletedCommand (m for help): n #添加一个新的分区
Partition type:p primary (2 primary, 0 extended, 2 free)e extended
Select (default p): p #添加主分区
Partition number (3,4, default 3): 3 #指定分区号3,重新创建sda3分区
First sector (17303552-104857599, default 17303552): #回车
Using default value 17303552
Last sector, +sectors or +size{K,M,G} (17303552-104857599, default 104857599): #回车
Using default value 104857599
Partition 3 of type Linux and of size 41.8 GiB is set #提示OKCommand (m for help): w #按w保存退出
The partition table has been altered! #提示OK
(2)重启系统
重启当前系统,可以选择systemctl reboot或者init 6来执行。
(3)扩容文件系统
使用命令 xfs_growfs /dev/sda3
,可以看到成功扩展分区,根分区已扩容20G。
[root@node03 ~]# xfs_growfs /dev/sda3
meta-data=/dev/sda3 isize=512 agcount=8, agsize=769984 blks= sectsz=512 attr=2, projid32bit=1= crc=1 finobt=0 spinodes=0
data = bsize=4096 blocks=5701376, 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 5701376 to 10944256查看结果
[root@node03 ~]# df -h
Filesystem Size Used Avail Use% Mounted on
/dev/sda3 42G 11G 32G 25% /
devtmpfs 2.9G 0 2.9G 0% /dev
tmpfs 3.0G 0 3.0G 0% /dev/shm
tmpfs 3.0G 13M 2.9G 1% /run
tmpfs 3.0G 0 3.0G 0% /sys/fs/cgroup
/dev/sda1 253M 153M 101M 61% /boot
tmpfs 595M 8.0K 595M 1% /run/user/990
tmpfs 595M 0 595M 0% /run/user/0
You have new mail in /var/spool/mail/root
扩容结果展示。
以上为参考博文执行的结果,且当前执行成功的系统为Centos7.6,根分区文件类型为xfs,并且系统不是LVM分区,可作为参考。