-1

I entered sudo fdisk -l now I want to know how much of my hard disk belong to this partition:

   Device Boot      Start         End      Blocks   Id  System
/dev/sda2       156264318   273474494    58605088+   7  HPFS/NTFS/exFAT
Mohammad Reza Rezwani
  • 10,286
  • 36
  • 92
  • 128

1 Answers1

1

Try these commands,

sudo fdisk -s /dev/sda2

From fdisk --help

fdisk -s <partition>    -  give partition size(s) in blocks

OR

lsblk /dev/sda2

SIZE field will display the partition size.

Avinash Raj
  • 78,556