I got the error file format not recognized
while executing this command: ar x *******.deb
to extract the contents of a Debian package. How can I fix this?
I use Ubuntu 22.04.
I got the error file format not recognized
while executing this command: ar x *******.deb
to extract the contents of a Debian package. How can I fix this?
I use Ubuntu 22.04.
sudo dpkg -i package.deb
should installpackage
if that is what you want.ar x package.deb
will simply extract the filescontrol.tar.gz
data.tar.xz
debian-binary
into the current directory. -- If something else is happening I think your deb file is corrupted. – sudodus Jul 18 '22 at 06:21