红联Linux门户
Linux帮助

ubuntu禁止更新指定软件

发布时间:2017-03-06 09:29:13来源:jianshu.com/u/4c6ed2800025作者:4c6ed2800025
由于vimperator在Firefox51并不能工作(现在(2017.2)插件作者已经更新可以正常使用了),所以将Firefox 的版本锁定在Firefox48;
 
下面是如何禁止ubuntu更新指定的软件:
 
设置firefox包的状态为 hold;
echo " firefox hold" | dpkg --set-selections
 
如果想恢复可以更新的状态(install),执行下面的命令;
echo "firefox install" | dpkg --set-selections
 
查询所有包的状态;
sudo dpkg --get-selections | more
 
查询状态为hold的所有包;
sudo dpkg --get-selections | grep hold
 
本文永久更新地址:http://www.linuxdiyf.com/linux/28932.html