我想在远程 Debian 服务器中安装一个硬盘来检索一些重要数据。fdisk -l
磁盘信息:
Disk /dev/sdc: 931.5 GiB, 1000204886016 bytes, 1953525168 sectors Units: sectors of 1 * 512 = 512 bytes Sector size (logical/physical): 512 bytes / 512 bytes I/O size (minimum/optimal): 512 bytes / 512 bytes Disklabel type: dos Disk identifier: 0xd603e167 Device Boot Start End Sectors Size Id Type /dev/sdc1 2048 1953521663 1953519616 931.5G 6 FAT16
但是当我尝试安装它时:
mount /dev/sdc1 /back
我收到此错误:
mount: wrong fs type, bad option, bad superblock on /dev/sdc1, missing codepage or helper program, or other error In some cases useful info is found in syslog - try dmesg | tail or so.
我也尝试过
mount -t vfat /dev/sdc1 /back
和
mount -t ext4 /dev/sdc1 /back
但它们都出现相同的错误。
还,
fsck /dev/sdc1
产量:
fsck from util-linux 2.29.2 e2fsck 1.43.4 (31-Jan-2017) ext2fs_check_desc: Corrupt group descriptor: bad block for block bitmap fsck.ext4: Group descriptors look bad... trying backup blocks... The filesystem size (according to the superblock) is 244190208 blocks The physical size of the device is 244189952 blocks Either the superblock or the partition table is likely to be corrupt! Abort<y>?
我该如何解决这个问题?