Home > Article > Operation and Maintenance > What does partition mean in linux
In Linux, partitioning is to divide a space into multiple blocks. It refers to dividing a block device (such as a hard disk) into several areas according to its physical address as "sub" devices that can be independently managed. Linux partitions have two common forms: MBR partition table and GPT partition table.
#The operating environment of this tutorial: linux5.9.8 system, Dell G3 computer.
Files are the OS's abstraction of hardware and even all resources, not just disks.
Partition is to divide a space into multiple blocks, and the file system is what is placed in the partition (or other space).
Partitioning is to divide a block device (such as a hard disk) into several areas according to its physical address as "sub" devices that can be independently managed. Partitioning only divides the address space of the block device. It is just a static division. That's it, no more use.
Partitioning method
Two common partition expressions,
MBR partition table: supports up to 2.1T hard disk, Supports up to 4 partitions, supports 32-bit and 64-bit systems;
GPT partition table (global uniquely marked partition table): supports 9.4ZB (1ZB=1024PB, 1PB=1024EB, 1EB=1024TB), theoretically There is no limit on the number of supported partitions (but Windows limits 128 primary partitions), and only supports 64-bit systems.
Although GPT is a newer partitioning mechanism that solves many shortcomings of MBR, the MBR partitioning method is currently the most used. MBR has up to 4 partitions, and there are three partition types:
Extended partition
Logical partition
Related recommendations: "Linux Video Tutorial"
The above is the detailed content of What does partition mean in linux. For more information, please follow other related articles on the PHP Chinese website!