Chinaunix首页 | 论坛 | 博客
  • 博客访问: 405898
  • 博文数量: 61
  • 博客积分: 1991
  • 博客等级: 上尉
  • 技术积分: 492
  • 用 户 组: 普通用户
  • 注册时间: 2007-05-08 12:28
文章分类

全部博文(61)

文章存档

2011年(5)

2010年(21)

2009年(3)

2008年(4)

2007年(28)

我的朋友

分类: LINUX

2011-05-13 09:19:27

Ubuntu 默认的的Firefox "捆绑"了一些gnome 插件,想完美卸载的需要把相关插件也一同下载掉。有的人不是很喜欢firefox 所以想卸载掉,这是可执行以下代码:

sudo apt-get autoremove firefox firefox-branding firefox-gnome-support ubufox     //保留配置文件

sudo apt-get purge firefox firefox-branding firefox-gnome-support ubufox     //配置文件也一起删掉

演示操作代码:
  1. ishagua@ishagua-laptop:~$ sudo apt-get --purge remove firefox firefox-branding firefox-gnome-support ubufox
  2. 正在读取软件包列表... 完成
  3. 正在分析软件包的依赖关系树       
  4. 正在读取状态信息... 完成       
  5. 下列软件包将被【卸载】:
  6.   firefox* firefox-branding* firefox-gnome-support* ubufox*
  7. 升级了 0 个软件包,新安装了 0 个软件包,要卸载 4 个软件包,有 189 个软件包未被升级。
  8. 解压缩后将会空出 31.0MB 的空间。
  9. 您希望继续执行吗?[Y/n]Y
  10. (正在读取数据库 ... 系统当前共安装有 118176 个文件和目录。)
  11. 正在卸载 firefox-gnome-support ...
  12. 正在卸载 ubufox ...
  13. 正在卸载 firefox ...
  14. 正在清除 firefox 的配置文件 ...
  15. 正在卸载 firefox-branding ...
  16. 正在处理用于 desktop-file-utils 的触发器...
  17. 正在处理用于 python-gmenu 的触发器...
  18. Rebuilding /usr/share/applications/desktop.zh_CN.utf8.cache...
  19. 正在处理用于 python-support 的触发器...
  20. ishagua@ishagua-laptop:~$
复制代码

阅读(5170) | 评论(1) | 转发(0) |
给主人留下些什么吧!~~

wuque1232012-06-04 10:06:24

不错,实用。