How to check disk usage in Linux

How to check disk usage in Linux

1. Use the df command to view the overall disk usage

The df command is used to view the mount point of the hard disk and the corresponding hard disk capacity information. Including the total size of the hard disk, the size already used, and the remaining size. And the percentage of space used, etc.

The most commonly used command format is:

df -h

Or use:

df -lh

Output:

Filesystem refers to the hardware device files on the system, and Size refers to the total size of the hard disk or partition. Used indicates the size that has been used, and Avail indicates the size that can be used. Use% indicates the percentage of used space. The final "mounted on" indicates the directory where the hard disk is mounted.

Description: Parameters that can be added after the df command

● -a: List all file systems, including system-specific file systems such as /proc

● -k: Display the capacity of each file system in KB

● -m: Display the capacity of each file system in MB

● -h: Display in GB, MB, KB format which is easier for people to read

● -H: Replace M=1024K with M=1000K

● -T: Display the file system type

● -i: Display the number of inodes instead of the hard disk capacity

● -l: only display the file system of the local machine

2. Use the du command to view the usage of the specified directory

Use the du command to view the directory or file information inside the hard disk. The du command usually needs to be executed with parameters at the end. The general format is:

du option File/directory

For example, if I want to check the capacity of the python3 directory in the current directory, the command is:

du -sh python3

The result is shown in the figure below. You can intuitively see that the size of this directory is 206M. If there is no file name or directory name behind it, the size of the current directory will be displayed.

You may also be interested in:
  • Linux view disk space size command

<<:  CocosCreator ScrollView optimization series: frame loading

>>:  Solution to the problem that the MySQL database cannot be accessed by other IP addresses

Recommend

Install Docker on CentOS 7

If you don't have a Linux system, please refe...

Vue based on Element button permission implementation solution

Background requirements: The ERP system needs to ...

How to inherit CSS line-height

How is Line-height inherited?Write a specific val...

MySql sets the specified user database view query permissions

1. Create a new user: 1. Execute SQL statement to...

uniapp realizes the recording upload function

Table of contents uni-app Introduction HTML part ...

Detailed explanation of FTP environment configuration solution (vsftpd)

1. Install vsftpd component Installation command:...

css Get all elements starting from the nth one

The specific code is as follows: <div id="...

Detailed explanation of Nginx's control over access volume

Purpose Understand the Nginx ngx_http_limit_conn_...

Node and Python two-way communication implementation code

Table of contents Process Communication Bidirecti...

MySql common query command operation list

MYSQL commonly used query commands: mysql> sel...

Use of Linux read command

1. Command Introduction The read command is a bui...

Solution to MySQL error code 1862 your password has expired

The blogger hasn't used MySQL for a month or ...

MySQL 5.7.10 installation and configuration tutorial under Windows

MySQL provides two different versions for differe...

Solution to MySQL restarting automatically

Preface Recently, a problem occurred in the test ...