home *** CD-ROM | disk | FTP | other *** search
/ ftp.eri.u-tokyo.ac.jp / 2014.03.ftp.eri.u-tokyo.ac.jp.zip / ftp.eri.u-tokyo.ac.jp / pub / DOS / tools / gzip124.exe / README.DOS < prev   
Text File  |  1993-08-19  |  2KB  |  47 lines

  1. Please read the generic README file first. Note in particular:
  2.  
  3.   copy gzip.exe to gunzip.exe and zcat.exe, or use "gzip -d" to decompress.
  4.   gzip386.exe runs much faster but only on 386 and above; it is compiled with
  5.   djgpp 1.10 available in directory omnigate.clarkson.edu:/pub/msdos/djgpp.
  6.  
  7. Read also gzip.doc, and in particular the description of the -N option
  8. which is very useful for MSDOS to restore the original file names that
  9. have been truncated. You can set it by default by adding
  10.     set GZIP=-N
  11. in your autoexec.bat file.
  12.  
  13. gzip386.exe includes the djgpp DOS extender (go32.exe) taken from
  14. djdev110.zip. If you already have djgpp 1.10 or later, you can remove
  15. go32.exe to get a smaller executable using:
  16.     exe2aout gzip386.exe
  17.     aout2exe gzip386
  18.     del gzip386
  19.  
  20. If you get the error message "DMPI: Not enough memory", you are using a
  21. memory manager which allocates physical memory immediately instead of
  22. allocating on demand when pages are used for the firt time. This problem
  23. occurs only when using DMPI. (Try under plain DOS without loading any memory
  24. manager in config.sys.) This problem will be fixed in future versions of
  25. djgpp using the COFF object format instead of a.out. (In the a.out format,
  26. the data segment is loaded at virtual address 0x400000 and the memory manager
  27. thinks that gzip requires more than 4 megs of memory.)
  28.  
  29. With gzip386.exe, you may have to set the TZ environment variable to
  30. get correct timestamps in the compressed files. For example in France
  31. I must set:
  32.    set TZ=MET-1
  33. The 16 bit version always uses local time.
  34.  
  35. For other problems related to DJGPP, read the documentation provided
  36. in djdev110.zip. If a problem occurs with gzip386.exe, check first
  37. if it occurs also with gzip.exe before reporting it.
  38.  
  39. The two programs gzip.exe and gzip386.exe give different compression ratios
  40. because the 16 bit version (gzip.exe) is compiled with -DSMALL_MEM to
  41. reduce memory usage. When compiled without this flag, all versions of
  42. gzip give exactly the same compression ratio. The 386 version runs faster
  43. under plain DOS without any memory manager than when using DMPI.
  44.  
  45. Please send comments and bug reports to Jean-loup Gailly <jloup@chorus.fr>
  46. or to bug-gnu-utils@prep.ai.mit.edu.
  47.