Linux commands to view disk space include: 1. df command; 2. du command; 3. ls command.
linux view disk space command list
1.df command
df -h
This command will display the disk space usage of all mounted file systems and display the disk space size in a human-readable manner.
2. du command
du -sh /path/to/directory
This command will display the disk space usage of the specified directory case, displays the directory size in human-readable form.
3. ls command
ls -lsh /path/to/file
This command will display the disk space usage of the specified file case, displays the file size in a human-readable format.
Note: The above commands need to be executed with root privileges or sudo.
The above is the detailed content of Linux check disk space command list. For more information, please follow other related articles on the PHP Chinese website!