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
sdb5
is swap, this is an expansion to the system RAM, when it's too loaded this partition is being used in addition, in Windows there'sswapfile.sys
or something like that which holds the same concept. – Yaron Sep 22 '19 at 11:26lsblk
andblkid
, it will probably shed some more light on your situation. – Yaron Sep 22 '19 at 11:29Gparted
orparted
would be a good way to confirm this. You probably have a EFI/UEFI server, which should really use GPT formatted disks (which aren't limited to 4 partitions). – heynnema Sep 22 '19 at 15:39