Untar on Solaris
You have to gunzip
then untar
on Solaris. It should come with GNU tar:
gtar xzvf somefile.tar.gz
if that doesn't work:
gunzip -c somefile.tar.gz |tar xvf -
You have to gunzip
then untar
on Solaris. It should come with GNU tar:
gtar xzvf somefile.tar.gz
if that doesn't work:
gunzip -c somefile.tar.gz |tar xvf -