I created .tgz file with tar czvf file command.then I ended up with a tgz file. I want to know the difference between it and tar.gz.
tar czvf file
You can unzip tar.gz or .tgz with:
tar -xzvf
and create with:
tar -czvf
It is absolutely the same