how to extratc tar code example
Example 1: uncompress tar
tar -xvf filename.tar
Example 2: unarchive tar acrhive
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