Je voudrais lire le contenu d'un vieux disque dur qui est formaté comme une partition HPFS/NTFS (amorçable) ; je ne suis pas sûr que la partie amorçable fasse une différence. J'ai essayé de monter le disque mais je n'y arrive pas. Comment puis-je lire ce disque ?
Lors de l'utilisation de sudo fdisk -l
le lecteur s'affiche comme suit :
:~$ sudo fdisk -l
Device Boot Start End Sectors Size Id Type
/dev/sdf1 * 63 488392064 488392002 232.9G 7 HPFS/NTFS/exFAT
Tenter d'utiliser mount
:
:~$ sudo mount /dev/sdf1 /mnt/ntfs1
mount: wrong fs type, bad option, bad superblock on /dev/sdf1,
missing codepage or helper program, or other error
In some cases useful info is found in syslog - try
dmesg | tail or so.
Tenter d'utiliser ntfs-3g
;
:~$ sudo ntfs-3g /dev/sdf1 /mnt/ntfs1
NTFS signature is missing.
Failed to mount '/dev/sdf1': Invalid argument
The device '/dev/sdf1' 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?
Editer :
Tenter d'utiliser mount -t exfat
:
:~$ sudo mount -t exfat /dev/sdf1 /mnt/ntfs1
FUSE exfat 1.1.0
ERROR: exFAT file system is not found.
fsck
rapport :
:~$ sudo fsck -f /dev/sdf1
fsck from util-linux 2.26.2
e2fsck 1.42.12 (29-Aug-2014)
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/sdf1
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>