每天都会出现相同的更新

每天都会出现相同的更新

我每天都会收到软件包更新numix-icons-theme,该如何停止?

我已多次安装该更新,但它仍然不断出现。

答案1

首先,您应该注意到,这实际上是由于 PPA 中显示的每个日期都有另一个更新。但是,如果您仍然不想从此存储库获取更新,则应使用“保留”概念来停止从特定软件包进行更新。

您可以使用dpkgapt

使用 dpkg

暂停 numix-icons-theme 包

echo "numix-icons-theme hold" | sudo dpkg --set-selections

解除束缚

echo "numix-icons-theme install" | sudo dpkg --set-selections

要检查是否已完成保持,请运行以下命令:

dpkg --get-selections | grep "numix-icons-theme"

使用 apt

暂停 numix-icons-theme 包

sudo apt-mark hold numix-icons-theme

解除束缚

sudo apt-mark unhold numix-icons-theme

相关内容