1 00:00:06,998 --> 00:00:08,850 - When you are going to work with partitions, 2 00:00:08,850 --> 00:00:10,140 it makes sense to understand 3 00:00:10,140 --> 00:00:13,173 about the differences between MRB and GPT. 4 00:00:14,310 --> 00:00:16,830 So MRB is Massive Boot Record, 5 00:00:16,830 --> 00:00:19,290 and that's a part of the original PC standard, 6 00:00:19,290 --> 00:00:21,483 which was defined in 1981. 7 00:00:22,320 --> 00:00:24,390 MRB is pretty minimal. 8 00:00:24,390 --> 00:00:28,110 In MRB, a 512 byte sector is used on disk 9 00:00:28,110 --> 00:00:29,880 to store the stage one boot loader, 10 00:00:29,880 --> 00:00:32,010 as well as the partition table. 11 00:00:32,010 --> 00:00:34,290 And in these 512 bytes, 12 00:00:34,290 --> 00:00:37,800 64 bytes are reserved for the partition table. 13 00:00:37,800 --> 00:00:42,030 In these 64 bytes, 4 primary partitions can be created 14 00:00:42,030 --> 00:00:45,450 on the disc with a maximum size of 2 terabytes. 15 00:00:45,450 --> 00:00:49,560 If it goes beyond 2 terabytes, you can't use MRB. 16 00:00:49,560 --> 00:00:51,360 To create more than 4 partitions, 17 00:00:51,360 --> 00:00:53,520 one primary partition can be assigned 18 00:00:53,520 --> 00:00:54,840 as an extended partition, 19 00:00:54,840 --> 00:00:57,870 in which logical partitions can be created. 20 00:00:57,870 --> 00:01:01,050 Now GPT is the newer partitioning scheme. 21 00:01:01,050 --> 00:01:03,270 It stands for GUID Partition Table, 22 00:01:03,270 --> 00:01:05,370 and it was introduced in the 2000s 23 00:01:05,370 --> 00:01:07,443 to deal with the MRB shortcomings. 24 00:01:08,490 --> 00:01:12,270 It addresses up to 128 partitions directly, 25 00:01:12,270 --> 00:01:14,250 and that makes that you don't need to think 26 00:01:14,250 --> 00:01:18,270 about primary, extended, and logical partitions anymore. 27 00:01:18,270 --> 00:01:22,127 And it supports a maximum disk size of 18 exabyte 28 00:01:23,340 --> 00:01:27,600 where one exabyte is 1024 petabyte, 29 00:01:27,600 --> 00:01:31,950 and that is 1024 terabyte. 30 00:01:31,950 --> 00:01:34,170 Pretty big that is. 31 00:01:34,170 --> 00:01:36,360 All modern computers and operating systems 32 00:01:36,360 --> 00:01:38,700 support GPT partitions. 33 00:01:38,700 --> 00:01:40,710 It is kind of funny though, 34 00:01:40,710 --> 00:01:43,140 but you will still see many new installations 35 00:01:43,140 --> 00:01:45,000 that are using MRB, 36 00:01:45,000 --> 00:01:46,680 because if it's a cloud instance, 37 00:01:46,680 --> 00:01:48,420 if it's simple, if it's small, 38 00:01:48,420 --> 00:01:51,810 there is nothing preventing you from using MRB. 39 00:01:51,810 --> 00:01:53,430 And that is why for the exam, 40 00:01:53,430 --> 00:01:55,890 you should know how to deal with MRB partitions, 41 00:01:55,890 --> 00:01:57,783 as well as GPT partitions.