I have upgrade my ubuntu from 21.04 to 21.10 and I have got the problem with install any packages after build it as deb file with this command
dpkg-deb -b DEB
I have got the compress file with tar.zst and that extension can not apply on dreambox
uses unknown compression for member 'control.tar.zst', giving up
How to build deb with tar.xz ?! Or How to download dpkg ?!!
debuild
there? Assuming you have taken care of the debian directory structure correctly, it should work. Without more details, we really cannot help you further. We may be able to help if you share a source code repository (in GitHub/GitLab) – Archisman Panigrahi Oct 26 '21 at 11:45I have got the compress file with tar.zst and that extension can not apply on dreambox
What do you mean by that? How did you get the .tar.zst file? Usually.pkg.tar.zst
files are for Arch Linux. – Archisman Panigrahi Oct 26 '21 at 11:48dpkg-deb -b DEB
so I have these files inside deb filecontrol.tar.zst
anddata.tar.zst
should be I have got like thiscontrol.tar.xz
anddata.tar.xz
.... So If I try to install the deb file I got this errordpkg-deb: error: archive '/tmp/test.deb' uses unknown compression for member 'control.tar.zst', giving up
– Fair Bird Oct 26 '21 at 11:56debuild
in the source directory, instead ifdpkg-deb -b DEB
? – Archisman Panigrahi Oct 26 '21 at 13:00debuild: fatal error at line 679: cannot find readable debian/changelog anywhere! Are you in the source code tree?
– Fair Bird Oct 26 '21 at 14:02tree
in your source directory. – Archisman Panigrahi Oct 27 '21 at 04:24. ├── DEBIAN │ └── control └── tmp └── installNcam.sh 2 directories, 2 files```
– Fair Bird Oct 27 '21 at 12:50