Method 1: Checking free disk space in Linux with df command (and understanding its output) When you use the df command to check disk space, it will show a bunch of ‘file systems’ with their size, used space and free space. Your actual disks should normally be listed as one of the ...
First method: Linux df command One of the easiest ways to check free disk space in Linux ubuntu is the Linux df command, which displays available and accessible disk space. The main syntax of the df command is as follows: df [options] [devices] Substitutions in brackets are optional. To ...
Check Disk Space in Linux using the command df (disk free) The barebones version of the df command will show you the space occupied by different drives in 1KB (kilobyte) blocks. In the output, you will be provided with mount point information, available and used space, and the percentage ...
Advanced Linux commands cheat sheet What are Linux containers? Our latest Linux articles The listing shows the largest directory first (in this example, that's the~/.vardirectory, full of many many flatpaks). Using the Arrow keys on your keyboard, you can navigate through the listing to move...
In this section, you learnt how you can check disk space using df. However, if you want to check disk usage for directories and files, you are going to use the “du” command. Check Disk Space on Linux using du The du command stands for “disk usage” and it is used in order to...
Drive space isn't quite as precious as it was in the early days of computing, but no matter how much space you have, there's always the potential to run out.
The df command is a powerful Linux command-line utility that allows you to check the disk usage and available space on file systems. When you run the command, it prints information about file systems that are currently in use, including their total size, used space, free space, and mount ...
One of the most important tasks in managing any Linux system is keeping tabs on disk space utilization. How much disk space are you using and how much do you have left? Whether it’s a Linux desktop or a server, it’s crucial that you periodically check how much free space your hard ...
Method #1: Use the df Command to Check the Disk Space in Linux Thedfcommand is one of the easiestways to check disk space usageand available block size. Launch the terminal and enter the following command: # df As you can see, thedfcommand, which stands for disk free, displays how muc...
Check free disk space in Linux with df command Sometimes you want to know how much disk space is available for a particular folder in your system in the file system where that folder resides, so you can know it by simply using the ‘df’ with the folder you want to know about. ...