Erro ao montar o sistema de arquivos do Windows

0

Quando eu estava tentando montar meu disco rígido do Windows, recebi este erro:

Error mounting /dev/sda1 at /media/ubuntu/System: Command-line 'mount -t "ntfs" -o "uhelper=udisks2,nodev,nosuid,uid=999,gid=999,dmask=0077,fmask=0177" "/dev/sda1" "/media/ubuntu/System"' exited with non-zero exit status 13: Corrupted file $UpCase  
Failed to mount '/dev/sda1': 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.
(udisks-error-quark, 0)

O que devo fazer?

    
por mourad 24.07.2015 / 04:39

2 respostas

1

Executar:

 sudo ntfsfix /dev/sd(the location of the Windows filesystem)

Por exemplo, se a partição for /dev/sdb1 , isso é o que você digitaria no comando. Você pode encontrar a partição com lsblk ou sudo fdisk -l

    
por bio 07.03.2017 / 21:40
0

Você deve ler (cuidadosamente) a mensagem de erro:

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.  

Ele mostra algumas coisas que você pode tentar:

run chkdsk /f on Windows then reboot into Windows twice  

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
    
por waltinator 26.07.2015 / 17:17