Difference between revisions of "Install/Creating Filesystems"

From Funtoo
Jump to navigation Jump to search
m (note that the filesystem labels are LABEL= /etc/fstab statements.)
(/dev/funtooized)
Line 9: Line 9:


<!--T:15-->
<!--T:15-->
{{Note|This section covers both BIOS ''and'' UEFI installs. Don't skip it!}}
{{Note|This section covers both legacy BIOS ''and'' UEFI installs. Don't skip it!}}


<!--T:3-->
<!--T:3-->
Line 15: Line 15:


<!--T:4-->
<!--T:4-->
Let's keep this simple. Are you using legacy MBR partitions? If so, let's create an ext2 filesystem on {{f|/dev/sda1}}:
Are you using legacy only MBR partitions? If so, let's create an ext2 filesystem on {{f|/dev/funtoo1}}:


<!--T:5-->
<!--T:5-->
{{console|body=###i## mkfs.ext2 /dev/sda1
{{console|body=###i## mkfs.ext2 /dev/funtoo1
###i## e2label /dev/sda1 "BOOT"}}
###i## e2label /dev/funtoo1 "BOOT"}}


<!--T:6-->
<!--T:6-->
If you're using GPT partitions for UEFI, or installing for Raspberry Pi, you'll want to create a vfat filesystem on your first partition. This will be {{c|mmcblk0p1}} in the case of Raspberry Pi:
If you're using GPT partitions for UEFI, or installing for Raspberry Pi, you'll want to create a vfat filesystem on your first partition. This will be {{c|funtoo1}} in the case of Raspberry Pi:


<!--T:7-->
<!--T:7-->
{{console|body=###i## mkfs.vfat -F 32 /dev/sda1
{{console|body=###i## mkfs.vfat -F 32 /dev/funtoo1
###i## fatlabel /dev/sda1 "BOOT"}}
###i## fatlabel /dev/funtoo1 "BOOT"}}


<!--T:8-->
<!--T:8-->
Line 36: Line 36:
<!--T:10-->
<!--T:10-->
{{console|body=
{{console|body=
# ##i##mkswap /dev/sda2
# ##i##mkswap /dev/funtoo2
# ##i##swaplabel -L "SWAP" /dev/sda2
# ##i##swaplabel -L "SWAP" /dev/funtoo2
# ##i##swapon /dev/sda2
# ##i##swapon /dev/funtoo2
}}
}}


Line 66: Line 66:


<!--T:11-->
<!--T:11-->
{{console|body=###i## mkfs.ext4 /dev/sda3
{{console|body=###i## mkfs.ext4 /dev/funtoo3
###i## e2label /dev/sda3 "FUNTOO"}}
###i## e2label /dev/funtoo3 "FUNTOO"}}


<!--T:12-->
<!--T:12-->
Line 73: Line 73:


<!--T:13-->
<!--T:13-->
{{console|body=###i## mkfs.xfs /dev/sda3
{{console|body=###i## mkfs.xfs /dev/funtoo3
###i## xfs_admin -L "FUNTOO" /dev/sda3}}
###i## xfs_admin -L "FUNTOO" /dev/funtoo3}}


<!--T:14-->
<!--T:14-->
Line 85: Line 85:


<!--T:23-->
<!--T:23-->
You may want to create additional filesystems for various parts of your Funtoo filesystem tree. It is not uncommon to place {{c|/home}} or {{c|/var}} on separate filesystems.
You may want to create additional partitions for various parts of your Funtoo filesystem tree. It is not uncommon to place {{c|/home}} or {{c|/var}} on separate rotating disks as seen on /dev/sda1 in the drive targeting example.


<!--T:24-->
<!--T:24-->

Revision as of 10:31, December 7, 2020

Other languages:

Install Guide: Creating Filesystems

Install Guide, Chapter 5 < Prev Next >
   Note

This section covers both legacy BIOS and UEFI installs. Don't skip it!

Before your newly-created partitions can be used, the block devices that were created in the previous step need to be initialized with filesystem metadata. This process is known as creating a filesystem on the block devices. After filesystems are created on the block devices, they can be mounted and used to store files. We are labeling our filesystems for LABEL= /etc/fstab statements.

Are you using legacy only MBR partitions? If so, let's create an ext2 filesystem on /dev/funtoo1:

root # mkfs.ext2 /dev/funtoo1
root # e2label /dev/funtoo1 "BOOT"

If you're using GPT partitions for UEFI, or installing for Raspberry Pi, you'll want to create a vfat filesystem on your first partition. This will be funtoo1 in the case of Raspberry Pi:

root # mkfs.vfat -F 32 /dev/funtoo1
root # fatlabel /dev/funtoo1 "BOOT"

Now, let's create a swap partition. This partition will be used as disk-based virtual memory for your Funtoo Linux system.

You will not create a filesystem on your swap partition, since it is not used to store files. But it is necessary to initialize it using the mkswap command. Then we'll run the swapon command to make your newly-initialized swap space immediately active within the live CD environment, in case it is needed during the rest of the install process:

root # mkswap /dev/funtoo2
root # swaplabel -L "SWAP" /dev/funtoo2
root # swapon /dev/funtoo2

Root Filesystem

Now, we need to create a root filesystem. This is where Funtoo Linux will live. We generally recommend ext4 or XFS root filesystems. Keep in mind that some filesystems will require additional filesystem tools to be emerged prior to rebooting. Please consult the following table for more information:

FilesystemRecommended as root file system?Additional tools required to emerge
ext4YesNone
XFSYessys-fs/xfsprogs
reiserfsYes -- will likely need to enable kernel supportsys-fs/reiserfsprogs
zfsNo - advanced users onlysys-fs/zfs
btrfsNo - advanced users onlysys-fs/btrfs-progs
   Important

We do not recommend users set up ZFS or BTRFS as their root filesystem. This is much more complex and usually not necessary. Instead, choose XFS or ext4. We do support ZFS or BTRFS as non-root filesystems and this is much, much easier to configure. See ZFS and BTRFS after you are done setting up your Funtoo Linux system to configure ZFS or BTRFS for additional secondary storage.

If you're not sure, choose ext4. Here's how to create a root ext4 filesystem:

root # mkfs.ext4 /dev/funtoo3
root # e2label /dev/funtoo3 "FUNTOO"

...and here's how to create an XFS root filesystem, if you prefer to use XFS instead of ext4:

root # mkfs.xfs /dev/funtoo3
root # xfs_admin -L "FUNTOO" /dev/funtoo3

Your filesystems (and swap) have all now been initialized, so that that can be mounted (attached to your existing directory heirarchy) and used to store files. We are ready to begin installing Funtoo Linux on these brand-new filesystems.

Additional Filesystems

   Note

This can be very useful for Raspberry Pi systems!

You may want to create additional partitions for various parts of your Funtoo filesystem tree. It is not uncommon to place /home or /var on separate rotating disks as seen on /dev/sda1 in the drive targeting example.

For Raspberry Pi, you may not have a lot of spare room on the card depending on the capacity of your microSD card, and it may make a lot of sense to put the entire /var filesystem on an external hard drive or solid state disk. This will not only ensure you don't run out of disk space, but can also improve performance since writes to the microSD card typically aren't that fast.

To do this, you will want to use fdisk or gdisk to create a partition on your external drive, and then use the mkfs.xfs or mkfs.ext4 commands to create a filesystem on the new partition. We will mount this new filesystem in the next step prior to extracting the stage3 tarball.

Install Guide, Chapter 5 < Prev Next >