从 ext3 分区恢复损坏的目录

从 ext3 分区恢复损坏的目录

这是我要恢复文件夹的安装目录ostani。它包含许多PHP、CSS、Javascript等文件。我怎样才能访问它?我用来dd_rhelper创建图像并尝试fsck修复它。但它删除了损坏的文件夹。

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

答案1

看起来该ostani目录的索引节点信息已损坏。然而,实际数据可能还不错。

如果是这样,您可以使用 debugfs 来恢复它。卸载硬盘并继续。

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

相关内容