linux – 如何告诉apt永远不要升级特定的包?

前端之家收集整理的这篇文章主要介绍了linux – 如何告诉apt永远不要升级特定的包?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我更喜欢安装自己的Firefox版本.即使我稍后输入“apt-get update; apt-get upgrade”,我怎么能告诉apt永远不要尝试升级呢?

编辑:好的,所以dpkg -l firefox打印出来:

ii  firefox   3.0.3+nobinonly-0ubuntu2   Meta package for the popular mozilla web browser

所以我把它添加到我的首选项中:

Package: firefox
Pin: version 3.*
Pin-Priority: 1000

但apt-get升级仍会打印:

The following packages have been kept back:
    (nothing related to firefox)
The following packages will be upgraded:
    (blah blah blah)
    firefox firefox-3.0 firefox-3.0-branding firefox-3.0-gnome-support 
    firefox-gnome-support
    (blah blah blah)

我也尝试制作包“* firefox *”,但这也不起作用.

解决方法

将以下内容添加到/ etc / apt / preferences中
Package: iceweasel 
 Pin: version 3.0.6*
 Pin-Priority: 1000
原文链接:https://www.f2er.com/linux/399369.html

猜你在找的Linux相关文章