Skip to content

Instantly share code, notes, and snippets.

@NanoDano
Last active May 19, 2019 17:34
Show Gist options
  • Save NanoDano/4c6a8074b43d8844b54ea97b28063589 to your computer and use it in GitHub Desktop.
Save NanoDano/4c6a8074b43d8844b54ea97b28063589 to your computer and use it in GitHub Desktop.
RPM list packages by size
# 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