无法读取我的外部磁盘

无法读取我的外部磁盘

我的外部磁盘无法被 fdisk 或 GParted 读取,但是当我运行lsblk->

......

sda      8:0    0   1.8T  0 disk 
├─sda1   8:1    0   100M  0 part /boot/efi
├─sda2   8:2    0    16M  0 part 
├─sda3   8:3    0  99.5G  0 part 
├─sda4   8:4    0   605M  0 part 
├─sda5   8:5    0   604M  0 part 
├─sda6   8:6    0   1.6T  0 part 
└─sda7   8:7    0   100G  0 part /var/snap/firefox/common/host-hunspell
                                 /
sdb      8:16   0 931.5G  0 disk 
sr0     11:0    1  1024M  0 rom 

我试过了sudo fsck -f /dev/sdb->

fsck from util-linux 2.38.1
e2fsck 1.47.0 (5-Feb-2023)
fsck.ext2: Input/output error while trying to open /dev/sdb

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

我的磁盘包含所有文件,上周坏了,似乎无法恢复,但我设法恢复了它!其他fsck相关解决方案不起作用。我在另一个 ssd 上设置了新系统,但损坏的磁盘根本没有显示在设备列表中。

  1. 我关注了这个视频(https://www.youtube.com/watch?v=yTZ1dswQTXs&t=1s),只插上“电源线”。现在,我可以看到,但无法从磁盘读取任何内容。

  2. 我曾经ddrescue创建过一个 .img 文件。这有效!

  3. 接下来,sudo gnome-disk-image-mounter --writable *.img我可以将所有文件复制到新的备份驱动器

相关内容