您好,登錄后才能下訂單哦!
這篇文章主要介紹了linux怎么從apt升級中排除/保留/阻止特定軟件包,具有一定借鑒價值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。
apt-mark
用于將軟件包標記/取消標記為自動安裝。
hold
選項用于將軟件包標記為保留,以防止軟件包被自動安裝、升級或刪除。
unhold
選項用于取消先前面的設置,以允許重復執行所有操作。
運行以下命令以使用 apt-mark
命令保留指定的軟件包。
$ sudo apt-mark hold nanonano set on hold.
保留軟件包后,請運行以下 apt-mark
命令查看它們。
$ sudo apt-mark showholdnano
這表明在執行完整的系統更新時,不會升級 nano 包。
$ sudo apt update Reading 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.
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 update Reading 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
aptitude
命令是 Debian 及其衍生版本的基于文本的軟件包管理界面。
它允許用戶查看軟件包列表并執行軟件包管理任務,例如安裝、升級和刪除軟件包。它可以從可視界面或命令行執行操作。
運行以下命令,使用 aptitude
命令保留指定的軟件包。
$ sudo aptitude hold python3
保留某些軟件包后,請運行以下命令查看它們。
$ sudo dpkg --get-selections | grep "hold"或者$ sudo apt-mark showhold python3
這表明在執行完整的系統更新時,不會升級 python3 軟件包。
$ sudo apt update Reading 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
感謝你能夠認真閱讀完這篇文章,希望小編分享的“linux怎么從apt升級中排除/保留/阻止特定軟件包”這篇文章對大家有幫助,同時也希望大家多多支持億速云,關注億速云行業資訊頻道,更多相關知識等著你來學習!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。