home *** CD-ROM | disk | FTP | other *** search
/ minnie.tuhs.org / unixen.tar / unixen / PDP-11 / Tools / Serial / uue.shar / Readme next >
Encoding:
Text File  |  1998-03-18  |  795 b   |  28 lines

  1.     uue & uud: Get binaries over to V7 via console
  2.     
  3. Quick hack to get binaries to V7 over 7-bit serial line. Assume you have
  4. a PDP-11 at one end running V7, and a 32-bit Unix at the other end, using
  5. some terminal emulation like kermit.
  6.  
  7. Manually send uud.c over to the PDP-11 and compile it. For example:
  8.  
  9. # ed
  10. a
  11. <manually enter uud.c code>
  12. .
  13. w uud.c
  14. q
  15. # cc -o uud uud.c
  16.  
  17. Now compile uue.c on your 32-bit Unix. To send binary file xyzzy, exit your
  18. terminal emulator, and run uue on the 32-bit Unix side:
  19.  
  20. % ./uue xyzzy > /dev/ttyd1        (assume /dev/ttyd1 is serial line)
  21.  
  22. uue will set the PDP-11 Unix to cbreak no echo, start up uud, send the
  23. binary file over, and restore the terminal state.
  24.  
  25. 2 text characters are sent for each binary byte, so it's not efficient.
  26.  
  27.     Warren Toomey    wkt@cs.adfa.oz.au
  28.