
One of the historical reasons for putting the /var directory on a separate partition was to prevent files that were frequently written to ( /var/log/* for example) from filling up the entire drive.

A single partition cannot be formatted with more than one type of file system. Since FAT file systems do not support access permissions, the boot loader must be on a separate file system than the rest of the operating system on modern UEFI-based computers. The Linux operating system, however, requires a POSIX-compliant file system that can designate access permissions to individual files. UEFI-based computers require that the boot loader ( which can be the Linux kernel directly) be on a FAT-formatted file system.

However, modern UEFI-based computers have a different restriction that makes it necessary to have a separate partition for the boot loader. So for most people, this concern is no longer relevant. Most modern computers do not have the 1024 cylinder restriction. One of the reasons for putting the /boot directory on a separate partition was to ensure that the boot loader and kernel were located within the first 1024 cylinders of the disk. If you know more (or contradictory) historical details about the partitioning decisions that shaped the Linux operating systems used today, contribute what you know below in the comments section! Common partitions and why or why not to create them The boot partition
#HOW TO CREATE BOOT PARTITION IN LINUX INSTALL#
The following sections attempt to describe in brief some of the historical reasons for separating some parts of the file system out into separate partitions so that you can make a more informed decision when you install your Linux operating system. Or maybe you are running a database and have a small solid-state drive that would improve the database’s performance if its files are stored on the SSD. Do you have more than one storage drive? If so, you might be able to get a performance benefit by putting the write-heavy partitions ( var and swap for example) on a separate drive from the others that tend to be more read-intensive since most drives cannot read and write at the same time. Distributions cannot know the details about how your hardware is configured or how you use your system though. Operating system distributions try to craft a one size fits all partition layout for their file systems.
