TOP > Linux > Fedoraの技 > 001-100 > 074
rpmパッケージをインストールするには
RPMとはRed Hat Package Managerの略です。当初Red Hat Linuxで採用されたパッケージシステムで、現在ではFedoraを含めた多くのディストリビューションで採用されています。このRPMを利用することでパッケージ(ソフトウェア)を簡単にインストール、アップグレード、削除することが可能です。
新規インストールする際は下記のように実行します。"-i"オプションはインストール、"-v"は実行の詳細表示、"-h"は実行状態を"#"であらわすという意味になります。
# rpm -ivh which-2.16-4.i386.rpm
Preparing... ########################################### [100%]
1:which ########################################### [100%]
インストールの確認には"-qi"オプションを指定します。この場合にはバージョン番号以下は不要で、コマンド名のみ(この場合はwhich)を指定します。
# rpm -qi which
Name : which Relocations: /usr
Version : 2.16 Vendor: Red Hat, Inc.
Release : 4 Build Date: Sat 07 Aug 2004 06:22:46 PM JST
Install Date: Thu 31 Mar 2005 09:36:44 AM JST Build Host: porky.build.redhat.com
Group : Applications/System Source RPM: which-2.16-4.src.rpm
Size : 30677 License: GPL
Signature : DSA/SHA1, Thu 21 Oct 2004 02:59:54 AM JST, Key ID b44269d04f2a6fd2
Packager : Red Hat, Inc. <http://bugzilla.redhat.com/bugzilla>
URL : http://www.xs4all.nl/~carlo17/which/
Summary : Displays where a particular program in your path is located.
Description :
The which command shows the full pathname of a specified program, if
the specified program is in your PATH.
インストールされていないパッケージを指定すると下記のように表示されます。
# rpm -qi zope
package zope is not installed
2005-12-03 作成