home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #20 / NN_1992_20.iso / spool / comp / sys / amiga / datacomm / 6130 < prev    next >
Encoding:
Internet Message Format  |  1992-09-07  |  2.3 KB

  1. Path: sparky!uunet!mcsun!corton!enst!ulysse!sphinx!jeannet
  2. From: jeannet@sphinx.enst.fr (Olivier Jeannet)
  3. Newsgroups: comp.sys.amiga.datacomm
  4. Subject: Re: VLT Download troubles.
  5. Message-ID: <2512@ulysse.enst.fr>
  6. Date: 4 Sep 92 15:52:07 GMT
  7. References: <118305@muvms3.bitnet>
  8. Sender: news@ulysse.enst.fr
  9. Organization: Telecom Paris, France
  10. Lines: 35
  11.  
  12. In article <118305@muvms3.bitnet>, rcbi110@muvms3.bitnet (R. ALAN MONROE) writes:
  13. > I'm having trouble getting programs to my Amiga from this vax.  A friend of
  14. > mine can get files through his computer at work, but we've both tried using
  15. > kermit to send a file to our Amigas with no luck. When at the FTP site, I type > BINARY and then GET <filename>.  Then, I go to Kermit and type SEND <filename>
  16. > and I recieve a file by the at name on my Amiga at the right size, but it
  17. > doesn't work.  I've tried this with .lzh, .dms, and maybe even .lha files, and
  18. > I can't even uncompress them (I get CRC errors with both LhA and DMS.)  I'm
  19. > using VLT v5.517.
  20.  
  21. I have a (not very good) solution : I use VLT and I connect to an Unix system.
  22. To get binary files (typically .lzh files) from there, I uuencode them, I
  23. select the "Capture session" option on VLT, and I send the uuencoded file.
  24. After that I select "End capture", I go to CLI/Shell and I uudecode the
  25. received file.
  26.  
  27. Example :
  28. I select "Capture Session", generally I capture in the file "RAM:received" .
  29. Then I type at the Unix prompt : "uuencode snoopdos.lzh snoopdos.lzh" .
  30. Then I wait for the end of the file (I get a flow of ASCII caracters).
  31. Then I select "End Capture".
  32. Then I go to a Shell, type "uudecode received", and have my file snoopdos.lzh .
  33.  
  34. I am forced to do that because my modem only support 7 bits, so by uuencoding
  35. a binary file I just send printable ASCII. The drawback of this method is that
  36. it takes one third time more to transmit the file, because uuencode takes 3
  37. binary bytes and produces 4 printable ASCII bytes.
  38.  
  39. For a Vax system, I don't know if there is a uuencode (or equivalent) function,
  40. but you can have the sources (in C) for uuencode/uudecode or write your own.
  41. For example you can imagine a coding system with a better ratio than 3 -> 4
  42. caracters, considering that the printable caracters are in the range 32..126
  43. (from "SPACE" to "~").
  44.  
  45. I hope this can help.
  46. Olivier.
  47.