To be able to install Gentoo, you must create the necessary partitions. This chapter describes how to partition a disk for future usage. 11 2011-10-17
Introduction to Block Devices Partitions

Although it is theoretically possible to use a full disk to house your Linux system, this is almost never done in practice. Instead, full disk block devices are split up in smaller, more manageable block devices. On most systems, these are called partitions.

Designing a Partitioning Scheme Default Partitioning Scheme

If you are not interested in drawing up a partitioning scheme for your system, you can use the partitioning scheme we use throughout this book. Choose the filesystem layout that best matches the type of PowerPC system you are installing on.

Apple New World

Apple New World machines are fairly straightforward to configure. The first partition is always an Apple Partition Map. This partition keeps track of the layout of the disk. You cannot remove this partition. The next partition should always be a bootstrap partition. This partition contains a small (800k) HFS filesystem that holds a copy of the bootloader Yaboot and its configuration file. This partition is not the same as a /boot partition as found on other architectures. After the boot partition, the usual Linux filesystems are placed, according to the scheme below. The swap partition is a temporary storage place for when your system runs out of physical memory. The root partition will contain the filesystem that Gentoo is installed on. If you wish to dual boot, the OSX partition can go anywhere after the bootstrap partition to insure that yaboot starts first.

There may be "Disk Driver" partitions on your disk such as Apple_Driver63, Apple_Driver_ATA, Apple_FWDriver, Apple_Driver_IOKit, and Apple_Patches. These are used to boot MacOS, so if you have no need for this, you can remove them by initializing the disk with mac-fdisk's i option. This will completely erase the disk! If you are in doubt, just let them be. If you partitioned this disk with Apple's Disk Utility, there may be 128Mb spaces between partitions which Apple reserves for "future use". You can safely remove these. /dev/sda132kNoneApple Partition Map/dev/sda2800kHFSApple Bootstrap/dev/sda3512MbSwapLinux Swap/dev/sda4Rest of Diskext3, reiserfs, xfsLinux Root
Partition Size Filesystem Description
Apple Old World

Apple Old World machines are a bit more complicated to configure. The first partition is always an Apple Partition Map. This partition keeps track of the layout of the disk. You cannot remove this partition. If you are using BootX, the configuration below assumes that MacOS is installed on a seperate disk. If this is not the case, there will be additional partitions for "Apple Disk Drivers" such as Apple_Driver63, Apple_Driver_ATA, Apple_FWDriver, Apple_Driver_IOKit, Apple_Patches and the MacOS install. If you are using Quik, you will need to create a boot partition to hold the kernel, unlike other Apple boot methods. After the boot partition, the usual Linux filesystems are placed, according to the scheme below. The swap partition is a temporary storage place for when your system runs out of physical memory. The root partition will contain the filesystem that Gentoo is installed on.

If you are using an OldWorld machine, you will need to keep MacOS available. The layout here assumes MacOS is installed on a separate drive. /dev/sda132kNoneApple Partition Map/dev/sda232Mbext2Quik Boot Partition (quik only)/dev/sda3512MbSwapLinux Swap/dev/sda4Rest of Diskext3, reiserfs, xfsLinux Root
Partition Size Filesystem Description
Pegasos

The Pegasos partition layout is quite simple compared to the Apple layouts. The first partition is a Boot Partition, which contains kernels to be booted, along with an Open Firmware script that presents a menu on boot. After the boot partition, the usual Linux filesystems are placed, according to the scheme below. The swap partition is a temporary storage place for when your system runs out of physical memory. The root partition will contain the filesystem that Gentoo is installed on.

/dev/sda132Mbaffs1 or ext2Boot Partition/dev/sda2512MbSwapLinux Swap/dev/sda3Rest of Diskext3, reiserfs, xfsLinux Root
Partition Size Filesystem Description
IBM PReP (RS/6000)

The IBM PowerPC Reference Platform (PReP) requires a small PReP boot partition on the disk's first partition, followed by the swap and root partitions.

/dev/sda1800kNonePReP Boot Partition (Type 0x41)/dev/sda2512MbSwapLinux Swap (Type 0x82)/dev/sda3Rest of Diskext3, reiserfs, xfsLinux Root (Type 0x83)
Partition Size Filesystem Description
parted is able to resize partitions including HFS+. Unfortunately there may be issues with resizing HFS+ journaled filesystems, so, for the best results, switch off journaling in Mac OS X before resizing. Remember that any resizing operation is dangerous, so attempt at your own risk! Be sure to always have a backup of your data before resizing!

If you are interested in knowing how big a partition should be, or even how many partitions you need, read on. Otherwise continue now with Default: Using mac-fdisk (Apple) to Partition your Disk or Alternative: Using parted (IBM/Pegasos) to Partition your Disk.

How Many and How Big?

The number of partitions is highly dependent on your environment. For instance, if you have lots of users, you will most likely want to have your /home separate as it increases security and makes backups easier. If you are installing Gentoo to perform as a mailserver, your /var should be separate as all received mail is stored in /var. A good choice of filesystem will then maximise your performance. Game servers should have a separate /opt as most game servers are installed there. The reason is similar for /home: security and backups. Whatever layout you chose, you will definitely want to keep /usr large: not only will it contain the majority of applications, the Portage tree alone takes more than 500Mb excluding the various sources that are stored in it.

As you can see, it very much depends on what you want to achieve. Separate partitions or volumes have the following advantages:

  • You can choose the best performing filesystem for each partition or volume
  • Your entire system cannot run out of free space if one defunct tool is continuously writing files to a partition or volume
  • If necessary, file system checks are reduced in time, as multiple checks can be done in parallel (although this advantage is more with multiple disks than it is with multiple partitions)
  • Security can be enhanced by mounting some partitions or volumes read-only, nosuid (setuid bits are ignored), noexec (executable bits are ignored) etc.

However, multiple partitions have disadvantages as well. If not configured properly, you will have a system with lots of free space on one partition and none on another. Another nuisance is that separate partitions - especially for important mountpoints like /usr or /var - often require the administrator to boot with an initramfs to mount the partition before other boot scripts start. This isn't always the case though, so YMMV.

There is also a 15-partition limit for SCSI and SATA.

Default: Using mac-fdisk (Apple) Partition your Disk

At this point, create your partitions using mac-fdisk:

# mac-fdisk /dev/sda

If you used Apple's Disk Utility to leave space for Linux, first delete the partitions you have created previously to make room for your new install. Use d in mac-fdisk to delete those partition(s). It will ask for the partition number to delete. Usually the first partition on NewWorld machines (Apple_partition_map) cannot be deleted. If you would like to start with a clean disk, you can simply initialize the disk by pressing i. This will completely erase the disk, so use this with caution.

Second, create an Apple_Bootstrap partition by using b. It will ask for what block you want to start. Enter the number of your first free partition, followed by a p. For instance this is 2p.

This partition is not a /boot partition. It is not used by Linux at all; you don't have to place any filesystem on it and you should never mount it. Apple users don't need an extra partition for /boot.

Now create a swap partition by pressing c. Again mac-fdisk will ask for what block you want to start this partition from. As we used 2 before to create the Apple_Bootstrap partition, you now have to enter 3p. When you're asked for the size, enter 512M (or whatever size you want -- a minimum of 512MB is recommended, but 2 times your physical memory is the generally accepted size). When asked for a name, enter swap.

To create the root partition, enter c, followed by 4p to select from what block the root partition should start. When asked for the size, enter 4p again. mac-fdisk will interpret this as "Use all available space". When asked for the name, enter root.

To finish up, write the partition to the disk using w and q to quit mac-fdisk.

To make sure everything is ok, you should run mac-fdisk -l and check whether all the partitions are there. If you don't see any of the partitions you created, or the changes you made, you should reinitialize your partitions by pressing i in mac-fdisk. Note that this will recreate the partition map and thus remove all your partitions.

Now that your partitions are created, you can continue with Creating Filesystems.

Using parted to Partition your Disk (Pegasos and RS/6000)

parted, the Partition Editor, can now handle HFS+ partitions used by Mac OS and Mac OS X. With this tool you can resize your Mac partitions and create space for your Linux partitions. Nevertheless, the example below describes partitioning for Pegasos machines only.

To begin let's fire up parted:

# parted /dev/sda

If the drive is unpartitioned, run mklabel amiga to create a new disklabel for the drive.

You can type print at any time in parted to display the current partition table. If at any time you change your mind or made a mistake you can press Ctrl-c to abort parted.

If you intend to also install MorphOS on your Pegasos create an affs1 filesystem at the start of the drive. 32MB should be more than enough to store the MorphOS kernel. If you have a Pegasos I or intend to use any filesystem besides ext2 or ext3, you will also have to store your Linux kernel on this partition (the Pegasos II can only boot from ext2/ext3 or affs1 partitions). To create the partition run mkpart primary affs1 START END where START and END should be replaced with the megabyte range (e.g. 0 32) which creates a 32 MB partition starting at 0MB and ending at 32MB. If you chose to create an ext2 or ext3 partition instead, substitute ext2 or ext3 for affs1 in the mkpart command.

You will need to create two partitions for Linux, one root filesystem and one swap partition. Run mkpart primary START END to create each partition, replacing START and END with the desired megabyte boundries.

It is generally recommended that you create a swap partition that is two times bigger than the amount of RAM in your computer, but at least 512Mb is recommended. To create the swap partition, run mkpart primary linux-swap START END with START and END again denoting the partition boundries.

When you are done in parted simply type quit.

Creating Filesystems Introduction

Now that your partitions are created, it is time to place a filesystem on them. If you're not sure which filesystems to choose and are happy with our defaults, continue with Applying a Filesystem to a Partition. Otherwise, read on to learn about the available filesystems.

Activating the Swap Partition

mkswap is the command that is used to initialize swap partitions:

# mkswap /dev/sda3

To activate the swap partition, use swapon:

# swapon /dev/sda3

Create and activate the swap now before creating other filesystems.

Applying a Filesystem to a Partition

To create a filesystem on a partition or volume, there are tools available for each possible filesystem:

ext2mke2fsext3mke2fs -jreiserfsmkreiserfsxfsmkfs.xfs
Filesystem Creation Command

For instance, to make an ext3 filesystem on the root partition (/dev/sda4 in our example), you would use:

# mke2fs -j /dev/sda4

Now create the filesystems on your newly created partitions (or logical volumes).

If you choose to use ReiserFS for /, do not change its default block size if you will also be using yaboot as your bootloader, as explained in Configuring the Bootloader. On the PegasosII your partition which holds the kernel must be ext2, ext3 or affs1. NewWorld machines can boot from any of ext2, ext3, XFS, ReiserFS or even HFS/HFS+ filesystems. On OldWorld machines booting with BootX, the kernel must be placed on an HFS partition, but this will be completed when you configure your bootloader.
Mounting

Now that your partitions are initialized and are housing a filesystem, it is time to mount those partitions. Use the mount command. As an example we mount the root partition:

# mount /dev/sda4 /mnt/gentoo
If you want your /tmp to reside on a separate partition, be sure to change its permissions after mounting and unpacking with chmod 1777 /mnt/gentoo/tmp. This is also true for /var/tmp.

Continue with Installing the Gentoo Installation Files.