yum 更新到特定版本的軟體包

yum 更新到特定版本的軟體包

我正在使用 yum update 命令來更新 Linux 機器上的 openssl。

命令是

# yum update openssl

更新到特定版本

Say If I want to update this to the specific version like 1.0.0e.

我的機器上目前有 Openssl 0.9.8w。

是否可以這樣做。

請建議。

答案1

您只能更新到 yum 儲存庫中可用的 openssl 軟體包的任何版本。您可以透過輸入以下命令來檢查可用的 openssl 軟體包:

yum list available openssl

在RHEL5上,目前可用的版本是openssl-0.9.8e-22.el5_8.4。

在 RHEL6 上,目前版本是 openssl-1.0.0-27.el6。

如果您使用的是 RHEL5 或 CentOS5 計算機,則無法更新至僅適用於 RHEL6 或 CentOS6 的 openssl-1.0.0 軟體包。

相關內容