Difference between revisions of "Install/Mounting Filesystems"

From Funtoo
Jump to navigation Jump to search
(/dev/funtooized)
m (Reverted edits by Pnoecker (talk) to last revision by Andrzej.obremski)
Tag: Rollback
Line 14: Line 14:
{{console|body=
{{console|body=
###i## mkdir /mnt/funtoo
###i## mkdir /mnt/funtoo
###i## mount /dev/funtoo3 /mnt/funtoo
###i## mount /dev/sda3 /mnt/funtoo
###i## mkdir /mnt/funtoo/boot
###i## mkdir /mnt/funtoo/boot
###i## mount /dev/funtoo1 /mnt/funtoo/boot
###i## mount /dev/sda1 /mnt/funtoo/boot
}}
}}


Line 25: Line 25:
{{console|body=
{{console|body=
###i## mkdir /mnt/funtoo/var
###i## mkdir /mnt/funtoo/var
###i## mount /dev/sdX1 /mnt/funtoo/var
###i## mount /dev/sdb1 /mnt/funtoo/var
}}
}}
</translate>
</translate>
<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 04:40, December 12, 2020

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

Install Guide: Mounting Filesystems

Install Guide, Chapter 6 < Prev Next >

Mount the newly-created filesystems as follows, creating /mnt/funtoo as the installation mount point:

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 >