Standard format to extract this tarball file is:
tar xvf filename.tar
If the tarball has also been gzipped (compressed), you can use the following command:
tar xvfz filename.tar.gz
If you only want certain directories from the tarball, do this:
tar xvzf filename.tar.gz */dir.you.want/*
If you have a .tar.bz2 file, then you need bzip2 installed (/usr/ports/archivers/bzip2), and you issue this command:
tar yxf filename.tar.bz2
0 comments
Post a Comment