Eu reiniciei meu VPS e depois o VPS não consegue encontrar as unidades extras adicionadas. Durante a inicialização, o VPS fornece a seguinte mensagem no console:
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.
Ao executar esses comandos, o sistema não consegue encontrar as unidades. E eu continuei a inicializar o VPS. Tudo foi iniciado, mas as unidades extras (com dados valiosos) não podem ser encontradas em nenhum lugar.
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:~#
Meu 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
Como isso é possível? Como posso consertar isso?
O sistema pode inicializar a partir da partição /dev/xvda1
, mas depois não pode ser encontrado. E também as unidades adicionais (com dados valiosos!) Estão faltando!