2
12

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

この記事は、サーバー1:RedHat6.7 に入っている特定のパッケージを サーバー2:RedHat6.6 にインストールする作業で検索方法がわからず、はまったので、その時の検索方法について紹介します。

今回は、例として、PHP の特定のパッケージを検索する方法を取り上げます。
まず、コマンド入力で以下のように入力して、パッケージ名を表示します。
#rpm -qa | grep php-*
php-cli-5.3.3-27.el6_5.x86_64
php-common-5.3.3-27.el6_5.x86_64
php-5.3.3-27.el6_5.x86_64

例えば、上記のように、パッケージ名が表示された場合、そのまま、パッケージ名で php-cli-5.3.3-27.el6_5.x86_64、php-common-5.3.3-27.el6_5.x86_64、php-5.3.3-27.el6_5.x86_64 と入力して、検索してもなかなか該当するダウンロードページに行くことができません。

そんな時に役に立つのが、以下に紹介するサイトです。
rpmパッケージ検索: http://rpm.pbone.net/
RPMSearch.png

例として、php-cli-5.3.3-27.e16_5.x86_64 を検索したい場合は、以下のように行います。
まず New look for FTP search. をチェックして、php-cli-5.3.3-27.e16_5.x86_64 とそのまま入力します。
次に、SEARCH ボタンをクリックします。

RPMSearch1.png

パッケージファイルがあると、以下のようにリンクが表示されます。
RPMSearch2.png

あとは、該当のパッケージをクリックすると、ダウンロードできます。

2
12
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
2
12

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?