While using df -h command to get human readable output that print disk space usage sizes in powers of 1024 on Ubuntu Linux, I noticed 78 entries mostly made of /dev/loop.
The -h or --human-readable option is passed to the df command to show you Linux filesystem disk space usage in a human-readable format. All types of filesystems are displayed by default, including ext3, ext4, zfs, tmpfs, loopback and more.
Limiting listing to file systems usage with df -h command on Linux
Try passing the -t TYPE option to see df usage just for ext4 file system. For example:
df -h -t ext4
Want both zfs and ext4?
df -h -t ext4 -t zfs
Another quick and dirty solution is to pass the outputs of df -h to the grep command or egrep command to filter out unwanted filesystems. For instance: