It is pretty simple to list out physical disks in Linux:
1) $ sudo fdisk -l
It displays the partitions and details like file system type. But it doesn’t report the size of each partition.
2) $ sudo sfdisk -l -uM
Sfdisk is another command where it can also display the size of each partition in MB.
3) $ sudo parted -l
4) $ df -h