Useful commands to extract packages:
To extract a *.tar file: | tar xvf package.tar |
To extract a *.cpio.Z file: | zcat package.cpio.Z | cpio -idmV |
To extract a *.gz file: | gunzip package.gz |
To extract *.tar.gz file: | guznip package.tar.gz; tar xvf package.tar |
To extract *.dstream.Z file: | uncompress package.dstream.Z; pkgtrans package.dstream . all |
To extract *.zip file: | unzip package.zip |
yeah sure, citi’g gonna give me a memo for this
For *.tar.gz, why not just use:
tar xvfz package.tar.gz
How about tar zxvf package.tar.gz for .tar.gz files?
yes, that is also true.. we can add that
This is how we do it Emma.. Name, URL and Comment.