Glam Prestige Journal

Bright entertainment trends with youth appeal.

When I try to open an .ipk file with Archive Manager on Ubuntu 16.04 I get "Archive type not supported.". This didn't happen on Ubuntu 12.04.

What alternatives do I have to inspect the contents of an .ipk?

0

2 Answers

dpkg -c <ipk_file>

or

dpkg-deb -c <ipk_file>

will help you list the contents of ipk archive.

.ipk files are archives containing among other things other archives named control.tar.gz and data.tar.gz. To extract the contents of an archive named archive-name.ipk change directories using cd to the directory containing archive-name.ipk and run the following commands:

ar -xv archive-name.ipk # results of this command are shown in the below screenshot
tar -zxf control.tar.gz
tar -zxf data.tar.gz 

enter image description here

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy