リポジトリを利用したパッケージの操作
パッケージリストの確認
パッケージの一覧(パッケージリスト)を確認する方法を説明します。
1.「リポジトリの設定」を実施します。
2.パッケージの一覧を表示します。
$ yum list
【参考】
- 「yum list installed」コマンドで、インストール済みのパッケージの一覧を表示します。
- 「yum list available」コマンドで、インストール可能なパッケージの一覧を表示します。
- 「yum list updates」コマンドで、アップデート可能なパッケージの一覧を表示します。
パッケージ情報の確認
パッケージ情報を確認する方法を説明します。
1.「リポジトリの設定」を実施します。
2.パッケージの情報を表示します。
記述書式は、「yum info <パッケージ名>」です。
今回の例では、<パッケージ名>を「sg3_utils」とします。
$ yum info sg3_utils Available Packages Name : sg3_utils Arch : x86_64 Version : 1.37 Release : 5.el7 Size : 640 k Description : Collection of Linux utilities for devices that use the SCSI command set. : Includes utilities to copy data based on "dd" syntax and semantics (called : sg_dd, sgp_dd and sgm_dd); check INQUIRY data and VPD pages (sg_inq); check : mode and log pages (sginfo, sg_modes and sg_logs); spin up and down : disks (sg_start); do self tests (sg_senddiag); and various other functions. : See the README, CHANGELOG and COVERAGE files. Requires the linux kernel 2.4 : series or later. In the 2.4 series SCSI generic device names (e.g. /dev/sg0) : must be used. In the 2.6 series other device names may be used as : well (e.g. /dev/sda). : : Warning: Some of these tools access the internals of your system : and the incorrect usage of them may render your system inoperable.
パッケージのインストール
1.「リポジトリの設定」を実施します。
2.パッケージをインストールします。
記述書式は、「sudo yum install <パッケージ名>」です。
今回の例では、<パッケージ名>を「sg3_utils」とします。
$ sudo yum install sg3_utils (省略) Install 1 Package(s) Upgrade 1 Package(s) Total download size: 552 k Is this ok [y/N]: y (省略) Complete! ─ インストールに成功すると、このように表示されます。
パッケージのアップデート
1.「リポジトリの設定」を実施します。
2.パッケージをアップデートします。
記述書式は、「sudo yum update <パッケージ名>」です。
今回の例では、<パッケージ名>を「sg3_utils」とします。
$ sudo yum update sg3_utils (省略) Upgrade 1 Package Total download size: 420 k Is this ok [y/N]: y (省略) Complete! ─ アップデートに成功すると、このように表示されます。