How can I see a list of all installed RPMs on my system?

“rpm listing installed rpms”
“list all installed rpms”
“list installed packages rpm”

Viewing a list of all installed RPMs on a system is as simple as typing in rpm -qa . Most probably, you’ll want to see the resulting list alphabetically sorted. You can do that by typing rpm -qa | sort into your terminal.

Leave a Comment