Last active
March 21, 2019 20:07
-
-
Save bongardino/bf3258a6b6c5babdb9de64ec0aac4e47 to your computer and use it in GitHub Desktop.
nix things I always google
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
# find all, minus permisson errors | |
find / -type f -iname "*rotate*" 2>/dev/null | |
# find the biggest files / directories | |
sudo du -a / 2>/dev/null | sort -n -r | head -n 20 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment