Created
May 18, 2016 07:46
-
-
Save samuelecarpene/b1fb19272ce2e66f838345c117b5400e to your computer and use it in GitHub Desktop.
Disk Space linux
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //The du command is used in Linux to estimate and display the disk space used by files. | |
| du -hs; | |
| du -hs *; | |
| //The df command reports the amount of available disk space being used by file systems. | |
| df -h; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment