71
9
I need to open a file that sadly is only available in the .tar.gz
file format and I am using Windows 7. I can unzip the file using 7-zip
but after that I still have a .tar
file that I can't open in Windows.
Is there a way to open .tar.gz
files on Windows?
5
@Sparr:
– Jonas – 2010-11-27T20:19:17.050.tar.gz
is not supported by the most widely spread client operating system without third party software. And on added to that, when I use it in Linux is has a very bad usability with command flags that is very hard to remeber. See Untar, ungz, gz, tar - how do you remember all the useful options?yes, but it is supported by software on more platforms than any other archive format. I cannot name an OS or distribution thereof for which you cannot download untar and gunzip binaries. I can name plenty of platforms for which there are no binaries or even sources for unzip. – Sparr – 2010-11-28T00:17:07.567
1@Sparr: As I wrote in my question,
.tar.gz
is not supported in Windows without third party software. But.zip
is supported and I guess that.zip
is supported by Linux too. If the file had been available in the.zip
format, I hadn't asked this question. – Jonas – 2010-11-28T13:08:02.4633Perhaps I should rephrase. I believe you put "sadly" in the wrong place. It belongs before "using". – Sparr – 2010-11-29T04:33:17.337
Sadly, it's never been a problem... 7-zip always seemed to work. – Fiasco Labs – 2012-12-22T20:58:12.033
2Bad usability? There's a phrase for that: RTFM.
man tar
. All you need to remember is that at the end of the flags, you needf
for file. Here's the basics:tar cf arch.tar folder/
is c reating a f ile calledarch.tar
from the folderfolder/
.tar xf arch.tar
will e x tract from the f ilearch.tar
. This also works ontar.gz
files. No need for thez
flag there. – Braden Best – 2014-02-09T22:58:29.713