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의 inode 정보 가 손상된 것 같습니다. 하지만 실제 데이터는 나쁘지 않을 수도 있습니다.

그렇다면 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

관련 정보