List installed packages



How can I list installed rpm packages ?
There are a few ways to accomplish that
1 Using rpm command
Code:
sudo rpm -qa
You can list package files installed by some program using the following command
Code:
sudo rpm -ql package_name

2 Using yum
Code:
sudo yum list installed | less

3 Using dnf
Code:
sudo dnf list installed | less

This is a nice tutorial you might want to read https://www.tecmint.com/20-practical-examples-of-rpm-commands-in-linux/

Hope this helps! :)
 

Members online


Top