INFORMATICS

The Best

10 Commands to Check Disk Partitions and Disk Space on Linux

Star InactiveStar InactiveStar InactiveStar InactiveStar Inactive
 

1. fdisk
Fdisk is the most commonly used command to check the partitions on a disk. The fdisk command can display the partitions and details like file system type. However it does not report the size of each partitions.

$ sudo fdisk -l

2. sfdisk
Sfdisk is another utility with a purpose similar to fdisk, but with more features. It can display the size of each partition in MB.

$ sudo sfdisk -l -uM

3. cfdisk
Cfdisk is a linux partition editor with an interactive user interface based on ncurses. It can be used to list out the existing partitions as well as create or modify them.

Here is an example of how to use cfdisk to list the partitions.

linux cfdisk disk partitions

Cfdisk works with one partition at a time. So if you need to see the details of a particular disk, then pass the device name to cfdisk.

$ sudo cfdisk /dev/sdb

4. parted
Parted is yet another command line utility to list out partitions and modify them if needed.
Here is an example that lists out the partition details.

$ sudo parted -l

5. df
Df is not a partitioning utility, but prints out details about only mounted file systems. The list generated by df even includes file systems that are not real disk partitions.

Here is a simple example

$ df -h

$ df -h | grep ^/dev

$ df -h --output=source,fstype,size,used,avail,pcent,target -x tmpfs -x devtmpfs

6. pydf
Improved version of df, written in python. Prints out all the hard disk partitions in a easy to read manner.

$ pydf

7. lsblk
Lists out all the storage blocks, which includes disk partitions and optical drives. Details include the total size of the partition/block and the mount point if any.
Does not report the used/free disk space on the partitions.

$ lsblk

8. blkid
Prints the block device (partitions and storage media) attributes like uuid and file system type. Does not report the space on the partitions.

$ sudo blkid

9. hwinfo
The hwinfo is a general purpose hardware information tool and can be used to print out the disk and partition list.

The output however does not print details about each partition like the above commands.

$ hwinfo --block --short

10. Inxi
Inxi is a very useful command line program that can display information about various hardware components present on the system. To display information about the disk drives and storage devices use the "-D" option with inxi.

$ inxi -D -xx

 

 

 

Search