In this guide, we'll look at duf in detail and go over the steps to install and use it on Linux. What Is duf? duf or Disk Usage/Free is a free and open-source command-line utility that allows you to view your system's disk usage and free space from right inside a terminal windo...
To display the summarized disk usage information in the Linux server, use the -s parameter: du -hs To show the disk usage information for a particular filesystem, execute the given command with the file location: du -s ./.ssh Run the mentioned command to display the disk space usage repo...
Explore how to check disk usage using the df and the du commands and learn how a variety of simple arguments can enhance your workflow.
The ‘df‘ command stands for “disk filesystem“, it is used to get a full summary of available and used disk space usage of the file system on the Linux system. Using ‘-h‘ parameter with (df -h) will show the file system disk space statistics in “human-readable” format, which...
As your Linux system becomes old, chances are that you start to run out of the disk space. Visualizing disk usage can help you in this case with understanding how the overall disk space is being used, so you can be better prepared to clean it up....
du -sh /path/to/directory This command provides a single total size for the specified directory. Here’s an example of its usage: du -sh /home/user The output should resemble the following: 2.5M /home/user How to Check Disk Usage in Linux Using the pydf Command ...
The Linux ‘du‘ (Disk Usage) is a standard Unix/Linux command used to check the disk usage information of files and directories on a machine. Theducommand has many parameter options that can be used to get the results in many formats. Theducommand also displays the files and directory si...
What if you could see your entire disk space usage at a glance? We've covereddisk space visualizerson Windows before but many of them are unavailable on Linux. And while most Linux distros come with built-in commands for exploring disk usage, they tend to be overcomplicated for non-veteran...
Viewing Disk Usage in Windows Server 2016 Installing Agent to View Disk Usage Viewing Disk Usage in Linux In this section, CentOS 7.4 64bit is used as an example. The details depend on if you need to view the available space or not. To query the total capacity only, run lsblk. Informa...
View the Total, Available, and Used Disk Space on Linux Bash contains two useful commands related to disk space. To find out the available and used disk space, usedf(disk filesystems, sometimes called disk free). To discover what's taking up the used disk space, usedu(disk usage). ...