The Funtoo Linux project has transitioned to "Hobby Mode" and this wiki is now read-only.
Difference between revisions of "Install/GPT Partitioning/es"
Johnnygarb (talk | contribs) (Created page with "{{Note|Utilice este método si está interesado en iniciar con UEFI, y si el menú de inicio de "System Rescue CD" fue blanco y negro. Si era azul claro, este método no funci...") |
Johnnygarb (talk | contribs) (Created page with "Los comandos de {{c|gdisk}} para crear una tabla de particiones GPT son los siguientes. Adapte los tamaños según sea necesario, aunque estos valores predeterminados funcion...") |
||
Line 10: | Line 10: | ||
{{Note|Utilice este método si está interesado en iniciar con UEFI, y si el menú de inicio de "System Rescue CD" fue blanco y negro. Si era azul claro, este método no funcionará. En su lugar, use las instrucciones de la sección anterior o reinicie "System Rescue CD" en modo UEFI primero.}} | {{Note|Utilice este método si está interesado en iniciar con UEFI, y si el menú de inicio de "System Rescue CD" fue blanco y negro. Si era azul claro, este método no funcionará. En su lugar, use las instrucciones de la sección anterior o reinicie "System Rescue CD" en modo UEFI primero.}} | ||
Los comandos de {{c|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 {{c|gdisk}}: | |||
{{console|body=###i## gdisk /dev/sda}} | {{console|body=###i## gdisk /dev/sda}} |
Revision as of 19:46, October 11, 2018
Guia de instalacion : Particionado GPT
Install Guide, Chapter 4 | < Prev | Next > |
Metodo UEFI/GPT
Utilice este método si está interesado en iniciar con UEFI, y si el menú de inicio de "System Rescue CD" fue blanco y negro. Si era azul claro, este método no funcionará. En su lugar, use las instrucciones de la sección anterior 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/sda
Within gdisk
, follow these steps:
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 ↵
Create Partition 2 (swap):
Command: n ↵ Partition Number: 2 ↵ First sector: ↵ Last sector: +4G ↵ Hex Code: 8200 ↵
Create Partition 3 (root):
Command: n ↵ Partition Number: 3 ↵ First sector: ↵ Last sector: ↵ (for rest of disk) Hex Code: ↵
Along the way, you can type "p
" and hit Enter to view your current partition table. If you make a mistake, you can type "d
" to delete an existing partition that you created. When you are satisfied with your partition setup, type "w
" to write your configuration to disk:
Write Partition Table To Disk:
Command: w ↵ Do you want to proceed? (Y/N): Y ↵
The partition table will now be written to the disk and gdisk
will close.
Now, your GPT/GUID partitions have been created, and will show up as the following block devices under 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.
You can verify that the block devices above were correctly created by running the command lsblk
.