Linux - [solucionado] Use GUID partition table format (GPT)

 
Vista:
Imágen de perfil de info
Val: 4
Ha aumentado su posición en 11 puestos en Linux (en relación al último mes)
Gráfica de Linux

[solucionado] Use GUID partition table format (GPT)

Publicado por info (2 intervenciones) el 13/09/2018 20:32:13
Hoy al intentar formatear un disco de 3TB en un sistema UEFI me he encontrado con el siguiente error al utilizar el comando fdisk:

The size of this disk is 2.7 TiB (3000592982016 bytes). DOS partition table format can not be used on drives for volumes larger than 2199023255040 bytes for 512-byte sectors. Use GUID partition table format (GPT).

Dejo aquí la solución a modo de chuleta...

Instalamos el paquete parded:
1
apt-get install parted

Creamos el disco gpt y creamos la partición utilizando todo el disco duro.
1
2
3
4
5
6
7
8
9
10
11
12
13
parted /dev/sdb
mklabel gpt
mkpart
    Partition name?  []?
    File system type?  [ext2]? ext4
    Start? 0%
    End? 100%
set 1 raid on
align-check
    alignment type(min/opt)  [optimal]/minimal? optimal
    Partition number? 1
    1 aligned
quit
Valora esta pregunta
Me gusta: Está pregunta es útil y esta claraNo me gusta: Está pregunta no esta clara o no es útil
0
Responder