虚拟机磁盘空间250G,克隆后系统分区空间只有200G,通过resize2fs扩容分区。
[suer@pro-22-244 ~]$ sudo fdisk -l
磁盘 /dev/sda:268.4 GB, 268435456000 字节,524288000 个扇区
Units = 扇区 of 1 * 512 = 512 bytes
扇区大小(逻辑/物理):512 字节 / 512 字节
I/O 大小(最小/最佳):512 字节 / 512 字节
磁盘标签类型:dos
磁盘标识符:0x000eff34
设备 Boot Start End Blocks Id System
/dev/sda1 * 2048 2099199 1048576 83 Linux
/dev/sda2 2099200 27265023 12582912 82 Linux swap / Solaris
/dev/sda3 27265024 419430399 196082688 83 Linux
[suer@pro-243 ~]$ df -h
文件系统 容量 已用 可用 已用% 挂载点
devtmpfs 5.8G 0 5.8G 0% /dev
tmpfs 5.8G 0 5.8G 0% /dev/shm
tmpfs 5.8G 50M 5.8G 1% /run
tmpfs 5.8G 0 5.8G 0% /sys/fs/cgroup
/dev/sda3 184G 52G 124G 30% /
/dev/sda1 976M 150M 760M 17% /boot
tmpfs 1.2G 12K 1.2G 1% /run/user/42
tmpfs 1.2G 0 1.2G 0% /run/user/1000
[suer@pro-243 ~]$ sudo fdisk /dev/sda
欢迎使用 fdisk (util-linux 2.23.2)。
更改将停留在内存中,直到您决定将更改写入磁盘。
使用写入命令前请三思。
命令(输入 m 获取帮助):p
磁盘 /dev/sda:268.4 GB, 268435456000 字节,524288000 个扇区
Units = 扇区 of 1 * 512 = 512 bytes
扇区大小(逻辑/物理):512 字节 / 512 字节
I/O 大小(最小/最佳):512 字节 / 512 字节
磁盘标签类型:dos
磁盘标识符:0x000eff34
设备 Boot Start End Blocks Id System
/dev/sda1 * 2048 2099199 1048576 83 Linux
/dev/sda2 2099200 27265023 12582912 82 Linux swap / Solaris
/dev/sda3 27265024 419430399 196082688 83 Linux
命令(输入 m 获取帮助):m
命令操作
a toggle a bootable flag
b edit bsd disklabel
c toggle the dos compatibility flag
d delete a partition
g create a new empty GPT partition table
G create an IRIX (SGI) partition table
l list known partition types
m print this menu
n add a new partition
o create a new empty DOS partition table
p print the partition table
q quit without saving changes
s create a new empty Sun disklabel
t change a partition's system id
u change display/entry units
v verify the partition table
w write table to disk and exit
x extra functionality (experts only)
命令(输入 m 获取帮助):d
分区号 (1-3,默认 3):
分区 3 已删除
命令(输入 m 获取帮助):n
Partition type:
p primary (2 primary, 0 extended, 2 free)
e extended
Select (default p):
Using default response p
分区号 (3,4,默认 3):
起始 扇区 (27265024-524287999,默认为 27265024):
将使用默认值 27265024
Last 扇区, +扇区 or +size{K,M,G} (27265024-524287999,默认为 524287999):
将使用默认值 524287999
分区 3 已设置为 Linux 类型,大小设为 237 GiB
命令(输入 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)
正在同步磁盘。
[suer@pro-243 ~]$ sudo reboot
[suer@pro-243 ~]$ df -h
文件系统 容量 已用 可用 已用% 挂载点
devtmpfs 5.8G 0 5.8G 0% /dev
tmpfs 5.8G 0 5.8G 0% /dev/shm
tmpfs 5.8G 9.9M 5.8G 1% /run
tmpfs 5.8G 0 5.8G 0% /sys/fs/cgroup
/dev/sda3 184G 52G 124G 30% /
/dev/sda1 976M 150M 760M 17% /boot
tmpfs 1.2G 0 1.2G 0% /run/user/1000
tmpfs 1.2G 8.0K 1.2G 1% /run/user/42
[suer@pro-243 ~]$ sudo resize2fs /dev/sda3
resize2fs 1.42.9 (28-Dec-2013)
Filesystem at /dev/sda3 is mounted on /; on-line resizing required
old_desc_blocks = 24, new_desc_blocks = 30
The filesystem on /dev/sda3 is now 62127872 blocks long.
[suer@pro-243 ~]$ df -h
文件系统 容量 已用 可用 已用% 挂载点
devtmpfs 5.8G 0 5.8G 0% /dev
tmpfs 5.8G 0 5.8G 0% /dev/shm
tmpfs 5.8G 9.9M 5.8G 1% /run
tmpfs 5.8G 0 5.8G 0% /sys/fs/cgroup
/dev/sda3 234G 52G 171G 24% /
/dev/sda1 976M 150M 760M 17% /boot
tmpfs 1.2G 0 1.2G 0% /run/user/1000
tmpfs 1.2G 8.0K 1.2G 1% /run/user/42