Check amount of free disk space using the df command in the terminal on Linux
ID: 306
Category: Linux Terminal
Added: 23rd of May 2022
Views: 1,279
If you want a quick way to check the amount of free disk space available on Linux, we can use the df command in the the terminal
df -h
As you can see, on partition
/dev/sda2 I have used 14 Gigabytes and still have 90 Gigabytes available
You can also display the file system type by using the -T argument in the command
df -hT
Related Tips & Tutorials
➔
Display free memory using the terminal in Linux