apt常用命令
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了apt常用命令相关的知识,希望对你有一定的参考价值。
尝试安装新的软件或升级现有的软件之前,需要确保apt缓存是最新的。
使用:
sudo apt-get update
来进行更新
在缓存中搜索可用的软件包。
apt-cache search game
在可用软件列表中搜索任何标题或描述包含“game”的软件
如果搜索的结果太多而在一个屏幕上无法显示完全,通过管道将输出传给less工具,让它暂停显示每屏的apt-cache输出。
apt-cache search game | less
安装软件
sudo apt-get install nethack-console
卸载软件
sudo apt-get remove nethack-console
remove会留下软件的配置文件等
sudo apt-get purge nethack-console
purge将删除所有相关文件
升级软件
将系统全部更新
sudo apt-get upgrade
要升级单个软件包
sudo apt-get install nethack-console
本文出自 “无觉的BLoG” 博客,请务必保留此出处http://wujue.blog.51cto.com/11999347/1894449
以上是关于apt常用命令的主要内容,如果未能解决你的问题,请参考以下文章