The Funtoo Linux project has transitioned to "Hobby Mode" and this wiki is now read-only.
Difference between revisions of "Install/Prepare Disk/es"
(Updating to match new version of source page) |
(Updating to match new version of source page) |
||
Line 23: | Line 23: | ||
<div lang="en" dir="ltr" class="mw-content-ltr"> | <div lang="en" dir="ltr" class="mw-content-ltr"> | ||
MBR is the traditional way of booting a PC. It works by installing executable code on the boot sector of your hard drive, which starts the boot process. | MBR is the traditional way of booting a PC. It works by installing executable code on the boot sector of your hard drive, which starts the boot process. When you use MBR to boot, you must have BIOS booting enabled in your BIOS, use traditional MBR partitions on your disk which are created using the {{c|fdisk}} tool. | ||
</div> | </div> | ||
<div lang="en" dir="ltr" class="mw-content-ltr"> | <div lang="en" dir="ltr" class="mw-content-ltr"> | ||
UEFI is the more modern way to boot a PC. It works using a boot loader that is built into your computer. Boot entries are created and stored in your computer's non-volatile memory. | UEFI is the more modern way to boot a PC. It works using a boot loader that is built into your computer. Boot entries are created and stored in your computer's non-volatile memory. When you use UEFI to boot, you must have UEFI enabled in your BIOS, and use more modern GPT partitions which are created using the {{c|gdisk}} tool. | ||
</div> | </div> | ||
Latest revision as of 16:32, March 21, 2024
Guía de Instalación: Prepare el disco
Install Guide, Chapter 2 | < Prev | Next > |
En esta sección, deberá elegir un formato de disco para usar para arrancar y particionar, ya sea MBR o UEFI/GPT. Si no está familiarizado con las diferencias entre estas opciones, consulte nuestra página Formatos de disco para obtener una descripción general de cada opción y las ventajas y desventajas. En general, es seguro elegir el método MBR heredado para discos de sistema de menos de 2 TB de tamaño y la mayoría de los sistemas de PC modernos admiten MBR y arranque UEFI.
Si no se realizó anteriormente, para cargar la distribución de teclado escribir:
Español españa:
root # loadkeys es
Español latinoamericano:
root # loadkeys la-latin1
MBR is the traditional way of booting a PC. It works by installing executable code on the boot sector of your hard drive, which starts the boot process. When you use MBR to boot, you must have BIOS booting enabled in your BIOS, use traditional MBR partitions on your disk which are created using the fdisk
tool.
UEFI is the more modern way to boot a PC. It works using a boot loader that is built into your computer. Boot entries are created and stored in your computer's non-volatile memory. When you use UEFI to boot, you must have UEFI enabled in your BIOS, and use more modern GPT partitions which are created using the gdisk
tool.
Generally, it's usually safe to pick the legacy MBR method for system disks under 2TB in size and most modern PC systems support MBR as well as UEFI booting.
For more information on differences between MBR and UEFI, see our Disk Formats page for an overview of each option and the trade-offs.
Pero Primero...
Antes de hacer cualquier cosa a sus discos, asegúrese de estar particionando el disco correcto. Use el comando lsblk
para ver una lista de todos los dispositivos de bloque en su sistema, así como las particiones en estos dispositivos de bloque:
root # lsblk NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINT sda 8:0 0 1.8T 0 disk ├─sda1 8:1 0 512M 0 part ├─sda2 8:2 0 8G 0 part [SWAP] └─sda3 8:3 0 1.8T 0 part ├─main-root 254:0 0 500G 0 lvm / └─main-data 254:1 0 1.3T 0 lvm /home
Si no está seguro de qué discos son cuáles, puede usar lsblk -o MODEL,NAME,SIZE
para mostrar los modelos de dispositivos que coinciden con los nombres /dev/sd?
.
Asegúrese de no sobrescribir ningún dato importante y de haber elegido el dispositivo /dev/sd?
correcto.
Arriba, puede ver que el disco SATA sda
contiene tres particiones, sda1
, sda2
y sda3
, y que sda3
contiene volúmenes LVM.
Si está utilizando un disco NVME, entonces puede ver nvme0n1
como su disco, y sus particiones (si aún existen) se llamarán nvme0n1p1
, nvme0n1p2
, etc.
Si está instalando en una tarjeta microSD para Raspberry Pi, su disco probablemente será mmcblk0
y las particiones tendrán sufijos p1
, p2
, etc.
Una vez que haya verificado dos veces su dispositivo de bloque de destino y se haya asegurado de particionar el disco correcto, continúe con el siguiente paso.
Install Guide, Chapter 2 | < Prev | Next > |