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

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

yumで指定のパッケージをインストール、更新するには

個別のパッケージを指定してインストールや更新を行うことも出来ます。

"info"オプションでパッケージ名を指定することで詳細を知ることが出来ます。

# yum info nmap
〜略〜
Finished
Installed Packages
Name  : nmap
Arch  : i386
Version: 3.70
Release: 1
Size  : 1.6 M
Repo  : installed
Summary: Network exploration tool and security scanner

Description:
Nmap is a utility for network exploration or security auditing. It
supports ping scanning (determine which hosts are up), many port
scanning techniques (determine what services the hosts are offering),
and TCP/IP fingerprinting (remote host operating system
identification). Nmap also offers flexible target and port
specification, decoy scanning, determination of TCP sequence
predictability characteristics, reverse-identd scanning, and more.

指定のパッケージをインストールするには"install"オプションに続き、そのパッケージ名を指定します。パッケージ名は複数指定することもできます。

# yum install nmap

指定のパッケージのみを更新する場合には"update"オプションに続き、そのパッケージ名を指定します。パッケージ名は複数指定することもできます。

# yum update nmap

2005-12-03 作成