Centos

如何在 CentOS8 上降級 curl?

  • December 21, 2021

如何在 CentOS8 上降級 curl?

我想降級捲曲:7.61.1 => 7.29.0

我試過了:

yum downgrade curl

但沒有標記為降級的軟體包。

Last metadata expiration check: 0:15:47 ago on Mon 20 Dec 2021 10:48:20 PM EST.
Package curl of lowest version already installed, cannot downgrade it.
Error: No packages marked for downgrade.

也無法刪除它:

# rpm -e curl
error: Failed dependencies:
   curl is needed by (installed) rpm-4.14.2-9.el8.x86_64
   curl is needed by (installed) clevis-11-2.el8.x86_64

yum downgrade只能用於降級到儲存庫中可用的版本。Curl 7.29 於 2013 年發布,因此它在 CentOS 8 儲存庫中肯定不可用(但它在 CentOS 7 中可用)。從輸出中也可以看出rpm,rpm 本身使用 curl,因此刪除它確實是個壞主意。

如果您需要這個舊版本的 curl 進行測試或某些特定應用程序,我建議您從原始碼手動安裝它/opt/usr/local使用容器。

引用自:https://unix.stackexchange.com/questions/683285