Discus - Show Colourised Disk Space Usage in Linux Last Updated : 29 Aug, 2022 Comments Improve Suggest changes Like Article Like Report Discus is the prettier version of the df command to check the disk space utilization in Linux. Discus has several cool features such as color, bar graphs, and smart formatting of numbers. You can also configure it in your own way after copying its main configuration file /etc/discusrc to ~/.discusrc. Installation For installing Discus in your Debian/Ubuntu system, use the following command:- $ sudo apt install discus Usage After you are done with installing, you can type the following command to get the details with the default configuration. $ discus Linux Filesystem Disk Space Use -d flag to display device names instead of graphs $ discus -d To disable it, use the -s flag like this: $ discus -s Use -p flag to display the number to right of the decimal place: $ discus -p 7 You can also use -t, -g, -m, -k flag to display sizes in terabytes, gigabytes, megabytes, or kilobytes For configuring according to your preference, copy the main configuration file /etc/discusrc to ~/.discusrc like this: $ sudo cp /etc/discusrc ~/.discusrc Perform customization according to you on the file that you created by using this command: $ vim ~/.discusrc To check the version and Manuel page use the following command: discus -v man discus Comment More infoAdvertise with us Next Article Discus - Show Colourised Disk Space Usage in Linux tithimukherjee Follow Improve Article Tags : Linux-Unix Linux-Tools Similar Reads How to Check Disk Space in Linux Efficient disk space management is important for maintaining the performance and stability of your Linux system. Over time, files and applications can fill up your storage, potentially causing slowdowns or errors. Commands to Check DIsk Space in LinuxKnowing how to check disk space in Linux helps yo 6 min read Shell Script to Check Disk Space Usage Disk usage is a report generated by the Linux system about different disks available or created on the secondary memory. These disks are also known as partitions, they have their isolated filesystem. This facility provides us the measurements of different labels or features like Used space, Free spa 3 min read Pydf - Check disk space usage with colored output Pydf is a command-line-based tool that shows the amount of disk space available on the mounted file system. This tool is similar to the df command, but pydf command gives output in different colors for different file systems.pydf tool is highly customizable, and this tool is written in the python la 2 min read How to Check Swap Space in Linux Swap space is like an extra space in your computer's memory. When your computer's main memory (RAM) gets full it uses this extra room (swap space) to store things that aren't being used right now. This extra room is located on your computer's hard drive. Keeping an eye on how much of this extra room 5 min read Smem Tool To Display Memory Usage More Accurate in Linux Multiple tools are available to monitor the memory usage on a Linux system. Memory management by monitoring memory usage is one of the important things to do on our Linux system, Smem is one of the memory usage monitoring tools available in Linux. Smem displays the memory usage of the processes on t 3 min read Like