
The purpose of this guide is to list all disk partitions, and their sizes on a Linux operating system. This will help you identify what hardware storage you have available, how the disks are partitioned or sliced, and what sizes each of them are.
1. The lsblk Command
The lsblk command will show all storage devices connected to your system, their configured partitions, and the sizes.
Command: lsblk
The screenshot below shows us that we have one hard drive identified as sda, with a size of 150 GB. You can see its partitions and their sizes listed under the disk (sda1, sda2 and sda3).
2. The fdisk Command
The fdisk command is another way to retrieve the same information.
Command: fdisk -l
Below that, you can see the partitions, their sizes, and what the partitions are used for (Logical/Physical, BIOS, Linux filesystem, etc).
3. The df Command
The df is a good way to see all the partitions on the system in a clean way, but it does not list unpartitioned block devices. It will also show the partition size, percentage currently in use, and where the partition has been mounted.
Command: df -h
We recommend using the -h attribute to put the output in human readable format.
E.g.
- Filesystem – /dev/sda3
- Total Size – 147G
- Used – 12G
- Available – 127G
- % in use – 9%
- Mounted on – /
4. With GUI Method
All Linux distros and desktop environments should also include a GUI application that can also be used to view disk and partition information.
In Ubuntu, this utility is simply called “Disks.” This could vary on other distros, but should not be hard to find in the menus. In windows 10/11, You can find the same feature under Settings -> System -> Storage.
In this article, we saw how to list all disks, partitions, and sizes on a Linux system using both command line and GUI method.
You may also like:- Top 26 Essential Windows Commands for Network Enumeration
- Top 7 Nmap Commands for Effective Network Scanning
- Tool Categories in Kali Linux – A Brief Overview
- 100+ Important Linux Terms and Technologies
- How to Use Kali Linux for OSINT Automation
- How to Perform Network Security Audits Using Kali Linux
- How to Harden Kali Linux for Maximum Security
- How to Use Kali Linux for Cloud Security Testing
- How to Fix Common Kali Linux Installation Errors
- How to Use Python for Ethical Hacking in Kali Linux