web-dev-qa-db-fra.com

Impossible de monter le lecteur NTFS - "La signature NTFS est manquante."

Je ne parviens pas à monter mon lecteur NTFS sur la dernière version stable buntu Server 14.04:

$ Sudo mount /dev/sdc /media/wd3TbHdd -t ntfs
NTFS signature is missing.
Failed to mount '/dev/sdc': Invalid argument
The device '/dev/sdc' 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?

Voici ma sortie fdisk (modifiée pour supprimer les informations non /dev/sdc):

$ fdisk -l

...

WARNING: GPT (GUID Partition Table) detected on '/dev/sdc'! The util fdisk doesn't support GPT. Use GNU Parted.


Disk /dev/sdc: 3000.6 GB, 3000592982016 bytes
256 heads, 63 sectors/track, 363376 cylinders, total 5860533168 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 4096 bytes
I/O size (minimum/optimal): 4096 bytes / 4096 bytes
Disk identifier: 0x00000000

   Device Boot      Start         End      Blocks   Id  System
/dev/sdc1               1  4294967295  2147483647+  ee  GPT
Partition 1 does not start on physical sector boundary.

 ...

J'ai 4 disques durs attachés et l'un d'entre eux est un NTFS qui fonctionne bien sur ma machine Windows mais pas ici sur mon serveur Ubunt

5
jonney

Vous essayez de monter le lecteur entier disque dur au lieu de partition. Essayez de monter /dev/sdc1 au lieu de /dev/sdc.

7
user3901453

Je faisais face au même problème mais peut-être pire.

Disk /dev/sdd: 2000.4 GB, 2000398934016 bytes
255 heads, 63 sectors/track, 243201 cylinders, total 3907029168 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 4096 bytes
I/O size (minimum/optimal): 4096 bytes / 4096 bytes
Disk identifier: 0x2052474d

This doesn't look like a partition table
Probably you selected the wrong device.

Device Boot      Start         End      Blocks   Id  System
/dev/sdd1   ?     6579571  1924427647   958924038+  70  DiskSecure Multi-Boot
Partition 1 does not start on physical sector boundary.
/dev/sdd2   ?  1953251627  3771827541   909287957+  43  Unknown
Partition 2 does not start on physical sector boundary.
/dev/sdd3   ?   225735265   225735274           5   72  Unknown
Partition 3 does not start on physical sector boundary.
/dev/sdd4      2642411520  2642463409       25945    0  Empty

Partition table entries are not in disk order
Note: sector size is 2048 (not 512)

Mais j'ai fait la commande mentionnée ci-dessus avec un léger mod, à partir de ceci:

Sudo mount /dev/sdc /media/wd3TbHdd -t ntfs

Pour ça:

créez un répertoire où vous voulez monter le disque dur: mkdir /media/tmp/

alors Sudo mount /dev/sdX /media/tmp -t ntfs

1
remyx

Avait le même problème avec le système de fichiers NTFS et le montage fonctionnait comme un système de fichiers fat.

mkdir ~/bkpup
Sudo mount -t vfat /dev/sdb1 ~/bkpup/
0
TilakVarisetty