안전 삭제를 수행하지 않고 휴대용 WD 드라이브를 분리했습니다. 내 행동이 내 하드 드라이브를 손상시킨 것 같아요.
나는 다음을 수행했습니다.
sudo fsck /dev/sdb1
나는 다음과 같은 결과를 얻었습니다: `
fsck from util-linux 2.27.1
e2fsck 1.42.13 (17-May-2015)
ext2fs_open2: Bad magic number in super-block
fsck.ext2: Superblock invalid, trying backup blocks...
fsck.ext2: Bad magic number in super-block while trying to open /dev/sdb1
The superblock could not be read or does not describe a valid ext2/ext3/ext4
filesystem. If the device is valid and it really contains an ext2/ext3/ext4
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>
or
e2fsck -b 32768 <device>
그게 무슨 뜻인지 잘 이해가 안 돼요. 누구든지 나에게 무엇을 해야할지 안내해 줄 수 있습니까?
답변1
첫째: 드라이브가 NTFS가 아닌가요? EXT4로 포맷하셨나요?
NTFS(기본 파일 시스템)인 경우
Windows에서 NTFS를 복구하는 것이chkdsk
가장 좋지만 이 명령은 작동합니다.sudo ntfsfix /dev/sdb1
EXT4/EXT3/ext2(다시 포맷한 경우)인
경우슈퍼 블록썩은
기본 슈퍼블록이 손상되어 확인할 수 없다는 메시지가 표시되고
다른 슈퍼블록을 시도하라는 메시지가 표시됩니다.
이와 같은 도구는 testdisk
좋은 슈퍼블록을 복구하는 데 유용합니다.