Ubuntu
在 Ubuntu 12.04 上進行 EBS 快照和還原後無法掛載
我正在嘗試在 EC2 上備份和恢復 EBS 卷。所以這就是我正在做的事情:
ec2-create-snapshot <ebs volume> -d <snapshot name> ec2-create-volume --snapshot <snapshot code> -z us-east-1a ec2-run-instances ami-82fa58eb -n 1 -g default -k <keypair> -t m1.large -z us-east-1a (That is an instance of ubuntu 12.04) ec2-attach-volume <restored volume code> -i <instance code> -d /dev/sdf sudo mkdir /mongo (the directory that the volume was mounted on the original instance) sudo mount /dev/xvdf /mongo -t ext4 -o defaults,auto,noatime,noexec
我收到以下錯誤:
mount: wrong fs type, bad option, bad superblock on /dev/xvdf, missing codepage or helper program, or other error
dmesg | 尾部返回以下內容:
[2530743.900350] EXT4-fs (xvdf): mounted filesystem with ordered data mode. Opts: (null) [2531604.280710] blkfront device/vbd/2128 num-ring-pages 1 nr_ents 32. [2531604.862635] blkfront: xvdf: barrier or flush: disabled [2531604.883965] xvdf: unknown partition table [2531656.336763] EXT4-fs (xvdf): VFS: Can't find ext4 filesystem
當我分離恢復的 EBS 並將原始 EBS 附加到新實例時,它可以工作。
我錯過了什麼?或者我做錯了什麼?
我不確定這是否是問題所在,但我在創建快照之前解除安裝了 EBS,並再次重新執行整個過程並且它有效。
我遇到了同樣的問題。
ssd
我已經為我附加的條目創建了一個條目/etc/fstab
。我為 previos ssd 的 UUID 添加了一個條目。我剛剛刪除它並重新啟動了我的機器,它對我有用。