41
53

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Linuxでインストール済みのパッケージを確認する

Posted at

パッケージ一覧を返すコマンド(yum list installed, rpm -qa)を
文字列検索するgrepコマンドにパイプで渡すことで探したいパッケージ名の一覧を得ることができる。

yumパッケージの検索

yum list installed | grep [パッケージ名]

rpmパッケージの検索

rpm -qa | grep [パッケージ名]

出力例

$rpm -qa | grep php
php56u-cli-5.6.25-1.ius.el7.centos.x86_64
php56u-pear-1.10.1-4.ius.el7.centos.noarch
php56u-mbstring-5.6.25-1.ius.el7.centos.x86_64
php56u-devel-5.6.25-1.ius.el7.centos.x86_64
php56u-pecl-jsonc-1.3.10-2.ius.el7.centos.x86_64
php56u-pdo-5.6.25-1.ius.el7.centos.x86_64
php56u-xml-5.6.25-1.ius.el7.centos.x86_64
php56u-pecl-jsonc-devel-1.3.10-2.ius.el7.centos.x86_64
php56u-mysqlnd-5.6.25-1.ius.el7.centos.x86_64
php56u-common-5.6.25-1.ius.el7.centos.x86_64
php56u-process-5.6.25-1.ius.el7.centos.x86_64
php56u-5.6.25-1.ius.el7.centos.x86_64
php56u-gd-5.6.25-1.ius.el7.centos.x86_64
41
53
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
41
53

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?