從 apt 升級中排除/保留/阻止特定軟體包的三種方法

2020-03-13 10:40:00

有時,由於某些應用依賴性,你可能會意外更新不想更新的軟體包。這在全系統更新或自動包升級時經常會發生。如果發生這種情況,可能會破壞應用的功能。這會造成嚴重的問題,你需要花費大量時間來解決問題。

如何避免這種情況?如何從 apt-get 更新中排除軟體包?

如果你要從 Yum Update 中排除特定軟體包,請參考這篇。

是的,可以在 Debian 和 Ubuntu 系統上使用以下三種方法來完成。

我們將分別詳細展示。

方法 1:如何使用 apt-mark 命令排除 Debian/Ubuntu 系統上的軟體包更新

apt-mark 用於將軟體包標記/取消標記為自動安裝。

hold 選項用於將軟體包標記為保留,以防止軟體包被自動安裝、升級或刪除。

unhold 選項用於取消先前面的設定,以允許重複執行所有操作。

執行以下命令以使用 apt-mark 命令保留指定的軟體包。

$ sudo apt-mark hold nanonano set on hold.

保留軟體包後,請執行以下 apt-mark 命令檢視它們。

$ sudo apt-mark showholdnano

這表明在執行完整的系統更新時,不會升級 nano 包。

$ sudo apt updateReading package lists… DoneBuilding dependency treeReading state information… DoneCalculating upgrade… DoneThe following packages have been kept back:  nano0 upgraded, 0 newly installed, 0 to remove and 1 not upgraded.

執行以下命令,使用 apt-mark 命令取消保留 nano 包。

$ sudo apt-mark unhold nanoCanceled hold on nano.

方法 2:如何使用 dpkg 命令在 Debian/Ubuntu 系統上排除軟體包更新

dpkg 命令是一個 CLI 工具,用於安裝、構建、刪除和管理 Debian 軟體包。dpkg 的主要且更使用者友好的前端是 aptitude

執行以下命令使用 dpkg 命令阻止給定的軟體包。

語法:

$ echo "package_name hold" | sudo dpkg --set-selections

執行以下 dpkg 命令以保留 apache2 包。

$ echo "apache2 hold" | sudo dpkg --set-selections

保留軟體包後,請執行以下命令檢視它們。

$ sudo dpkg --get-selections | grep "hold"apache2                        hold

它會顯示在執行完整的系統更新時,不會升級 apache2包。

$ sudo apt updateReading package lists… DoneBuilding dependency treeReading state information… DoneCalculating upgrade… DoneThe following packages have been kept back:  apache20 upgraded, 0 newly installed, 0 to remove and 1 not upgraded.

執行以下命令,使用 dpkg 命令取消對指定軟體包的保留。

語法:

$ echo "package_name install" | sudo dpkg --set-selections

執行以下命令,使用 dpkg 命令取消保留 apache2 包。

$ echo "apache2 install" | sudo dpkg --set-selections

方法 3:如何使用 aptitude 命令排除 Debian/Ubuntu 系統上的軟體包更新

aptitude 命令是 Debian 及其衍生版本的基於文??本的軟體包管理介面。

它允許使用者檢視軟體包列表並執行軟體包管理任務,例如安裝、升級和刪除軟體包。它可以從可視介面或命令列執行操作。

執行以下命令,使用 aptitude 命令保留指定的軟體包。

$ sudo aptitude hold python3

保留某些軟體包後,請執行以下命令檢視它們。

$ sudo dpkg --get-selections | grep "hold"或者$ sudo apt-mark showholdpython3

這表明在執行完整的系統更新時,不會升級 python3 軟體包。

$ sudo apt updateReading package lists… DoneBuilding dependency treeReading state information… DoneCalculating upgrade… DoneThe following packages have been kept back:  python30 upgraded, 0 newly installed, 0 to remove and 1 not upgraded.

使用 aptitude 命令執行以下命令以解除對 python3 軟體包的保留。

$ sudo aptitude unhold python3