Difference between revisions of "Install/Mounting Filesystems"

From Funtoo
Jump to navigation Jump to search
(Marked this version for translation)
Line 1: Line 1:
<translate>
<translate>
<includeonly>
<includeonly>
== Mounting Filesystems == <!--T:1-->
== Mounting Filesystems == <!--T:1-->
</includeonly><noinclude>
</includeonly><noinclude>
= Install Guide: Mounting Filesystems =
= Install Guide: Mounting Filesystems =
Line 8: Line 8:
{{InstallNavigation|num=6|prev=Creating Filesystems|next=Setting the Date}}</noinclude>
{{InstallNavigation|num=6|prev=Creating Filesystems|next=Setting the Date}}</noinclude>


<!--T:5-->
Mount the newly-created filesystems as follows, creating {{c|/mnt/funtoo}} as the installation mount point:
Mount the newly-created filesystems as follows, creating {{c|/mnt/funtoo}} as the installation mount point:



Revision as of 03:51, September 12, 2018

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

Optionally, if you have a separate filesystem for /home or anything else, you can choose to create these filesystems now. Note that if you are wanting to use ZFS or BTRFS to create general storage for files that do not hold operating system files, then this is best to do later after Funtoo Linux is installed.

root # mkdir /mnt/funtoo/home
root # mount /dev/sda4 /mnt/funtoo/home

If you have /tmp or /var/tmp on a separate filesystem, be sure to change the permissions of the mount point to be globally-writeable after mounting, as follows:

root # chmod 1777 /mnt/funtoo/tmp