home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #16 / NN_1992_16.iso / spool / comp / os / os2 / programm / 3747 < prev    next >
Encoding:
Internet Message Format  |  1992-07-23  |  3.4 KB

  1. Path: sparky!uunet!elroy.jpl.nasa.gov!ucla-cs!rutgers!njitgw.njit.edu!hertz.njit.edu!dic5340
  2. From: dic5340@hertz.njit.edu (David Charlap)
  3. Newsgroups: comp.os.os2.programmer
  4. Subject: Re: How to install gccbin21.zoo
  5. Message-ID: <1992Jul23.201608.24607@njitgw.njit.edu>
  6. Date: 23 Jul 92 20:16:08 GMT
  7. References: <1992Jul22.094409.433@weyrich.UUCP>
  8. Sender: news@njit.edu
  9. Distribution: usa
  10. Organization: New Jersey Institute of Technology, Newark, N.J.
  11. Lines: 72
  12. Nntp-Posting-Host: hertz.njit.edu
  13.  
  14. In article <1992Jul22.094409.433@weyrich.UUCP> tnet.com!weyrich!orville writes:
  15. >Hi --
  16. >
  17. >I just got gccbin21.zoo from hobbes. When I tried to un-zoo it with my
  18. >(DOS-based) zoo program, I got a message that it needed "zoo 2.1" to 
  19. >do the extraction. The most recent version of zoo I can find is 2.01.
  20. >
  21. >So -- where do I look for zoo 2.1?
  22.  
  23. Go to ftp-os2.nmsu.edu.  The file you want is zoo210.exe.  It is a
  24. self-extracting archive with zoo 2.1.  I think it's located in
  25. /pub/os2/all/archivers. 
  26.  
  27. >Also, I noticed that the file names appear to have been zoo'ed with
  28. >case sensitive names. Can they be successfully extracted by ANY DOS-based
  29. >zoo? If not, then I have the additional dilemma of how I can move the
  30. >files to my OS/2 platform -- gccbin21.zoo is too big to fit on a single
  31. >floppy, and I don't have kermit or any other tools on my OS/2 platform yet.
  32. >All I do have is the gccbin21.zoo file sitting on my unix platform (which has
  33. >DOS-MERGE, so I can run dos applications).
  34.  
  35. The case-sensitivity shouldn't be a problem.  A DOS-based zoo may
  36. convert it all to upper-case, but that's OK, since HPFS doesn't use
  37. the case for anything - it just stores it to make things look better.
  38. If you've an OS/2-based zoo extracter, the case will be preserved.
  39.  
  40. Yes, the file is too big for a floppy.  There are many ways to get
  41. this home.  One way is to use a unix zoo command to unpack it on Unix
  42. and make smaller archives there.
  43.  
  44. Another way is to write a small c program to read the file (in binary
  45. mode) and write it out to multiple files of, say, 1MB each.  Once you
  46. have them on your OS/2 machine, you can just do a
  47.  
  48.       COPY /b part1+part2+part3 gccbin21.zoo
  49.  
  50. to combine them together again.
  51.  
  52. The third choice (what I did) requires that you download a UU-decoder
  53. for OS/2.  There exists on one ftp-os2.nmsu.edu.  Look for uucode.zoo
  54. or uuxxcode.zoo in the /pub/os2/all/archivers directory.
  55.  
  56. Anyhow, the third way involves uu-encoding the entire file into ASCII
  57. text using the command:
  58.  
  59.       uuencode gccbin21.zoo gccbin21.zoo > gccbin21.zoo.uue
  60.  
  61. From there, you split the file into multiple parts of smaller size.
  62. The Unix split command will work here.  You can only use split on text
  63. files, so you couldn't use it with method 2.  Anyhow, I find that
  64. 16000 lines produces files of about 950K.  Split it with the following
  65. command:
  66.  
  67.       split -16000 gcc21bin.zoo.uue gcc21bin.
  68.  
  69. This will produce multiple files with names like: gcc21bin.aa,
  70. gcc21bin.ab, etc...  Download these.  Combine them together under OS/2
  71. with the following command:
  72.  
  73.       copy gcc21bin.aa+gcc21bin.ab+... gcc21bin.zoo.uue
  74.  
  75. If you don't have HPFS, you can replace the gcc21bin.zoo.uue with a
  76. simple gcc21bin.uue.
  77.  
  78. This being done, you can then run your uudecoder on the output to get
  79. gcc21bin.zoo.  Proceed to extract as you see fit.
  80.  
  81. -- 
  82.    |)  David Charlap           "I don't even represent myself
  83.   /|_  dic5340@hertz.njit.edu   sometimes so NJIT is right out!.
  84.  ((|,)
  85.   ~|~  Hi! I am a .signature virus, copy me into your .signature file.
  86.