Home System Tutorial LINUX Check if Linux has a specific package installed

Check if Linux has a specific package installed

Dec 31, 2023 pm 03:01 PM
software package

There are many ways to install software in Linux systems, so there is no universal method to check whether a certain software has been installed. However, I have summarized some types below for your reference:

1. If the rpm package is installed, you can use rpm -qa to see it. If you want to find out whether a certain software package is installed, use rpm -qa | grep "the name of the software or package".

rpm -qa | grep ruby
Copy after login

2. If installed with deb package, you can use dpkg -l to see it. If you are looking for a specific software package, use dpkg -l | grep "the name of the software or package";

dpkg -l | grep ruby
Copy after login

3. If installed using the yum method, you can use yum list installed to search. If you are looking for a specified package, add | grep "software name or package name" after the command;

yum list installed | grep ruby
Copy after login

4. If you compile and install the source code package yourself, such as .tar.gz or tar.bz2, you can only check whether the executable file exists.

Neither of the above two methods can see the package installed in this source code form. If installed as the root user, the executable programs are usually in the /sbin:/usr/bin directory.

There are other methods, please indicate.

The following are the additions from other netizens

1. If the rpm package is installed, you can use rpm -qa to see it. If you want to find out whether a certain software package is installed, use rpm -qa | grep "the name of the software or package"

2. Installed with deb package, you can use dpkg -l to see it. If you are looking for a specific software package, use dpkg -l | grep "the name of the software or package"

3. If installed using the yum method, you can use yum list installed to search. If you are looking for a specified package, use yum list installed | grep "software name or package name"

The above is the detailed content of Check if Linux has a specific package installed. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Check if Linux has a specific package installed Check if Linux has a specific package installed Dec 31, 2023 pm 03:01 PM

There are many ways to install software in Linux systems, so there is no universal method to check whether a certain software has been installed. However, below I have summarized some types for your reference: 1. For rpm package installation, you can use rpm -qa sees that if you want to find out whether a certain software package is installed, use rpm-qa|grep "the name of the software or package". rpm-qa|grepruby2, installed with deb package, can be seen with dpkg-l. If you are looking for a specified software package, use dpkg-l|grep "the name of the software or package"; if you install it using dpkg-l|grepruby3 or yum method, you can use yuml

Detailed tutorial on installing gcc on Linux system. Detailed tutorial on installing gcc on Linux system. Feb 19, 2024 am 11:18 AM

Here is a detailed tutorial for installing GCC (GNUCompilerCollection) on Linux systems: Update package list: Execute the following command in the terminal to ensure that the package list of your system is up to date: sudoaptupdate Install GCC: Continue executing the following in the terminal Command to install GCC and its related tools: sudoaptinstallbuild-essentialbuild-essential is a package that contains GCC and other build tools that will meet most basic compilation needs. Verify installation: Once the installation is complete, you can verify that GCC was installed successfully. Execute the following command in the terminal to check the version of GCC

Briefly understand the techniques for querying software package information in Linux systems Briefly understand the techniques for querying software package information in Linux systems Feb 24, 2024 am 10:27 AM

In Linux systems, querying software package information is a very common and practical operation, especially when installing, uninstalling, and updating software packages. By querying software package information, we can understand important information such as the version, dependencies, and installation paths of the software package, helping us manage the system more efficiently. This article will introduce several ways to easily master querying software package information under Linux systems, and provide specific code examples. Use apt command (for Debian and Ubuntu systems) in Debian and Ubun

What is the role of yum in Linux? What are its main functions? What is the role of yum in Linux? What are its main functions? Feb 19, 2024 pm 05:30 PM

Everyone may be familiar with yum in Linux systems, but beginners may not know it. This article will introduce what yum is and its functions. Please read on. In Linux, yum is a package manager used to manage and install software packages. It is the abbreviation of YellowdogUpdater, Modified. It was originally designed for the RedHat series of distributions, but is now also used by many other RPM-based Linux distributions. The main functions of the YUM command include: YUM is a software package management tool that can be used to find, install, update and uninstall software packages. Through the YUM command, users can easily manage software packages on the system and automatically resolve differences between software packages.

[Linux Tools]-yum/gdb usage tutorial! [Linux Tools]-yum/gdb usage tutorial! Mar 07, 2024 am 11:10 AM

yum is a commonly used software package management tool, and gdb is a powerful debugging tool. The following are their usage tutorials: yum usage tutorial: Install software packages: Use the yuminstall command to install software packages. For example, to install the Apache web server, you can run yuminstallhttpd. Upgrade software packages: Use the yumupdate command to upgrade installed software packages. For example, running yumupdate will upgrade all packages in the system. Delete a software package: Use the yumremove command to delete a software package. For example, to remove the Apache Web server, you can run yumremovehttpd. Search for packages: use yumsear

Can't find yum and installation method in Ubuntu system! Can't find yum and installation method in Ubuntu system! Mar 02, 2024 pm 01:07 PM

yum is the package manager in the RedHat series distributions (such as RHEL and CentOS), while Ubuntu uses another package manager called apt (AdvancedPackageTool). In Ubuntu systems, you can use the apt command to manage software packages. Following are the basic steps to install packages in Ubuntu system: Update package index Before performing any installation operation, first execute the following command to update the package index: sudoaptupdate Installing a package Use the following command to install a specific package: sudoaptinstallpackage_name will "package_name&#822

Where is the default installation location for npm packages in Windows 10? Where is the default installation location for npm packages in Windows 10? Sep 18, 2023 am 11:25 AM

Directory path to a locally installed NPM package for a specific project on Windows: Those interested in installing packages using npm can run the given command in their command prompt after navigating to their project directory. npminstallpackage-name When we execute the above command, it will download the specified package and all required dependencies from the npm registry to install into a folder named node_modules. This will be created in the current project's working directory. For example, let's say we are building some Node.js applications and our project directory name is: my-first-app. Then first we use command prompt to switch to that directory and then install some software

Upgrading Python packages using Pip Upgrading Python packages using Pip Apr 13, 2023 pm 07:07 PM

When was the last time you updated a Python package installed via Pip? Most users tend to forget that these Python packages also need to be updated manually since just updating the system repository does not work for the packages. So let’s take a moment to look at how to use Pip to update older Python packages. How to use Pip to upgrade Python packages Pip (Pip Installs Packages) is a command line utility for managing Python packages. You can install Python software using Pip

See all articles