Attila Csosz <[EMAIL PROTECTED]> writes:
> How could I extract ( like unzip ) a deb package to a directory?
> I wouldn't install it. I'd like to get a file from it.

*.deb files are simply ar archives, like *.a libraries. To extract:

ar x file.deb

The files are actually contained in a gzip'd tar file within the deb
file. 

Gary

Reply via email to