The Funtoo Linux project has transitioned to "Hobby Mode" and this wiki is now read-only.
Difference between revisions of "Install/GPT Partitioning/es"
Line 62: | Line 62: | ||
The partition table will now be written to the disk and {{c|gdisk}} will close. | The partition table will now be written to the disk and {{c|gdisk}} will close. | ||
Ahora, sus particiones GPT/GUID han sido creadas | Ahora, sus particiones GPT/GUID han sido creadas y se mostrarán como los siguientes ''dispositivos de bloque'' bajo Linux: | ||
* {{c|/dev/sda1}}, which will be used to hold the {{c|/boot}} filesystem, | * {{c|/dev/sda1}}, which will be used to hold the {{c|/boot}} filesystem, |
Revision as of 04:23, March 7, 2020
Guía de instalación : Particionado GPT
Install Guide, Chapter 4 | < Prev | Next > |
Método UEFI/GPT
Utilice este método si está interesado en iniciar con UEFI, y si el menú de inicio de "System Rescue CD" fue de color blanco y negro. Si era azul claro, este método no funcionará. En su lugar, use las instrucciones de la sección anterior y sáltese este paso, o reinicie "System Rescue CD" en modo UEFI primero.
Los comandos de gdisk
para crear una tabla de particiones GPT son los siguientes. Adapte los tamaños según sea necesario, aunque estos valores predeterminados funcionarán para la mayoría de los usuarios. Inicie gdisk
:
root # gdisk /dev/sdX
Dentro de fdisk
, siga estos pasos:
Create a new empty partition table (This will erase all data on the disk when saved):
Command: o ↵ This option deletes all partitions and creates a new protective MBR. Proceed? (Y/N): y ↵
Create Partition 1 (boot):
Command: n ↵ Partition Number: 1 ↵ First sector: ↵ Last sector: +500M ↵ Hex Code: EF00 ↵
Crear la Partición 2 (swap):
Command: n ↵ Partition Number: 2 ↵ First sector: ↵ Last sector: +4G ↵ Hex Code: 8200 ↵
Crear la Partición 3 (root):
Command: n ↵ Partition Number: 3 ↵ First sector: ↵ Last sector: ↵ (for rest of disk) Hex Code: ↵
Durante este proceso puede teclear "p
" y presionar Enter para visualizar la tabla de particiones actual. Si comete algún error, puede teclear "d
" para borrar una partición existente que fue creada previamente. Cuando esté satisfecho con las particiones creadas teclee "w
" para grabar la configuración en el disco:
Escribir la Tabla de Particiones en el Disco:
Command: w ↵ Do you want to proceed? (Y/N): Y ↵
The partition table will now be written to the disk and gdisk
will close.
Ahora, sus particiones GPT/GUID han sido creadas y se mostrarán como los siguientes dispositivos de bloque bajo Linux:
/dev/sda1
, which will be used to hold the/boot
filesystem,/dev/sda2
, which will be used for swap space, and/dev/sda3
, which will hold your root filesystem.
Puede verificar que los dispositivos de bloque anteriores se crearon correctamente ejecutando el comando lsblk
.
Install Guide, Chapter 4 | < Prev | Next > |