我遵循了调整 EC2卷大小的步骤
Old volume was 5GB and the one I created is 100GB
现在,当我重新启动实例并运行 df -h I
时,仍然可以看到这个
Filesystem Size Used Avail Use% Mounted on
/dev/xvde1 4.7G 3.5G 1021M 78% /
tmpfs 296M 0 296M 0% /dev/shm
这就是我跑步的下场
sudo resize2fs /dev/xvde1
The filesystem is already 1247037 blocks long. Nothing to do!
如果我运行 cat /proc/partitions
我看到
202 64 104857600 xvde
202 65 4988151 xvde1
202 66 249007 xvde2
根据我的理解,如果我遵循了正确的步骤,xvde 应该拥有与 xvde1相同的数据,但是我不知道如何使用它
如何使用新卷或 ummount xvde1并挂载 xvde?
我不明白我做错了什么
我也试了 sudo ifs_growfs /dev/xvde1
xfs_growfs: /dev/xvde1 is not a mounted XFS filesystem
顺便说一下,这是一个 linux 的盒子,内置6.2 x86 _ 64
Thanks in advance for your help