Alternatively, you can use therpm commandto check for the presence of a package. rpm -qa | grep <package-name> 3. Using Pacman (Arch Linux) OnArch Linux-based systems, such asManjaroandGaruda, thePacmanis the default package manager and to check if a specific package is installed or n...
If the package is installed, the command apt-show-versions will show version information about a specific package: apt-show-versions <package> In the snapshot below, we installed the command apt-show-versions and then we apply it to sudo command : Linux check package version If you like the...
This is a quick how-to post on checking the vendor of the installed rpms on a system. In some scenarios, a custom rpm package may not be compatible or supported on the specific system or environment. This post will help you identify the vendor of rpm which are either thrid party or not...
A while ago, we learned how tofind a package version in Linux. Today, we will see how to find if a package is installed or not in Linux and Unix operating systems. Finding installed packages in GUI mode is easy. All we have to do is to Just open the Menu or Dash, and enter the...
1. Display installed packages using pacman in Arch Linux Pacmanis the default package manager for Arch Linux and its derivatives like EndeavourOS and Manjaro Linux. To list all installed packages usingpacmanin Arch Linux and its variants, run: ...
Yum Check Installed Packages Yum is incredibly easy to use; like most package managers, it allows you to pass intuitive options. For example, to show the list of installed packages, we can use the command: sudoyuminstalled Similar to show available packages, the command above will show the ...
In this example, we will list files installed fromapache2web server: $ dpkg -L apache2 dpkg List Installed Packages Don’t forget to check out following useful articles for package management in Linux. 20 Useful ‘Yum’ Commands for Package Management ...
Check whether a specific package is installed in Ubuntu Since the list of installed packages is a huge one, it would be a better idea to use grep and filter the output for a certain package. apt list --installed | grep program_name ...
Ubuntu/Linux packages are interdependent as they are designed to complete a single task. This article shows how you can see the package dependencies. It is beneficial to know what packages are required or are being installed during software installation as it gives you more clarity over the insta...
Part of using a Linux-based operating system is using the package manager of your Linux distribution to download and install new software. On CentOS/RHEL-based distributions for example, the EPEL repositories provide you with almost everything you need. And often when a pre-installed repository ...