DEB files are ar archives, which contain three files: debian-binary control.tar.gz data.tar.gz ar vx mypackage.deb tar -xzvf data.tar.gz ############################# the contents of data.tar.gz can be extracted from the DEB package in a one step process as shown below: ar p mypackage.deb data.tar.gz | tar zx