Teerpack
tar -xzf packed.tar.gz
foloinfo
tar -xzf packed.tar.gz
- To extract a .tar archive, use the tar -xf command followed by the archive file name.
- To create a new one use tar -czf followed by the archive name
and the files and directories you want to add to the archive.
tar -xvf file.tar etc/resolv.conf
tar -xzvf file.tar.gz etc/resolv.conf
tar -xjvf file.tar.bz2 etc/resolv.conf
#Extract files into a specific folder
tar -xf archive.tar.gz -C /home/linuxize/files