Created
May 24, 2024 10:57
-
-
Save supermarsx/a50734c4d94bf0c0c9e7ca7f757e404f to your computer and use it in GitHub Desktop.
Cheat sheet, free/used space linux by folder/mount points
This file contains 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
# free space mount points | |
df -h / | |
# used space folders | |
du -sh * | |
# used space process locked files | |
lsof +L1 | |
# used space by files in folder | |
ls -lah |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment