What are the advantages and disadvantages of mounting various directories on separate partitions?

Long long time ago...

... There was a time when people used to install Linux and configure it by hand for their specific needs. Some of this is true even today for servers. The choices you see in gparted are some of the popular ones for those who had very different needs as compared with the average desktop users, the intended audience for Ubuntu desktop.

Let us take these one at a time. I will skip the ones I don't know much about.

  1. /boot there was a time when the Linux file system was fragile and hard drives were small. People were afraid that the hard drive would fill up or get corrupted and Ubuntu won't boot. Keeping the kernels in a separate partition helped the system to boot when other things went wrong. In those days Linux users used to compile their own kernel and clean up old ones. As recently as with Ubuntu 16.04 LTS, the Software Updater app installed the latest kernel update but did not remove the old kernels. As a result, a small /boot partition filled up with old kernels and the system stopped booting unless one cleaned it periodically. See what happened if you had a separate /boot partition and forgot to clean it regularly: How do I free up more space in /boot? With Ubuntu 18.04 LTS the Software Updater app not only keeps the system up-to-date, but also removes the old kernels. It keeps the last two kernels in case the latest kernel has some issues and one needs to revert back the previous one.
  2. On the other hand, if you want to encrypt the / partition (to safeguard the secret software you are working on), you will need a separate (and unencrypted) /boot partition. Otherwise the system won't boot. Similarly, if you have a RAID drive, keeping /boot in a non-RAID partition may be useful. Many people thinks having a separate /boot partition is a very good idea for these and other reasons.
  3. /home Keeping home in a separate partition still makes some sense. This folder/partition has your personal files and having it in a separate partition allows you to format / and reinstall Ubuntu while keeping your files untouched. Recent versions of the Ubuntu installation software includes a choice of update from DVD/USB. This option keeps /home intact even it it is not on a separate partition. If you run out of space in your primary drive with / partition. You may want to add a new drive and create a single /home partition in the new drive.
  4. /tmp is where temporary files go. If you are running a server that creates large temp files, they may fill up all the disk space and bring your server to a halt. Keeping it in a separate partition will only fill up that partition and may stop the process that was creating the big temp files but will not stop the rest of the system. I am told it is easier to deal with a filled up /tmp partition than a temporary folder under / partition.
  5. /usr/, /opt/, and /usr/local are all places where programs and apps are kept under different conditions. If you develop software for Linux, it may make sense to keep these in separate partitions, so that if you reinstall Ubuntu, you won't delete the programs you have written or have been working on.
  6. Keeping /opt/ and /usr/local in separate partition also makes sense if you install programs from source (your own or from somewhere else) and want to use them in another distribution (say Red Hat) installed in the same computer in its own partition. Then both the distributions, Ubuntu and Red Hat can share the /opt and /usr/local partitions. (Thanks Rmano!)
  7. /srv and /var are particularly useful as separate partitions if you run servers or develop web pages. For the average desktop user these folders don't take up much space and does not hold anything that is of value to the user. For a web developer losing /var/www may mean losing her job.

To be sure, these are not the only directories one can mount as partitions. In Linux, one can mount a partition as any folder anywhere. Partitions are often mounted as sub-directories of /mnt/ and /media.

Hope this helps


Generic advantages of having multiple partitions:

  1. You can use different disks/LUNs and have better performance. This can increase the performance of the databases as you can have the transaction log on a storage and the data files on another. Similar for disk I/O intensive web applications.
  2. You can use different mount options (that increase the security or that affect the performance or stability in a more granular way)
  3. You can have different filesystems
  4. You manage the space separately. So you can have a nasty application that fill the space that is not affecting other applications.
  5. Fragmentation of one partition is independent of the other.
  6. You can snapshot, mount, umount, format, defragment, monitor for performance of those file systems independently.
  7. You can have encryption on specific volumes.
  8. You can mount volumes on demand.
  9. You can see I/O statistics per each block device.

Generic disadvantages of having multiple partitions:

  1. It increase the administration overhead.
  2. You will have greater chances to waste more disk space.
  3. You will have more incidents involving disk full.
  4. It is more difficult to create a consistent snapshot of an application running on different volumes.
  5. It uses slightly more resources.
  6. Difficult to shrink. Depending on the volume type (MS-DOS label, LVM, btrfs...) you might not be able to easily allocate space from a volume by shrinking another. Especially online.
  7. If you partition so that you can use nodev, nosuid and/or noexec, this setup can be too limiting and you can obtain better granularity with SELinux, grsecurity or AppArmor and just use a big /.
  8. If you use old partitioning tools you can get "creative" and missalign partitions with underlying extents. Some disk arrays can detect this and compensate.
  9. If you use all 4 primary partitions on a MS-DOS disk label, it will be difficult to create new partitions.

Another way to partition your system is to use LVM, btrfs or zfs for /. Allocate just the minimum space for / and when needed create logical volumes or extend /. This leaves you the choice to split in volumes at a later time and has lower maintenance costs.

When you have a new disk volume (disk, disk array, SAN LUN) you can use different disk labels (some can be mixed on top of the other)

  • MS-DOS disk label. It is phased out, but still supported in a lot of machines
  • GPT. Used with EFI/UEFI, it is similar with MS-DOS disk label, but removes some limitations and add some stability (backup, checksum)
  • LVM - used in Linux, recent versions of GRUB can boot a kernel located on LVM. Most of the people are using it on top of MS-DOS or GPT disk label, but I prefer to use it directly on the volume. This gives me the best flexibility.
  • other disk labels (BSD, SUN, Windows Dynamic Disks) may be used if you want to annoy your team mates.
  • ZFS, Btrfs‍ - are integrating a filesystem with the volume manager
  • format directly the volume with the file system you need. No disk label, like floppy disks.

Now specific stuff:

  • /boot is good to be a separate partition. The file system must be one supported by your boot loader (usually GRUB).
  • If you use EFI/UEFI it is a requirement to have a EFI system partition on a GPT disk label.
  • /home is good to separate the user stuff from the OS and applications.
  • /tmp can be mounted with noexec, nodev, nosuid. It can be a memory mapped fs like tmpfs.
  • /usr can be mounted read-only and only remounted rw for updates, it can be remote like a NFS share.
  • /srv /opt will store the application and application data. If you have an I/O intensive application you can use better disk subsystem (eg SSD)
  • /usr/local is the default used by applications installed locally on the current machine. For example you have everything else on NFS and have a local disk...

There is no perfect solution. If you have no clear reason why to create a new partition, then don't. The only partition you might need to create besides / is /boot.

Try to use as few partitions as possible and allocate for them only what is required in near future (4-6 months). You can add more and expand them if needed. Use LVM, ZFS or Btrfs directly on the disk volume, if possible. This gives you the best flexibility.

For desktops/laptops is nice to have /home so that you can reinstall the OS independent of your data.


For desktop?

No difference.

For server?

Space management and backup.

If your system have many users you can make additional partition for /home/, then users will not exeed that space and root (/) will not be affected.

You can also mount NFS, SMB or partition on other physical disks on those folders. For example :

/dev/sda1 /boot (1GB)

/dev/sda2 / (60GB)

nfs://IP/folder /home ( X TB )

/dev/sdb1 /var (1TB for /var/www or /var/ftp)

For laptop

/ on m-sata (fast)

/var /home /opt /tmp on hdd (slow)