I'm using a Sun Sparc System, aka Solaris. I have a .tar.gz file, and I can't figure out how to untar it. The command I usually use doesn't work:
tar -xzvf file.tar.gz
Anybody know how to do this? I can't be an answer anywhere!
I'm using a Sun Sparc System, aka Solaris. I have a .tar.gz file, and I can't figure out how to untar it. The command I usually use doesn't work:
tar -xzvf file.tar.gz
Anybody know how to do this? I can't be an answer anywhere!
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 -