Note:
The Funtoo Linux project has transitioned to "Hobby Mode" and this wiki is now read-only.
Difference between revisions of "Install/Mounting Filesystems/en"
< Install
Jump to navigation
Jump to search
(Updating to match new version of source page) |
(Updating to match new version of source page) |
||
Line 15: | Line 15: | ||
}} | }} | ||
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: | ||
{{console|body= | {{console|body= |
Latest revision as of 18:27, September 9, 2020
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 > |