Ubuntu – How to extract CPGZ File

14.04file format

I have a file with cpgz extension and I want to extract it on Ubuntu 14.04. Is there any command that I can extract easily ?

Best Answer

Just to make things clearer: the answer by @Emre Koç works, but it might not be obvious where your archive name goes.

gzip -cd ARCHIVENAME.cpgz | cpio -idmv  

Replace ARCHIVENAME with the name of your archive. Remember to first cd into the directory where your archive is located.