You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
dpkg
===
Debian Linux系统上安装、创建和管理软件包
## 补充说明
**dpkg命令** 是Debian Linux系统用来安装、创建和管理软件包的实用工具。
### 语法
```
dpkg(选项)(参数)
```
### 选项
```
-i: 安装软件包;
-r: 删除软件包;
-P: 删除软件包的同时删除其配置文件;
-L: 显示于软件包关联的文件;
-l: 显示已安装软件包列表;
--unpack: 解开软件包;
-c: 显示软件包内文件列表;
--confiugre: 配置软件包。
```
### 参数
Deb软件包: 指定要操作的.deb软件包。
### 实例
```
dpkg -i package.deb #安装包
dpkg -r package #删除包
dpkg -P package #删除包(包括配置文件)
dpkg -L package #列出与该包关联的文件
dpkg -l package #显示该包的版本
dpkg --unpack package.deb #解开deb包的内容
dpkg -S keyword #搜索所属的包内容
dpkg -l #列出当前已安装的包
dpkg -c package.deb #列出deb包的内容
dpkg --configure package #配置包
```
<!-- Linux命令行搜索引擎: https://jaywcjlove.github.io/linux-command/ -->