Difference between revisions of "Install/Mounting Filesystems"

From Funtoo
Jump to navigation Jump to search
(Marked this version for translation)
 
(4 intermediate revisions by 3 users not shown)
Line 13: Line 13:
<!--T:3-->
<!--T:3-->
{{console|body=
{{console|body=
###i## mkdir /mnt/funtoo
###i## mkdir -p /mnt/funtoo
###i## mount /dev/sda3 /mnt/funtoo
###i## mount /dev/sda3 /mnt/funtoo
###i## mkdir /mnt/funtoo/boot
###i## mkdir /mnt/funtoo/boot
Line 20: Line 20:


<!--T:6-->
<!--T:6-->
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:


<!--T:4-->
<!--T:4-->

Latest revision as of 19:31, December 4, 2022

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 -p /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 >