APT-GET 和 APT-CACHE 包管理器的基本命令
Apt-get 是用于处理应用程序的命令行实用程序,可以被认为是使用 APT 库的其他工具的“后端”。Apt-cache 对 APT 的包执行各种操作。本文介绍了“APT-GET 和 APT-CACHE 包管理器的基本命令”。
Apt-get
要获取有关 apt-get 的更多选项,请使用以下命令:
$ apt-get -h
示例输出包含以下选项:
update - Retrieve new lists of packages upgrade - Perform an upgrade install - Install new packages (pkg is libc6 not libc6.deb) remove - Remove packages purge - Remove packages and config files autoremove - Remove automatically all unused packages dist-upgrade - Distribution upgrade, see apt-get(8) dselect-upgrade - Follow dselect selections build-dep - Configure build-dependencies for source packages clean - Erase downloaded archive files autoclean - Erase old downloaded archive files check - Verify that there are no broken dependencies source - Download source archives download - Download the binary package into the current directory changelog - Download and display the changelog for the given package
安装包
要使用 apt-get 安装包,请使用以下命令:
$ sudo apt-get install <package name>
升级软件包
要升级软件包,请使用以下命令:
$ sudo apt-get upgrade
删除未使用的包
要自动删除所有未使用的包,请使用以下命令:
$ sudo apt-get autoremove
删除已下载的归档文件
要删除已下载的归档文件,请使用以下命令:
$ sudo apt-get clean
删除旧的已下载归档文件
要删除旧的已下载归档文件,请使用以下命令:
$ sudo apt-get autoclean
验证损坏的依赖项
要验证是否存在损坏的依赖项,请使用以下命令:
$ sudo apt-get check
Apt-cache
要获取有关 apt-cache 的更多选项,请使用以下命令:
$ sudo apt-cache --help
apt-cache 的示例选项如下所示:
showsrc - Show source records search - Search the package list for a regex pattern depends - Show raw dependency information for a package rdepends - Show reverse dependency information for a package show - Show a readable record for the package pkgnames - List the names of all packages in the system policy - Show policy settings
获取包的依赖项
要获取包或源记录的依赖项,请使用以下命令:
$sudo apt-cache showsrc <packegename>
正则表达式模式的包列表
要获取正则表达式模式的包列表,请使用以下命令:
$sudo apt-cache search <packegename>
原始依赖信息
要显示包的原始依赖信息,请使用以下命令:
$ apt-cache depends <packegename>
显示反向依赖信息
要显示包的反向依赖信息,请使用以下命令:
$ apt-cache rdepends <packegename>
显示可读记录
要显示包的可读记录,请使用以下命令:
$ apt-cache show <packegename>
显示所有包的名称
要显示系统中所有包的名称,请使用以下命令:
$ apt-cache pkgnames
在本文中,我们学习了 APT-GET 和 APT-CACHE 包管理器的基本命令。在我们的下一篇文章中,我们将介绍更多基于 Linux 的技巧和提示。敬请关注。
广告