Deb 安装包出现 使用了未知的压缩

错误如下:

对成员 control.tar.zst 使用了未知的压缩

dpkg-deb: 错误: 归档 abc.1.0.0.ub16.arm64.deb 对成员 control.tar.zst 使用了未知的压缩,放弃操作
dpkg: 处理归档 abc.1.0.0.ub16.arm64.deb (--install)时出错:
 dpkg-deb --control 子进程返回错误状态 2
在处理时有错误发生:
 abc.1.0.0.ub16.arm64.deb

该问题是由于部分发行版不支持 zst 格式压缩文件导致。

可以通过在打包的过程中指定打包所使用的压缩算法为 xz 解决

dpkg-deb -Zxz -b build/ abc.1.0.0.ub16.arm64.deb

参考文献:

[1]. How do I build a .deb without zstd compression in Ubuntu 21.10? . Alan Graham . 2022.08 . stackoverflow . https://stackoverflow.com/questions/71196872/how-do-i-build-a-deb-without-zstd-compression-in-ubuntu-21-10

你可能感兴趣的:(debian,安装包)