한 시스템에서 디스크가 손상된 것으로 인식되었지만 다른 시스템에서는 정상적으로 작동합니다.

한 시스템에서 디스크가 손상된 것으로 인식되었지만 다른 시스템에서는 정상적으로 작동합니다.

저는 일반적으로 Raspberry Pi에 연결해 두는 Western Digital USB 하드 드라이브를 가지고 있습니다. 오늘 나는 드라이브가 더 이상 마운트되지 않았으며 syslog에서 이유를 설명하는 내용을 볼 수 없다는 것을 알았습니다. sudo mount /dev/sdc /media/pi/media-2/다시 마운트하려고 실행했을 때 다음을 얻었습니다.

mount: wrong fs type, bad option, bad superblock on /dev/sdc,
       missing codepage or helper program, or other error

       In some cases useful info is found in syslog - try
       dmesg | tail or so.

그리고 sudo fsck /dev/sdc

fsck from util-linux 2.29.2
e2fsck 1.43.4 (31-Jan-2017)
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/sdc

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>

Found a gpt partition table in /dev/sdc

Ubuntu 18.04를 실행하는 노트북에 연결하면 정상적으로 마운트되고 fsck다음과 같이 반환됩니다.

fsck from util-linux 2.31.1
e2fsck 1.44.1 (24-Mar-2018)
media-2: clean, 1175/122093568 files, 422501325/488369920 blocks

파이에서 각 USB 포트에 연결해 보았지만 아무런 차이가 없었습니다. 왜 한 컴퓨터에서는 작동하고 다른 컴퓨터에서는 작동하지 않는지 아시나요?

관련 정보