Home > Operation and Maintenance > CentOS > How to check whether a certain software is installed in centos

How to check whether a certain software is installed in centos

王林
Release: 2020-04-02 15:08:11
Original
3098 people have browsed it

How to check whether a certain software is installed in centos

The method is as follows:

1.

The operation command of the rpm software package is rpm. You can install, uninstall, query and other operations on the rpm package. Here We can use the -q parameter with the name of the software package to be queried to directly query. Let's take php as an example:

The command is:

rpm -q php
Copy after login

If not, it will prompt "package php is not installed"

2.

In addition to directly using the name of the software package to query, we can also query all installed software packages in the system and filter out the name of the software package we need to query. This This method is more suitable for situations where we don't know the full name, because we can use regular expressions to pass the name information vaguely. The

command is:

rpm -qa | grep php
Copy after login

or

rpm -qa | grep ph*
Copy after login

If it is not queried, it will not prompt, otherwise the installed software information will be listed.

3.

In addition to using the rpm command, we can also use the yum command to query. We can list the software that has been installed on the system and filter the required query content.

The command is:

yum list installed | grep php
Copy after login

Similarly, if this software is not installed, no relevant information will be prompted.

4.

Finally there is a simpler way to verify. We can try to directly call the command of the software. If the system exists, it will be executed normally, otherwise it will prompt Does not exist. If it does not exist, generally speaking, the software is not installed.

The command is:

python -V
php -v
Copy after login

How to check whether a certain software is installed in centos

Related tutorial recommendations: centos tutorial

The above is the detailed content of How to check whether a certain software is installed in centos. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template