Chinese pages: correct Chinese punctuation (#5240)

This commit is contained in:
bl-ue
2021-08-02 04:41:09 -04:00
committed by GitHub
parent eaef3b4d21
commit 289e30dfb3
373 changed files with 1817 additions and 1810 deletions

View File

@@ -1,28 +1,28 @@
# apt
> 基于 Debian 的发行版上的软件包管理工具.
> 基于 Debian 的发行版上的软件包管理工具
> 更多信息: <https://manpages.debian.org/latest/apt/apt.8.html>.
- 更新可用软件包及其版本列表(推荐在运行其他 apt 命令前首先运行该命令):
- 更新可用软件包及其版本列表(推荐在运行其他 apt 命令前首先运行该命令)
`sudo apt update`
- 查找指定软件包:
- 查找指定软件包
`apt search {{软件包}}`
- 显示关于指定软件包的信息:
- 显示关于指定软件包的信息
`apt show {{软件包}}`
- 安装指定软件包或将指定软件包更新到最新版本:
- 安装指定软件包或将指定软件包更新到最新版本
`sudo apt install {{软件包}}`
- 移除指定软件包(使用`purge`可以同时移除其配置文件):
- 移除指定软件包(使用`purge`可以同时移除其配置文件)
`sudo apt remove {{软件包}}`
- 将所有已安装软件包更新到最新可用版本:
- 将所有已安装软件包更新到最新可用版本
`sudo apt upgrade`