`.tar` archive can be unpacked as follows: ``` tar -xvf archive.tar ``` `-x` - extract selected archive `-v` - make output verbose `-f` - specifies filename to extract to a different location, use `-C` option: ``` tar -xvf archive.tar -C <path to another dir> ``` ### See also 1. [[How to archive a directory using tar?]]