Posts tagged compression
Zip files corrupted on download in internet explorer no FF or Chrome
Jul 20th
Aghh the joys of working with websites..
One step forward another step back.
Scenario
You have zipped files available for download from your site, blog, CMS etc. When you test the download process our in IE you get an error:
The Compressed (zipped) Folder is invalid or corrupted.
How to extract *.tgz or *.tar.gz
Jul 18th
To extract .tar.gz or .tgz files from terminal or via ssh
tar -zxvf file.tar.gz
or
tar -zxvf filename.tgz
I don’t know about anyone else but 99% of the time when faced with a compressed tar file I want to extract it to its own folder and view the progress of the decompression. So why it is that every time you seek the answer to this question do most linux support sites feel the need to explain over 1500 words every single possible switch and variant of the tar command coupled with the historical development and legacy options of the command. WE DON’T CARE.