The Linux command line provides a plethora of tools that offer an unparalleled level of insight and control over your system, especially when it comes to managing disk space. With these tools, you can easily mo
df Command Examples It doesn’t matter if you are a system administrator or a regular desktop user, you must know how much disk space you have available or consumed in order to keep things properly rolling on your system. If you use desktop Linux this can be done through the regular file...
2. Check Information on Linux Disk Space Usage The command"df -a"is used to display information about all the mounted filesystems disk space usage, which includes total space, used space, available space,memory utilization, and the percentage of space used for each filesystem. It also shows ...
1. df command The df command to check disk space in Linux is widely used by Linux Administrators. It is a built-in utility that displays the amount of free and used disk space on the file system. It is used to report the amount of available and used disk space on the file system, ...
The above command is equivalent to sudo df -h /. How to Check Linux Disk Space with the du Command Use the du command to analyze disk space at a more granular level. This command summarizes the space usage for a specified directory or the current directory if none is specified. sudo du...
The df command can be run by any user. Like many Linux commands, df uses the following structure: df [OPTION]... [FILE]... The df command primarily checks disk usage on a mounted filesystem. If you don't include a file name, the output shows the space available on all currently ...
Check Disk Space In Ubuntu Terminal The “df” command is for “disk filesystem” and is a great tool to know about the disk space usage on Linux Systems. The df command displays the amount of disk space available on the file system. ...
disk space in Linux. Bash comes with an inbuilt command line tool called df – short for disk filesystem and is used to retrieve a full summary of disk space usage for different filesystems in Linux. In this article, we look at the usage of df command to check disk space in Linux. ...
Ref: http://www.tecmint.com/how-to-check-disk-space-in-linux/ On the internet you will find plenty of tools for checking disk space utilization in Linux. However, Linux has a strong built in utility called ‘df‘. The ‘df‘ command stand for “disk filesystem“, it is used to get...
Check Disk Space on Linux using df The easiest and more popular way to check your disk space is to run the df command. $ df <options> If you run the “df” command, this is the output that you would get. ubuntu:~$ df Filesystem 1K-blocks Used Available Use% Mounted on ...