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.

46 lines
769 B

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-split
===
Debian Linux中将大软件包分割成小包
## 说明
**dpkg-split命令** 用来将Debian Linux中的大软件包分割成小软件包它还能够将已分割的文件进行合并
## 选项
```
dpkg-split(选项)(参数)
```
```
-S设置分割后的每个小文件最大尺寸以字节为单位
-s分割软件包
-j<分块文件><分块文件>:把各个分块合并到一起
-I<分块文件>:显示分块文件的相关信息
-l列出不匹配的部分
-dscard<文件名>:忽略不匹配的部分
```
### 参数
软件包:指定需要分割的“.deb”软件包
## 实例
把foo.deb分割出N个大小为460KB的文件
```
dpkg-split -s foo.deb
```
合并分割文件:
```
dpkg-split -j "foo*"
```