See all installed packages linux

5 ways to list installed packages in Linux

Do you ever need to know what packages are installed on your Linux system? Maybe you’re troubleshooting a problem and need to identify a package that’s causing an issue.

Or, maybe you want to install a new package and want to make sure there are no conflicts.

In any case, it’s helpful to know how to list installed packages in Linux. In this blog post, we will discuss 5 different ways to do just that!

apt list —installed
dpkt -l

On Redhat, Centos, and Fedora:

rpm -qa
yum list installed
dnf list installed

This article is part of the following series.

list installed packages with apt command in Ubuntu Linux

The first way to list installed packages in Linux is to use the apt command. This command is used for package management in Debian and Ubuntu systems.

To list installed packages with the apt command in Ubuntu Linux, follow these steps:

Open the terminal by pressing Ctrl+Alt+T or searching for “Terminal” in the Activities menu.

Run the following command to list all installed packages:

If you want to search for a specific package, you can use the following command. Replace with the name of the package you want to search for. apt list –installed | grep

apt list — -installed
Listing. Done
accountsservice/focal-updates,focal-security,now 0.6.55-0ubuntu12~20.04.5 amd64 [installed,automatic]
acpid/focal,now 1:2.0.32-1ubuntu1 amd64 [installed]
adduser/focal,now 3.118ubuntu2 all [installed,automatic]

In this example, each line of the output represents a single installed package.

acl/focal,now 2.2.53-6 amd64 [installed]

Property Value
Package Name acl
Repo Name focal
Status now installed
Version 2.2.53-6
Architecture amd64

The apt command can be used to install, remove, and update packages on Ubuntu system.

The apt command has a number of different options that you can use to mange packages.

For example, you can use the apt list –upgradable option to list all of the packages on your system that can be upgraded.

You can also use the apt search option to search for a specific package.

Simply type “apt search ” into your terminal and it will search for the package name that you specify.

If you want to see a description of a certain package, you can use the “apt show ” option. This will show you the description of the package and any other information that is available.

If you want to uninstall a package, you can use the “apt remove ” option.

list installed packages with dpkg command in Ubuntu Linux

Another way to list installed packages in Linux is to use the dpkg command.

dpkg is a package manager for Debian, Ubuntu and many other Linux distro. It is used to install/manage individual packages.

Читайте также:  Linux сменить пароль пользователя root

To use it, type dpkg -l into your terminal. This will list all of the installed packages on your system, as well as information about each package such as its version number and status.

ii accountsservice 0.6.55-0ubuntu12~20.04.5 amd64 query and manipulate user account information
ii acpid 1:2.0.32-1ubuntu1 amd64 Advanced Configuration and Power Interface event daemon
ii adduser 3.118ubuntu2 all add and remove users and groups

If you want to see a more detailed list of installed packages, you can use the dpkg -L command.

This will show you information about the files installed to your system .

difference between apt and dpkg command

APT Uses dpkg to Install Packages in the backend. With APT, you can retrieve a file from a remote repository and install it, all in one command.

This saves you from the work of manually finding and downloading the package before installation.

With dpkg, you can only install local files you’ve already downloaded yourself. It can’t search remote repositories or pull packages from them.

dpkg is a lower-level tool that handles the installation and management of individual .deb packages, while apt is a higher-level tool that provides more advanced package management functionality and works with packages from the Ubuntu repositories.

list installed packages with rpm command in Redhat Linux

The third way to list installed packages in Linux is to use the rpm command.

This command is used for package management on Red Hat and CentOS systems.

To use it, type rpm -qa into your terminal. This will list all of the installed packages on your system, including their version numbers and dependencies.

This command will display a list of all packages installed on the system in alphabetical order.

Each line in the output will show the package name followed by the version and release number, separated by a hyphen (-) character.

openssl-1.0.2k-19.el7.x86_64
openssh-clients-7.4p1-21.el7.x86_64
openssh-server-7.4p1-21.el7.x86_64

You can also use the rpm command with additional options to display more information about the installed packages, such as the package architecture, installation date, and package signature.

For example, you can use the following command to display the package name, version, architecture, and installation date:

This command will display the output in the following format:

openssl-1.0.2k-19.el7 x Fri 29 Jan 2021 01:02:43 PM EST
openssh-clients-7.4p1-21.el7 x Fri 29 Jan 2021 01:02:44 PM EST
openssh-server-7.4p1-21.el7 x Fri 29 Jan 2021 01:02:45 PM EST

If you want to see a more detailed list of installed packages, you can use the “rpm -ql ” command.

This will show you information about the specified package, including its location on your system and the files that it contains.

list installed packages with yum command in Redhat Linux

The fourth way to list installed packages in Linux is to use the yum command. This command is used for package management on Fedora and CentOS systems.

To use it, type “yum list installed” into your terminal.

This command will display a list of all packages installed on the system in alphabetical order, along with their version and release numbers, as well as the package repository they were installed from. For example:

openssl.x86_64 1:1.0.2k-19.el7 @rhel-7-server-rpms
openssh-clients.x86_64 7.4p1-21.el7 @rhel-7-server-rpms
openssh-server.x86_64 7.4p1-21.el7 @rhel-7-server-rpms

We can combine the yum command with the grep command to filter the output and search for specific packages.

Читайте также:  Vmware for linux key

yum list installed | grep packagename

You can modify the search term to match your desired package name or keywords.

If you want to see a more detailed list of installed packages, you can use the “yum info ” command.

difference between rpm and yum command in Linux

The main difference between RPM and YUM is that RPM is a low-level package management tool for individual RPM packages, while YUM is a high-level tool that provides a more advanced and automated package management experience, including dependency resolution and package group management.

YUM (Yellowdog Updater, Modified) is a package manager for RPM (Red Hat Package Manager) based Linux systems.

It is designed to manage the installation, removal, and updating of software packages along with their dependencies.

YUM automates the process of downloading and installing RPM packages from software repositories.

When a user requests the installation of a package, YUM automatically resolves and downloads any dependencies required by that package, ensuring that all dependencies are met before proceeding with the installation.

This makes the installation process more streamlined and efficient, as users do not need to manually download and install dependencies themselves.

RPM manages these files, tracks package installations and provides basic dependency management. However, it does not automatically download and install dependencies like YUM.

list installed packages with dnf command in Redhat Linux

The dnf command is the successor to yum and can also be used to list installed packages in Linux. To use it, type “dnf list installed” into your terminal.

As you can see, there are a few different ways to list installed packages in Linux. Which method you use will depend on your particular system. But, now that you know how, it should be a breeze! Try out each of these methods and see which one works best for you.

Do you have a preferred method for listing installed packages in Linux? Let us know in the comments below! And, as always, thanks for reading!

David is a Cloud & DevOps Enthusiast. He has years of experience as a Linux engineer. He had working experience in AMD, EMC. He likes Linux, Python, bash, and more. He is a technical blogger and a Software Engineer. He enjoys sharing his learning and contributing to open-source.

howtouselinux.com is dedicated to providing comprehensive information on using Linux.

We hope you find our site helpful and informative.

Источник

3 Ways to List All Installed Packages in RHEL, CentOS and Fedora

One of the several duties of a system administrator is to install and manage software on a computer system-Linux in this case and in order keep track of installed/available software packages on your system, you can learn, and/or keep in mind a few quick commands.

In this article, we will explain how to list all installed rpm packages on CentOS, RHEL and Fedora distributions using four different ways.

1. Using RPM Package Manager

RPM (RPM Package Manager) formerly known as Red-Hat Package Manager is an open source, low-level package manager, which runs on Red Hat Enterprise Linux (RHEL) as well as other Linux such as CentOS, Fedora and UNIX systems.

You can compare it to DPKG Package Manager, the default packaging system for Debian and it’s derivatives such as Ubuntu, Kali Linux etc.

Читайте также:  Run usb linux in windows

The following command will print a list of all installed packages on your Linux system, the flag -q meaning query and -a enables listing of all installed packages:

List All Installed Packages in CentOS

2. Using YUM Package Manager

YUM (Yellowdog Updater, Modified) is an interactive, front-end rpm based, package manager.

You can use the yum command below to list all installed packages on your system, one advantage with this method is, it includes the repository from which a package was installed:

Yum - List All Installed Packages

3. Using YUM-Utils

Yum-utils is an assortment of tools and programs for managing yum repositories, installing debug packages, source packages, extended information from repositories and administration.

To install it, run the command below as root, otherwise, use sudo command:

# yum update && yum install yum-utils

Once you have it installed, type the repoquery command below to list all installed packages on your system:

Repoquery - List All Installed Packages

To list installed packages from a particular repository, use the yumdb program in the form below:

# yumdb search from_repo base

List All Installed Packages from Repository

Read more about package management in Linux:

In this article, we showed you how to list all installed packages on CentOS or RHEL four different ways. Share your thoughts concerning this article via the feedback section below.

Aaron Kili is a Linux and F.O.S.S enthusiast, an upcoming Linux SysAdmin, web developer, and currently a content creator for TecMint who loves working with computers and strongly believes in sharing knowledge.

Each tutorial at TecMint is created by a team of experienced Linux system administrators so that it meets our high-quality standards.

Parted Command in Linux

TLDR Man Pages for Linux Commands

apt-get Command Examples

Ubuntu apt-cache Commands

apt Command Examples

Funny Linux Commands

3 thoughts on “3 Ways to List All Installed Packages in RHEL, CentOS and Fedora”

Hi. Since the release of Fedora 22, in which DNF became the new default packaging tool and therefore obsoleted yum command on subsequent Fedora OSs, YUM was kept on those Fedora OSs for compatibility reason regarding Linux distributions forked from the Fedora project (Red Hat, Centos) that kept on using YUM, and will be kept for that very reason until they adopt it definitively. I had little time before your previous post as reply, to test a command of my investigation that also relies as well on expression ‘wc -l‘ . Such command is likely to cover all current active repositories on a system which is indeed exactly what I was aiming to. Here are for comparative purpose the following commands (by the way, there is no need to be executed as user root): ‘dnf list installed|wc -l‘, ‘rpm -qa|wc -l‘ respective outputs: 1619, 1590. As noticeable those outputs are incorrect which is no surprise after investigation. Their subsequent commands are inappropriate; they do not reflect exclusively the current active repositories on my system, which in that case are fedora, updates which respectively contain 54 801, 13 085 packages (subsequent results are available from another command too). Good luck though in your hobby. Reply

Hi. For Fedora, as output, the number (not the list) of all packages (available and installed) regarding a specific added repository . Regards. Reply

@Ricky You can pipe the output of the above commands to wc utility with the -l switch, to get the number instead of a list of installed packages, like this:

# yum list installed | wc -l OR # rpm -qa | wc -l

Источник

Оцените статью
Adblock
detector