Difference between revisions of "Install/Mounting Filesystems/es"

From Funtoo
Jump to navigation Jump to search
Line 17: Line 17:
If you have any additional filesystems you created earlier (such as {{c|/home}} or {{c|/var}}, you should mount them now, so that when the stage3 is extracted (which we will do in a later step) these filesystems will get populated with the necessary files. This can be done as follows:
If you have any additional filesystems you created earlier (such as {{c|/home}} or {{c|/var}}, you should mount them now, so that when the stage3 is extracted (which we will do in a later step) these filesystems will get populated with the necessary files. This can be done as follows:


<div class="mw-translate-fuzzy">
{{console|body=
{{console|body=
###i## mkdir /mnt/funtoo/home
###i## mkdir /mnt/funtoo/var
###i## mount /dev/sda4 /mnt/funtoo/home
###i## mount /dev/sdb1/mnt/funtoo/var
}}
}}
Si tiene {{f|/tmp}} o {{f|/var/tmp}} en un sistema de archivos separado, asegúrese de cambiar los permisos del punto de montaje para que puedan ser grabados globalmente después del montaje, de la siguiente manera
{{console|body=###i## chmod 1777 /mnt/funtoo/tmp}}
</div>
<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 21:11, February 16, 2020

Other languages:
English • ‎español • ‎polski • ‎português do Brasil • ‎русский • ‎中文(中国大陆)‎

Guia de instalación: Montando el sistema de archivos

Install Guide, Chapter 6 < Prev Next >

Monte los sistemas de archivos recién creados de la siguiente manera, creando /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

If you have any additional filesystems you created earlier (such as /home or /var, you should mount them now, so that when the stage3 is extracted (which we will do in a later step) these filesystems will get populated with the necessary files. This can be done as follows:

root # mkdir /mnt/funtoo/var
root # mount /dev/sdb1/mnt/funtoo/var
Install Guide, Chapter 6 < Prev Next >