Extract contents of .deb files Jun 9, 2008 DEB files are ar archives, which contain three files: debian-binary control.tar.gz data.tar.bz2 First we need to extract the ar archive: $ ar vx package.deb Then extract the contents of data.tar.bz2: $ tar xvfp data.tar.bz2