Fedora Core 500の技
Valid XHTML 1.0!
正当なCSSです!

TOP > Linux > Fedoraの技 > 001-100 > 077

rpmパッケージの詳細を調べるには

rpmコマンドでは"-qi"オプションを利用することでパッケージの詳細を表示することが出来ます。

下記はtcshコマンドの詳細を表示した例です。

# rpm -qi tcsh
Name    : tcsh             Relocations: (not relocatable)
Version   : 6.13               Vendor: Red Hat, Inc.
Release   : 9               Build Date: Wed 22 Sep 2004 06:26:53 AM JST
Install Date: Tue 29 Mar 2005 09:45:05 AM JST   Build Host: tweety.build.redhat.com
Group    : System Environment/Shells   Source RPM: tcsh-6.13-9.src.rpm
Size    : 1540698             License: distributable
Signature  : DSA/SHA1, Thu 21 Oct 2004 02:52:12 AM JST, Key ID b44269d04f2a6fd2
Packager  : Red Hat, Inc. <http://bugzilla.redhat.com/bugzilla>
URL     : http://www.tcsh.org/
Summary   : An enhanced version of csh, the C shell.
Description :
Tcsh is an enhanced but completely compatible version of csh, the C
shell. Tcsh is a command language interpreter which can be used both
as an interactive login shell and as a shell script command processor.
Tcsh includes a command line editor, programmable word completion,
spelling correction, a history mechanism, job control, and a C

このオプションはインストール済のパッケージの情報しか表示しません。

xpdfがインストールされていないために表示されない例。

# rpm -qi xpdf
package xpdf is not installed

この場合、"-p"オプションでパッケージファイルを指定することで詳細を表示させることが可能です。

# rpm -qi -p xpdf-3.00-10.4.i386.rpm

2005-12-03 作成