I am trying to figure the disk configurations on an Ubuntu server I am using. Since it seems that the file system is only 110GB, I checked its partitions:
sudo fdisk -l
and got this -
Disk /dev/sdb: 250.1 GB, 250059350016 bytes
and
Device Boot Start End Blocks Id System
/dev/sdb1 * 2048 220291071 110144512 83 Linux
/dev/sdb2 220293118 488396799 134051841 5 Extended
/dev/sdb5 220293120 488396799 134051840 82 Linux swap / Solaris
as I understand I have a hard disk of 250GB w\ 3 partitions. I guess the first one (sdb1) is the file system I see, But what does it mean Extended system in sdb2? plus, is sdb5 another possible boot?
Thanks