Ubuntu中用apt安装和卸载软件

Ubuntu中用apt安装和卸载软件

 

update:2019.03.24

以下为转载:

*****************************************************************************************************************************

linux下的软件基本都会需要其他的软件来依赖。
安装的时候当然一并就安装了。
apt-get remove xxx 就是删除xxx,对于依赖则是不管的。因为别的软件也会和此软件有相同的依赖,当然对依赖不能管了。

apt-get autoremove 就是来对付那些不再“依赖”的包, 自动检测并删除他们。

所以你可以先
apt-get remove xxx
然后,或者隔一段时间
apt-get autoremove


作者:知乎用户
链接:https://www.zhihu.com/question/22179077/answer/20539360

*******************************************************************************************************************************

 

 

 

 

查找软件

命令: apt-cache search keyword

查询软件状态

命令: apt-cache policy softname

引用: http://www.zishu.cn/blogview.asp?logID=684

安装软件

命令: apt-get install softname1 softname2 softname3……

卸载软件

命令: apt-get remove softname1 softname2 softname3……

卸载并清除配置 ( be careful, i have encounter that no desktop icon after apt-get remove --purge python)

命令: apt-get remove --purge softname1    

更新软件信息数据库

命令: apt-get update

进行系统升级

命令: apt-get upgrade

搜索软件包

命令: apt-cache search softname1 softname2 softname3……

Deb软件包相关安装与卸载

安装deb软件包

命令: dpkg -i xxx.deb

更多命令请参见:《 UbuntuHelp:AptGet/Howto 》

From: http://blog.csdn.net/ludonghai715/article/details/5657724

你可能感兴趣的:(software,skill)