Check Linux Disk Space with df Command
You can use the df command to check the usage of disk space on a Linux file system.
Enter the following command in the terminal:
df -h
This will display the usage of all mounted file systems, including their mount points, total space, used space, available space, and usage percentage.
If you only want to view the usage status of a specific file system, you can specify the mount point of the file system in the command.
df -h /path/to/filesystem
This will display the usage of the specified file system.