About 970,000 results
Open links in new tab
  1. What can be used to 'gzip' in Windows? - Super User

    But those that are unwilling to install anything and wish to use gzip or gunzip to compress or decompress single files can create a System.IO.Compression.GZipStream object in …

  2. How to obtain maximum compression with .tar.gz? - Super User

    The way i understand the use of tar + gzip is that tar is normally used to consolidate a grouping of files into a single file, then gzip is used to compress that file. I recently learned that tar ...

  3. How to specify level of compression when using tar -zcvf?

    The -9 in the gzip command line tells gzip to use the maximum possible compression level (default is -6). Edit: Fixed pipe command line based on @depesz comment.

  4. Between xz, gzip, and bzip2, which compression algorithim is the …

    Between xz, gzip, and bzip2, which compression algorithm gives the smallest file size and fastest speed when compressing fairly large tarballs?

  5. Unexpected end of file. Gzip compressed file - Super User

    gzip: file.txt.gz: unexpected end of file The correct way to represent an empty txt file would have been generating first the txt file, then compress it and, finally, decompress it:

  6. linux - Time to zip very large (100G) files - Super User

    The reason tar takes so little time compared to gzip is that there's very little computational overhead in copying your files into a single file (which is what it does). gzip on the otherhand, …

  7. linux - How do I uncompress vmlinuz to vmlinux? - Super User

    I have already tried uncompress, gzip, and all other solutions that come up as google results and these have not worked for me. To get just the image search for the GZ signature - 1f 8b 08 00. …

  8. How do I gunzip to a different destination directory? - Super User

    Ask gunzip to output to standard output and redirect to a file in that directory: gunzip -c file.gz > /THERE/file zcat is a shortcut for gunzip -c. If you want to gunzip multiple files iterate over all …

  9. How do you gunzip a file and keep the .gz file? - Super User

    The default behavior of gunzip is to delete the .gz file after it decompresses. How do I prevent it from deleting the file?? If this functionality is not included then is there an alternative pro...

  10. How can I run the "tar -czf" command in Windows? - Super User

    If GZip is specifically required, you may need to replace Step #2 with 3rd party "7Zip" and use 7Zip to compress the TAR to GZIP format, then rename the file extension to *.tar.gz.