我有两个 Amazon EC2 卷,默认情况下使用 1 GiB 卷,已满。现在我想使用我的第二个卷,即 9 GiB。我使用cat /proc/partitions
命令major minor #blocks name
202 1 1048576 xvda1
202 80 9437184 xvdf
然后我点击了mkfs.ext3 -F /dev/sdf
它的显示
mkfs.ext3: No such file or directory while trying to determine filesystem size
然后我按下命令df
,我得到了
Filesystem 1K-blocks Used Available Use% Mounted on
/dev/xvda1 1032088 1031280 0 100% /
tmpfs 313160 8 313152 1% /lib/init/rw
udev 297800 24 297776 1% /dev
tmpfs 313160 4 313156 1% /dev/shm
overflow 1024 32 992 4% /tmp
意味着我仍然无法使用我的 9 GiB 空间卷。
我同意我有两个卷,其中附件信息是
i-7e4fb41c:/dev/sda1 (attached)
和i-7e4fb41c:/dev/sdf (attached)
其中只有 sda1 在使用。
有人知道我如何使用我的第二个卷 (sdf)。谢谢
答案1
尝试使用 /dev/xvdf 。但如果我是你,我会在创建文件系统之前在其上创建分区。
答案2
您应该挂载dev/xvdf
而不是dev/sdf
(因为新的 AMI 已将您的 EBS 名称升级为xvdf
),然后您就可以处理它了。