Note
The Funtoo Linux project has transitioned to "Hobby Mode" and this wiki is now read-only.
Difference between revisions of "Install/Mounting Filesystems/es"
< Install
Jump to navigation
Jump to search
Line 22: | Line 22: | ||
###i## mount /dev/sda3 /mnt/funtoo | ###i## mount /dev/sda3 /mnt/funtoo | ||
###i## mkdir /mnt/funtoo/boot | ###i## mkdir /mnt/funtoo/boot | ||
###i## mkdir /mnt/funtoo/boot/efi | ###i## mkdir /mnt/funtoo/boot/efi | ||
###i## mount /dev/sda1 /mnt/funtoo/boot/efi | ###i## mount /dev/sda1 /mnt/funtoo/boot/efi |
Revision as of 21:48, August 19, 2022
Guía de instalación: Montar el sistema de archivos
Install Guide, Chapter 6 | < Prev | Next > |
Monte los sistemas de archivos recién creados de la siguiente manera, primero cree /mnt/funtoo
como el punto de montaje de la instalación:
BIOS/MBR
root # mkdir /mnt/funtoo root # mount /dev/sda3 /mnt/funtoo root # mkdir /mnt/funtoo/boot root # mount /dev/sda1 /mnt/funtoo/boot
UEFI/GPT
root # mkdir /mnt/funtoo root # mount /dev/sda3 /mnt/funtoo root # mkdir /mnt/funtoo/boot root # mkdir /mnt/funtoo/boot/efi root # mount /dev/sda1 /mnt/funtoo/boot/efi
Si tiene sistemas de archivos adicionales (como /home
o /var
), debería montarlos ahora, de esta manera cuando se descomprima el stage3 (cosa que haremos en un paso próximo) éste poblará a estos sistemas de archivos con los archivos necesarios. Esto puede hacerse de la siguiente manera:
root # mkdir /mnt/funtoo/var root # mount /dev/sdb1 /mnt/funtoo/var
Install Guide, Chapter 6 | < Prev | Next > |