ich habe eine 1TB Festplatte, auf der ein Linux installiert war/ist und möchte die Daten darauf retten.
Laut Benutzer ist sein PC eingefroren, er konnte ihn nur noch ausschalten. Danach bootete Linux nicht mehr, es kam "error: unkown filesystem".
Der User hat versucht, mit diesem Tool: https://www.chip.de/downloads/Boot-Repa ... 58348.html
den PC wieder startfähig zu machen, ohne Erfolg.
Ich habe erstmal grml gebootet und mir die Platte angesehen (sdc ist der USB-Stick auf dem grml installiert ist):
Code: Alles auswählen
root@grml ~ # fdisk -l|less
Disk /dev/sda: 931.5 GiB, 1000204886016 bytes, 1953525168 sectors
Disk model: Hitachi HDT72101
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: 0x44d4ba69
Device Boot Start End Sectors Size Id Type
/dev/sda1 * 2048 1953523711 1953521664 931.5G 83 Linux
Disk /dev/sdb: 931.5 GiB, 1000204886016 bytes, 1953525168 sectors
Disk model: Hitachi HDT72101
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: 0x44d4ba69
Device Boot Start End Sectors Size Id Type
/dev/sdb1 * 2048 1953523711 1953521664 931.5G 83 Linux |
|
|
Disk /dev/sdc: 14.7 GiB, 15720251392 bytes, 30703616 sectors |
Disk model: DT Rubber 3.0 |
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: 0x0133b4c4 |
|
Device Boot Start End Sectors Size Id Type |
/dev/sdc1 * 2048 30703615 30701568 14.7G c W95 FAT32 (LBA) |
|
|
Disk /dev/loop0: 618 MiB, 647962624 bytes, 1265552 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
Code: Alles auswählen
root@grml ~ # dd if=/dev/sdb of=/dev/sda bs=8M |
119233+1 records in |
119233+1 records out |
1000204886016 bytes (1.0 TB, 932 GiB) copied, 11315.2 s, 88.4 MB/s |
dd if=/dev/sdb of=/dev/sda bs=8M 1.01s user 2125.77s system 18% cpu 3:08:35.19 |
total |
root@grml ~ #
Code: Alles auswählen
root@grml ~ # mount /dev/sdb1 /mnt |
NTFS signature is missing.
Failed to mount '/dev/sdb1': Invalid argument
The device '/dev/sdb1' doesn't seem to have a valid NTFS.
Maybe the wrong device is used? Or the whole disk instead of a
partition (e.g. /dev/sda, not /dev/sda1)? Or the other way around?
12 root@grml ~ #
Code: Alles auswählen
root@grml ~ # mount /dev/sdb1 /mnt -t ext4
mount: /mnt: wrong fs type, bad option, bad superblock on /dev/sdb1, missing cod|
epage or helper program, or other error.
32 root@grml ~ #
Scheinbar hat dieses Tool oben irgendwas am Dateisystem gemacht, das ist leider nicht mehr nachvollziehbar.
Noch eine wichtige Info, laut User hat er das Linux ohne Swap installiert, deswegen gibt es nur eine große Partition.