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 19: | Line 19: | ||
{{console|body= | {{console|body= | ||
###i## mkdir /mnt/funtoo/var | ###i## mkdir /mnt/funtoo/var | ||
###i## mount /dev/ | ###i## mount /dev/sdb1 /mnt/funtoo/var | ||
}} | }} | ||
<noinclude>{{InstallNavigation|num=6|prev=Creating Filesystems|next=Setting the Date|align=right}}</noinclude> | <noinclude>{{InstallNavigation|num=6|prev=Creating Filesystems|next=Setting the Date|align=right}}</noinclude> |
Revision as of 01:58, August 18, 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:
root # mkdir /mnt/funtoo root # mount /dev/sda3 /mnt/funtoo root # mkdir /mnt/funtoo/boot root # mount /dev/sda1 /mnt/funtoo/boot
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 > |