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.

61 lines
1.1 KiB

This file contains ambiguous Unicode characters!

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-deb
===
Debian Linux下的软件包管理工具
## 说明
**dpkg-deb命令** 是Debian Linux下的软件包管理工具它可以对软件包执行打包和解包操作以及提供软件包信息
## 选项
```
dpkg-deb(选项)(参数)
```
```
-c显示软件包中的文件列表
-e将主控信息解压
-f把字段内容打印到标准输出
-x将软件包中的文件释放到指定目录下
-X将软件包中的文件释放到指定目录下并显示释放文件的详细过程
-w显示软件包的信息
-l显示软件包的详细信息
-R提取控制信息和存档的清单文件
-b创建debian软件包
```
### 参数
文件:指定要操作的“.deb”软件包的全名或软件名
## 实例
解压程序文件:
```
dpkg-deb -x drcom-pum_1.0-0ubuntu1~ppa1~jaunty1_i386.deb drcom
```
解压控制文件:
```
dpkg-deb -e drcom-pum_1.0-0ubuntu1~ppa1~jaunty1_i386.deb drcom/DEBIAN
```
打包生成deb文件
```
dpkg-deb -b drcom drcom_1.4.8.2_i386.deb
```
查询deb包中的文件内容
```
dpkg-deb -c demo.deb
```