web-dev-qa-db-fra.com

Impossible de monter une erreur USB

J'essaye de monter l'USB sur 14.04 LTS (d'habitude très bien), obtenant l'erreur

Error mounting /dev/sdb1 at /media/username/383255103254D48A: Command-line `mount -t "ntfs" -o "uhelper=udisks2,nodev,nosuid,uid=1000,gid=1000,dmask=0077,fmask=0177" "/dev/sdb1" "/media/shan/383255103254D48A"' exited with non-zero exit status 13: $MFTMirr does not match $MFT (record 0).
Failed to mount '/dev/sdb1': Input/output error
NTFS is either inconsistent, or there is a hardware fault, or it's a SoftRAID/FakeRAID hardware. In the first case run chkdsk /f on Windows then reboot into Windows twice. The usage of the /f parameter is very important! If the device is a SoftRAID/FakeRAID then first activate it and mount a different device under the /dev/mapper/ directory, (e.g. /dev/mapper/nvidia_eahaabcc1). Please see the 'dmraid' documentation for more details.

Ensuite, je lance la commande Sudo blkid puis résultats

/dev/sda1: LABEL="System Reserved" UUID="54FEB6FCFEB6D608" TYPE="ntfs" 
/dev/sda2: UUID="081CC4AF1CC498D8" TYPE="ntfs" 
/dev/sda4: LABEL="New Volume" UUID="1E30CEAB30CE896B" TYPE="ntfs" 
/dev/sda5: UUID="917680eb-96c8-4a8e-bf77-fde42322ea6a" TYPE="swap" 
/dev/sda6: UUID="513e2c74-d8e0-4d89-a547-cf984f1edc3d" TYPE="ext4" 
/dev/sdb1: UUID="383255103254D48A" TYPE="ntfs" 

Comment puis-je résoudre ce problème?

4
ubm

Eh bien, soit votre clé USB est morte, soit le système de fichiers doit être réparé.

Vous pouvez essayer de le réparer sous Linux avec:

Sudo ntfsfix /dev/sdb1

Et si cela ne fonctionne pas, vous devrez exécuter chkdsk à partir de Windows.

5
Android Dev