XenServerのDebian VPSでドライブが見つかりません。

XenServerのDebian VPSでドライブが見つかりません。

VPSを再起動した後、VPSは追加されたドライブを見つけることができません。起動中、VPS はコンソールに次のメッセージを表示します。

fsck.ext3: No such file or directory while trying to open /dev/xvdc1
/dev/xvdc1: 
The superblock could not be read or does not describe a correct ext2
filesystem.  If the device is valid and it really contains an ext2
filesystem (and not swap or ufs or something else), then the superblock
is corrupt, and you might try running e2fsck with an alternate superblock:
    e2fsck -b 8193 <device>

fsck.ext3: No such file or directory while trying to open /dev/xvdf1
/dev/xvdf1: 
The superblock could not be read or does not describe a correct ext2
filesystem.  If the device is valid and it really contains an ext2
filesystem (and not swap or ufs or something else), then the superblock
is corrupt, and you might try running e2fsck with an alternate superblock:
    e2fsck -b 8193 <device>

fsck died with exit status 8
failed (code 8).
File system check failed. 

これらのコマンドを実行すると、システムはドライブを見つけることができません。 VPSを始めましょう。すべてが起動しますが、貴重なデータを含む追加のドライブが見つかりません。

vps:~# df -h
Filesystem            Size  Used Avail Use% Mounted on
/dev/xvda1            4.0G  3.0G  764M  81% /
tmpfs                 1.1G     0  1.1G   0% /lib/init/rw
tmpfs                 1.1G  4.0K  1.1G   1% /dev/shm

vps:~# fdisk -l
vps:~#

vps:~# ls /dev/ | grep xv
vps:~#

私のfstabは次のようになります

vps:~# cat /etc/fstab
# /etc/fstab: static file system information.
#
# <file system> <mount point>   <type>  <options>               <dump>  <pass>
/dev/xvda1      /               ext3    rw,noatime              0       1
/dev/xvdb1      none            swap    defaults                0       0
/dev/xvdc1      /home           ext3    rw,noatime,usrquota     0       1
/dev/xvdf1      /mnt/backup     ext3    rw,noatime              0       1
/dev/tmpMnt     /tmp            tmpfs   loop,noexec,nosuid,noatime,rw   0       0

どうやってこれができますか?この問題をどのように解決できますか?

システムが/dev/xvda1パーティションから起動しているように見えますが、パーティションが見つかりません。そして接続されたドライブ(貴重なデータを含む!)も失われました!

ベストアンサー1

おすすめ記事