The meaning of fdlisk-l is to look at the size of the disk partitions below Linux. This size contains a lot of information.
Let's look at a description of the Niang:
Fdisk for hard disk partitioning is essentially a format for hard disks. When we create the partition, we have set the physical parameters of the hard disk, specified the hard disk master boot record (i.e. MASTERBOOTRECORD,MBR) and the location of the boot record backup. The information required for the file system and other operating systems to manage the hard disk is implemented through advanced formatting, which is the format command. In an image analogy, partitioning is like drawing a generous box on a blank sheet of paper. And formatting is like playing a lattice in a box. Installing a variety of software is like writing a word in a grid. Partitioning and formatting are the equivalent of laying the groundwork for installing software, which actually serves as a marker location for the computer to store data on the hard disk.
Well, I believe you should know something, let's take a look at this command. The following specific parameters represent what it means:
[Email protected] opt]# fdisk-21.421474836480 bytes255 2610 160658225280 bytes
representative Meaning:
This hard drive is 21.4G, has 255 magnetic surface, 63 sectors, 2,610 magnetic columns, each cylinder (magnetic column) capacity is 8225280 bytes=8225.280 K (bytes) =8.225280m (bytes);
Keep looking down:
Representative Meaning:
Start (start): represents a partition starting from X cylinder (magnetic column);
End : represents the end of a partition to Y cylinder (magnetic column);
The ID and system represent a meaning, the ID looks less intuitive, we want to specify the ID to confirm the partition type when fdisk a partition, such as 7 for NTFS partition; This is specified in Fdisk by function.
Blocks (capacity): This is my translation, in fact, not accurate, meaning is indeed the meaning of capacity, its unit is k; the value of a partition capacity is derived from the following formula;
Blocks = (corresponding partition end value-corresponding partition start value) x unit cylinder (magnetic column) capacity;
FDLISK-L usage Analysis under Linux-introductory article