How can you extract files from a .deb file without using the Debian package manager?

After installing a package using dpkg, you find that the package manager tools no longer function. You isolate the problem to a broken library and you have a copy of the fixed library in a Debian .deb file. How can you extract files from a .deb file without using the Debian package manager?
A. deb packages are compressed tar files with custom scripts.
Use GNU ‘tar’ to extract the file.
B. deb packages are redhat (rpm) packages with different fields.
Use ‘rpm’ to extract the file.
C. deb packages are simply gziped cpio files.
Use ‘gunzip’ to decompress the package and then use ‘cpio’ to extract the file.
D. deb packages use a proprietary format and the file cannot be extracted without specialized tools.
E. deb packages are ar archives with a special magic number.
Use ‘ar’ to extract the data member and then use GNU ‘tar’ to extract the file.

Download Printable PDF. VALID exam to help you PASS.

Leave a Reply

Your email address will not be published. Required fields are marked *


The reCAPTCHA verification period has expired. Please reload the page.