Ubuntu 15.10 não me deixa abrir uma unidade NTFS

1

Hey alguém pode me ajudar? Me desculpe se essa pergunta foi feita antes, mas estou tentando abrir um Volume de 640GB do Launcher e recebo este erro:

Error mounting /dev/sdb2 at /media/ubuntu/98C83D3AC83D1848: Command-line 'mount -t "ntfs" -o "uhelper=udisks2,nodev,nosuid,uid=1000,gid=1000" "/dev/sdb2" "/media/ubuntu/98C83D3AC83D1848"' exited with non-zero exit status 12: Failed to read last sector (1250256894): Invalid argument
HINTS: Either the volume is a RAID/LDM but it wasn't setup yet,
   or it was not setup correctly (e.g. by not using mdadm --build ...),
   or a wrong device is tried to be mounted,
   or the partition table is corrupt (partition is smaller than NTFS),
   or the NTFS boot sector is corrupt (NTFS size is not valid).
Failed to mount '/dev/sdb2': Invalid argument
The device '/dev/sdb2' 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?

Sou muito novo nisso, hoje é meu primeiro dia tentando o Ubuntu como o sistema operacional principal no meu PC (o secundário seria o Windows 7) e gostaria de saber como acessar essa unidade, se possível. Não é a unidade com o sistema operacional Windows 7.

    
por trickpinky 26.10.2015 / 00:41

1 resposta

0

EDITAR :

Visite este link e você encontrará a solução para seus problemas, como já aconteceu com os outros. Você dirige tem um Esquema de Particionamento Dinâmico SFS que é de propriedade e propriedade da Microsoft. Confira o comentário feito pelo usuário "Oldfred" no link, ele virá a calhar! Felicidades!

ORIGINAL

Eu acho que a partição pode estar corrompida, dada a mensagem que mostra, mas não desista ainda. O Ubuntu é um ótimo sistema operacional GNU / Linux, é uma pena que você tenha esse tipo de problema.

Eu tive um problema semelhante: você tentou usar ntfs-3g ou ntfsfix ? ou mount com ntfs-3g opções? A unidade NTFS estava em hibernação? Sofreu um corte de energia?

Parte da página man de ntfsfix é a seguinte:

ntfsfix is a utility that fixes some common NTFS problems.
ntfsfix is NOT a Linux version of chkdsk. It only repairs some
fundamental NTFS inconsistencies, resets the NTFS journal file and
schedules an NTFS consistency check for the first boot into Windows.

You may run ntfsfix on an NTFS volume if you think it was damaged by
Windows or some other way and it cannot be mounted.

Tente isto:

ntfsfix /path/to/ntfsdevice

No seu caso, seria:

ntfsfix /dev/sda2

Onde /dev/sda2 é a partição NTFS com o problema. ntfsfix tem algumas opções úteis como:

ntfsfix -b /dev/sda2

As opções -b fazem o seguinte: Clear the list of bad sectors. This is useful after cloning an old disk with bad sectors to a new disk.

Ou:

ntfsfix -d /dev/sda2

A opção -d faz o seguinte:

Clear the volume dirty flag if the volume can be fixed and mounted.
If the option is not present or the volume cannot be  fixed the dirty
volume flag is set to request a volume checking at next mount.

Espero que isso ajude. Não hesite em perguntar novamente. Felicidades!

    
por zehnner 26.10.2015 / 03:58