ubuntu 16.04 'não é possível montar o local'

0

Eu instalei recentemente o ubuntu 16.04 . Antes da instalação, fiz um backup dos meus dados (o sistema anterior era ubuntu 14.04 ). Após a instalação, eu queria copiar meus arquivos, mas não consigo acessá-los. O disco não aparece nos arquivos (na barra esquerda) em unity . Sob mate eu posso ver isso, mas se eu tentar abri-lo, há mensagem unable to mount location .

sudo fdisk -l output é:

Disk /dev/sda: 298,1 GiB, 320072933376 bytes, 625142448 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
Disklabel type: dos
Disk identifier: 0x924cef05

Device     Boot     Start       End   Sectors   Size Id Type
/dev/sda1  *         2048 617050111 617048064 294,2G 83 Linux
/dev/sda2       617052158 625141759   8089602   3,9G  5 Extended
/dev/sda5       617052160 625141759   8089600   3,9G 82 Linux swap / Solaris

Partition 2 does not start on physical sector boundary.


Disk /dev/sdb: 298,1 GiB, 320072933376 bytes, 625142448 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disklabel type: dos
Disk identifier: 0x000e1e9b

Device     Boot Start       End   Sectors   Size Id Type
/dev/sdb1        2048 625141759 625139712 298,1G 83 Linux
maria@maria-Vostro-3360:/media$ sudo mount -t ntfs /dev/sdb1 /media/external

Eu criei o ponto de montagem em /media chamado external

Eu corri sudo mount /dev/sdb1 /media/external

A saída é:

 mount: wrong fs type, bad option, bad superblock on /dev/sdb1,
        missing codepage or helper program, or other error

      In some cases useful info is found in syslog - try
      dmesg | tail or so.

Eu tentei mount -t ext4 /dev/sdb1 /media/external

Saída:

mount: special device /dev/sdb1 does not exist
maria@maria-Vostro-3360:/media$ 

Existe outra maneira que eu deveria tentar acessar os dados?

UPDATE

Eu estava tentando ver o disco no GParted. Isso mostra unknown file system e, abaixo dos detalhes, segue:

Issosignificaquemeudiscofoiquebradoderepente?

ATUALIZAÇÃO3

Disk/dev/sdb-320GB/298GiB-CHS3891325563PartitionStartEndSizeinsectorsDLinux0323338913705625139712DLinux12151704438913705605612032DLinux14901001938913705601198592DLinux1961111828250152395686822912

UPDATE

Comoparecequeoproblemanãoéosistemadearquivos,masosistemadearquivosdanificado,eufizumanovaperguntasobrearecuperaçãodedados: Recuperação de dados - sistema de arquivos danificado .

    
por maria 22.10.2016 / 14:50

1 resposta

1

Você tem dois problemas.

Problema # 1

No seu disco rígido / dev / sda, a partição sda2 / sda5 não está alinhada corretamente. Esta é uma correção relativamente fácil, porque é a sua partição swap.

1. In gparted, you can select sda5 and issue a swapoff command
2. then delete sda5, then delete sda2
3. then recreate a fresh primary (not extended) swap partition, select the new partition, and issue a swapon command.
4. in terminal, type 'sudo blkid' and note the UUID of the new swap partition.
5. still in terminal, edit your '/etc/fstab' with 'gksudo gedit /etc/fstab' and find the line that contains the word "swap", and change the UUID to the new UUID. Save the file and quit gedit.
6. reboot the system, and in terminal, issue a 'swapon' command to confirm that your new swap partition is working properly.

Problema # 2

Você precisa recuperar sua partição sdb1, alterando-a de desconhecida para EXT4. É melhor usar o testdisk.

1. in terminal, type 'sudo apt-get update'
2. in terminal, type 'sudo apt-get install testdisk'
3. in terminal, type 'sudo testdisk'

Você pode aprender mais sobre a recuperação da partição testdisk visitando o link .

    
por heynnema 22.10.2016 / 16:05