尝试安装新的软件或升级现有的软件之前,需要确保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
时间: 2024-10-15 10:20:09