
- #Maptiler disk usage how to
- #Maptiler disk usage install
#Maptiler disk usage how to
How to enable/disable firewall on Ubuntu 18.04 Bionic Beaver Linux.
#Maptiler disk usage install
How to install Tweak Tool on Ubuntu 20.04 LTS Focal Fossa Linux.Linux IP forwarding – How to Disable/Enable.How to use bash array in a shell script.AMD Radeon Ubuntu 20.04 Driver Installation.How to install missing ifconfig command on Debian Linux.Ubuntu 20.04 Remote Desktop Access from Windows 10.
How to find my IP address on Ubuntu 20.04 Focal Fossa Linux. How to install the NVIDIA drivers on Ubuntu 20.04 Focal Fossa Linux. To install Disk Usage Analyzer on Arch Linux and Manjaro:Īfter it’s installed, search for and open the application. To install Disk Usage Analyzer on CentOS, Fedora, AlmaLinux, and Red Hat: To install Disk Usage Analyzer on Ubuntu, Debian, and Linux Mint: Use the appropriate command below to install it with your system’s package manager. One such application is called Disk Usage Analyzer, but it may not be installed by default on your Linux distro. Sometimes, it’s easier to visualize disk usage if we use a GUI utility. You can also check our guide on listing directories by size for even more command line examples. The du and sort commands, along with the options we’ve gone over, should be enough to help you easily check disk usage by folder. $ sudo du -h -max-depth=1 / | sort -h 2> /dev/null If you try to run du on your root directory to see storage space across the entire disk, keep in mind that you’ll need to execute that command with root privileges and you should redirect standard error to /dev/null since you’ll get a lot of “permission denied” spam in your output. Keep in mind that you can specify any directory with the command – you don’t have to actually be in the directory you’re checking. In these examples, we’ve been running du from our present working directory. If you’re using the -h option on du, make sure you also use it on sort. To sort these directories by size, making it easy to identify which ones are consuming the most space, we can pipe our du command to the sort utility. If you have a deep structure, we can use the -max-depth=N flag to tell du how many subdirectories deep it should traverse. This gives us a rather granular look at how much space each subdirectory is using. Let’s see what happens if we have a deeper folder structure.Īs you can see, the “Debian-based” and “RHEL-based” directories have two and three subdirectories, respectively.