Linux check all installed packages

Check if all listed packages are installed in bash

And now I’d like to check if they are all installed and only then run actual apt-get install . I know apt will automatically check whether the packages are already installed, but I’d like to place in a prompt to the user whether he wants to install missing libraries before doing so. So is there a nice way to check whether all listed libraries (in variable as above) are installed?

Doesn’t mean that you have to distribute the deb file or anything else beyond your internal company . just use the packaging systems dependency resolving. Heck, use the method on this q/a to create a fake package to get the deps installed — unix.stackexchange.com/questions/318117/…

5 Answers 5

The dpkg -s command returns the status of installed packages. For example, on my system, if I run it for firefox which is installed and nedit which isn’t, I get:

$ dpkg -s firefox Package: firefox Status: install ok installed Priority: optional Section: web Installed-Size: 94341 Maintainer: Clement Lefebvre Architecture: amd64 Version: 41.0~linuxmint1+betsy Replaces: firefox-l10n-af, firefox-l10n-ar, firefox-l10n-be, firefox-l10n-bg, firefox-l10n-bn-bd, firefox-l10n-ca, firefox-l10n-cs, firefox-l10n-da, firefox-l10n-de, firefox-l10n-el, firefox-l10n-en-gb, firefox-l10n-en-us, firefox-l10n-eo, firefox-l10n-es, firefox-l10n-et, firefox-l10n-eu, firefox-l10n-fa, firefox-l10n-fi, firefox-l10n-fr, firefox-l10n-fy, firefox-l10n-gl, firefox-l10n-gu, firefox-l10n-he, firefox-l10n-hi, firefox-l10n-hr, firefox-l10n-hu, firefox-l10n-id, firefox-l10n-is, firefox-l10n-it, firefox-l10n-ja, firefox-l10n-kn, firefox-l10n-ko, firefox-l10n-lt, firefox-l10n-lv, firefox-l10n-nb, firefox-l10n-nl, firefox-l10n-nn, firefox-l10n-pl, firefox-l10n-pt, firefox-l10n-pt-br, firefox-l10n-ro, firefox-l10n-ru, firefox-l10n-sk, firefox-l10n-sl, firefox-l10n-sq, firefox-l10n-sr, firefox-l10n-sv, firefox-l10n-th, firefox-l10n-tr, firefox-l10n-uk, firefox-l10n-zh Provides: gnome-www-browser, www-browser Breaks: firefox-l10n-en-us Description: The Firefox web browser The Mozilla Firefox Web Browser. $ dpkg -s nedit dpkg-query: package 'nedit' is not installed and no information is available Use dpkg --info (= dpkg-deb --info) to examine archive files, and dpkg --contents (= dpkg-deb --contents) to list their contents. 

So, you can use that command to check whether a package is installed:

#!/usr/bin/env bash run_install() < ## Prompt the user read -p "Do you want to install missing libraries? [Y/n]: " answer ## Set the default value if no answer was given answer=$## If the answer matches y or Y, install [[ $answer =~ [Yy] ]] && apt-get install $ > boostlibnames=("libboost-serialization1.55.0" "libboost-thread1.55.0" "libboost-date-time1.55.0" "libboost-signals1.55.0" "nedit") ## Run the run_install function if sany of the libraries are missing dpkg -s "$" >/dev/null 2>&1 || run_install 

Источник

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.

Читайте также:  Введите пароль администратора печати astra linux

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.

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.

Читайте также:  Which linux 128mb ram

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.

Читайте также:  Get linux version command

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.

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.

Источник

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