thumbdrive Nuke e definir partição GPT +

1

Depois de usar o thumbdrive de 16 GB USB2.0 como um boot do ESXi, não consigo formatá-lo. O Windows Explorer apenas diria:

The drive could not be formatted (or something likewise)

O Diskpart é capaz de criar uma partição RAW primária, mas também é incapaz de formatá-la.

O GParted no Linux Mint 17.1 também não consegue formatar o stick:

The driver descriptor says the physical block size is 2048 bytes, but Linux says it is 512 bytes.

Também afirma que o bastão tem um tamanho de 59,66GiB.

Existe uma maneira de eliminar completamente o bastão e, em seguida, configurá-lo manualmente novamente?

EDIT: O GParted Live-CD também não conseguiu corrigir este problema

    
por farosch 20.05.2015 / 15:00

2 respostas

0

Consegui corrigir o problema usando o gdisk . Na verdade nenhum outro programa foi capaz de me dizer qual é realmente o problema. É isso:

Found invalid GPT and valid MBR; converting MBR to GPT format in memory. THIS OPERATION IS POTENTIALLY DESTRUCTIVE! Exit by typing 'q' if you don't want to convert your MBR partitions to GPT format!

AND

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

O que eu fiz:

Exclua todas as partições no palito:

Command (? for help): d
Partition number (1-4): 1

Command (? for help): d
Partition number (2-4): 2

Command (? for help): d
Partition number (3-4): 3

Command (? for help): d
Using 4

Criar novo MBR

Command (? for help): o
This option deletes all partitions and creates a new protective MBR.
Proceed? (Y/N): y

Verificar disco

Command (? for help): v
No problems found. 31276989 free sectors (14.9 GiB) available in 1
segments, the largest of which is 31276989 (14.9 GiB) in size.

Escreva no disco

Command (? for help): w
Final checks complete. About to write GPT data. THIS WILL OVERWRITE EXISTING
PARTITIONS!!

Do you want to proceed? (Y/N): y
OK; writing new GUID partition table (GPT) to /dev/sdb.
The operation has completed successfully.

Depois disso, consegui formatar o bastão como de costume.

    
por 20.05.2015 / 15:59
2

Que bom que você respondeu sua própria pergunta. OK, normalmente, a maneira de descobrir um disco é zerar a tabela de partições com dd if=/dev/zero of=<RAW-DEVICE> bs=512 count=1 .

Esse seria o fim da história, mas aparentemente isso pode ser evitado pelo sistema operacional. Via Wikipedia: link

Operating systems and tools which cannot read GPT disks will generally recognize the disk as containing one partition of unknown type and no empty space, and will typically refuse to modify the disk unless the user explicitly requests and confirms the deletion of this partition.

Isso explica suas mensagens de erro e o que aconteceu com você: o GPT está vinculado ao MBR e seu sistema operacional viu um MBR válido, mas um GPT inválido.

    
por 20.05.2015 / 18:20