Last active
May 19, 2019 17:34
-
-
Save NanoDano/4c6a8074b43d8844b54ea97b28063589 to your computer and use it in GitHub Desktop.
RPM list packages by size
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
# See which packages take up the most space | |
rpm -qa --queryformat '%10{size} - %-25{name} \t %{version}\n' | sort -n | |
# or simply | |
rpm -qa --queryformat '%{size} %{name}\n' | sort -n |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment