recupera o diretório corrompido da partição ext3

1

É meu diretório montado que desejo restaurar a pasta ostani . Ele contém muitos arquivos PHP, CSS, Javascript, etc. Como posso acessá-lo? Eu uso dd_rhelper para criar uma imagem e tentei fsck para repará-la. Mas é remover pasta corrompida.

root@asgharserver:~# ls -la /root/oldhard/
ls: /root/oldhard/bina: Input/output error
ls: cannot access /root/oldhard/ostani: Input/output error
total 1187011436
drwxr-xr-x  26 root      root            4096 Jan  3 00:56 .
drwx------   4 root      root            4096 Jan 11 12:20 ..
drwxr-xr-x   2      1007      1007       4096 Aug 19 14:14 afshin
?--------- 512       512  33554432 2256582144 Jan 24  1971 bina
drwxr-xr-x   6 superuser superuser       4096 Nov 15 07:15 mahalleha
d?????????   ? ?         ?                  ?            ? ostani
drwxr-xr-x   2      1012      1012       4096 Aug 26 08:15 tvasr
    
por sweb 11.01.2013 / 21:49

1 resposta

2

Parece que as informações do inode para o ostani dir estão corrompidas. No entanto, os dados reais podem ser bons.

Se sim, você pode usar o debugfs para recuperar isso. Desmonte o disco rígido e continue.

debugfs -c /dev/sdNP     #  replace N and P with the hard disk letter and partition
                         #  the -c option opens the filesystem in read-only mode without looking for inode information

# At the debugfs prompt do the following
ls -l                    #  this lists down the dir/file
rdump ostani  /tmp       #  this saves the recovered data of ostani dir to /tmp/ostani
    
por 11.01.2013 / 23:38