Tamanhos incorretos de partições (eu acho?)

1

Eu sei o suficiente sobre o Linux para atrapalhar as coisas, então peça desculpas antecipadamente. Eu tentei olhar para alguns dos outros tópicos aqui semelhantes, mas nenhuma das respostas parece ajudar. Eu tenho uma unidade Seagate Central de 4 TB que eu preciso para obter dados, mas não consigo, esperando que você possa ajudar.

Aqui está o que tentei até agora, "corrijo" os comandos que inseri

pc1 @ PC1: / $ sudo parted -l

Model: ATA Hitachi HDS72101 (scsi)
Disk /dev/sda: 1000GB
Sector size (logical/physical): 512B/512B
Partition Table: msdos

Number  Start   End     Size    Type      File system  Flags
 1      1049kB  256MB   255MB   primary   ext2         boot
 2      257MB   1000GB  1000GB  extended
 5      257MB   1000GB  1000GB  logical                lvm


Error: Both the primary and backup GPT tables are corrupt.  Try making a fresh
table, and using Parted's rescue feature to recover partitions.

Model: Linux device-mapper (linear) (dm)
Disk /dev/mapper/ubuntu--vg-swap_1: 4249MB
Sector size (logical/physical): 512B/512B
Partition Table: loop

Number  Start  End     Size    File system     Flags
 1      0.00B  4249MB  4249MB  linux-swap(v1)


Model: Linux device-mapper (linear) (dm)
Disk /dev/mapper/ubuntu--vg-root: 996GB
Sector size (logical/physical): 512B/512B
Partition Table: loop

Number  Start  End    Size   File system  Flags
 1      0.00B  996GB  996GB  ext4

pc1 @ PC1: / $ sudo gdisk / dev / sdb

GPT fdisk (gdisk) version 0.8.8

Caution: invalid backup GPT header, but valid main header; regenerating
backup header from main header.

Caution! After loading partitions, the CRC doesn't check out!
Warning! Main and backup partition tables differ! Use the 'c' and 'e' options
on the recovery & transformation menu to examine the two tables.

Warning! One or more CRCs don't match. You should repair the disk!

Partition table scan:
  MBR: protective
  BSD: not present
  APM: not present
  GPT: damaged

****************************************************************************
Caution: Found protective or hybrid MBR and corrupt GPT. Using GPT, but disk
verification and recovery are STRONGLY recommended.
****************************************************************************

Warning! Secondary partition table overlaps the last partition by
3472328288413643170 blocks!
You will need to delete this partition or resize it in another utility.

Command (? for help): **i**
Partition number (1-128): 8
Partition GUID code: E6D6D379-F507-44C2-A23C-238F2A3DF928 (Linux LVM)
Partition unique GUID: B05189FC-488F-4DED-97F7-0C5E644CF129
First sector: 10569728 (at 5.0 GiB)
Last sector: 7814037134 (at 3.6 TiB)
Partition size: 7803467407 sectors (3.6 TiB)
Attribute flags: 0000000000000000
Partition name: 'Data'

Command (? for help): **v**
Problem: partition 119 is too big for the disk.

Problem: partition 120 is too big for the disk.

Problem: partition 121 is too big for the disk.

Problem: partition 122 is too big for the disk.

Problem: partition 123 is too big for the disk.

Problem: partition 124 is too big for the disk.

Problem: partition 125 is too big for the disk.

Problem: partition 126 is too big for the disk.

Problem: partition 127 is too big for the disk.

Problem: partition 128 is too big for the disk.

Warning! Secondary partition table overlaps the last partition by
3472328288413643170 blocks!
You will need to delete this partition or resize it in another utility.

Identified 4281 problems!

fixparts do sudo / dev / sdb

(parted) check 8

Error: Both the primary and backup GPT tables are corrupt.  Try making a fresh
table, and using Parted's rescue feature to recover partitions.

(parted) **rescue start**                                                     
Error: Both the primary and backup GPT tables are corrupt.  Try making a fresh
table, and using Parted's rescue feature to recover partitions.

Então, isso é o mais longe que posso chegar ... o que é o suficiente para continuar me dizendo o que está errado e o que fazer para consertá-lo, eu simplesmente não sei como fazer isso. na verdade parece que não é tão difícil, mas eu não quero mais mexer com isso neste momento b / c eu não sei o que estou fazendo. Eu verifiquei as informações aqui - > link mas não entendi o suficiente para prosseguir com confiança - SOCORRO! : -)

    
por Kevin S 05.04.2016 / 13:54

1 resposta

0

Vários pontos sobre sua postagem não fazem sentido ou são confusos:

  • Você afirma que tem um disco de 4 TB, mas a saída parted que você postou mostra um disco de 1 TB. Parece que seu disco de 4 TB é /dev/sdb , mas a saída parted é de /dev/sda , sem saída /dev/sdb mostrada para /dev/sda .
  • O comando i em gdisk mostra informações sobre uma partição individual, para que a saída seja irrelevante. O comando v em gdisk verifica a integridade de todo o disco, e essa saída indica inúmeros problemas do tipo que parecem implicar que o programa está trabalhando em "lixo", não em dados reais. Com base nos avisos no início da saída gdisk , eu diria que seus dados da GPT estão tão danificados que são inúteis. Pode até não ser um disco GPT.
  • O que você apresentou como fixparts output parece com parted output.

Como as informações da sua pergunta são muito confusas e incompletas, recomendo que você comece uma nova pergunta que mostre a saída dos programas fdisk e parted em /dev/sdb ( sudo fdisk -l /dev/sdb e sudo parted /dev/sdb print ), desde que eu suspeito que você pode ter um disco MBR com alguns vestígios de GPT que sobraram nele. A inclusão da saída gdisk do programa v pode valer a pena, mas não a saída i . Se eu estiver certo, consertar as estruturas de dados do MBR pode estar em ordem, mas você não apresentou dados que seriam úteis nesta tarefa, e o formato deste site não se presta a uma re-gravação tão importante da sua inicial pergunta.

    
por Rod Smith 09.04.2016 / 16:37