home *** CD-ROM | disk | FTP | other *** search
/ Between Heaven & Hell 2 / BetweenHeavenHell.cdr / 500 / 446 / ker.doc < prev    next >
Text File  |  1985-06-21  |  2KB  |  42 lines

  1. Generic KERMIT
  2.  
  3. This version of Kermit is fairly old but functional at least
  4. up to 1200 baud. It uses the BIOS calls to set the communication
  5. port. This has a few consequences:
  6. 1. It works on almost any PC lookalike.
  7. 2. The speed cannot be set from kermit; you must use the MODE
  8. command to set the COM1: speed before running Kermit and make
  9. your call; then Kermit will talk at the set speed.
  10. 3. The CD and CTS lights on your modem should be on. The BIOS
  11. will not output unless it thinks a connection is established
  12. already, so you may have to set modem switches to fool it. You'll
  13. need to make up a suitable modem cable if you have a machine that
  14. acts like a modem rather than a computer (e.g. the Chameleon)
  15. in its RS232 interface. Dialing a manual modem out and getting
  16. carrier up on the modem before starting to use Kermit works for
  17. the author.
  18. 4. ANSI.SYS should be loaded; its escape sequences are used to
  19. control screen output. Put DEVICE=ANSI.SYS in your CONFIG.SYS
  20. that's used at boot time. Not all positioning is right but it's
  21. close.
  22. 5. The SEND and RECEIVE commands are used to send and receive
  23. files to/from remote Kermit systems. Connect will give you a
  24. terminal connection. Works OK up to 1200 baud but because the
  25. BIOS isn't interrupt driven it'll drop characters if you go
  26. too fast. The STATUS command will try to tell you what commands
  27. are available and their present state. The HELP command will
  28. give a little more info.
  29. 6. No raw send or session logging is available here; to communicate
  30. and send files you MUST have a remote Kermit. These exist for most
  31. any machine in existence. You can write to Columbia Univ. Center
  32. for Computing Activities in New York City for more info. and copies
  33. of current Kermits. Also for a better manual.
  34. 6. Note that commands like SEND *.ASM or RECEIVE *.FOR work fine
  35. so you don't need a command per file. SEND *.* or RECEIVE *.*
  36. work too.
  37. 7. The backspace key sends the ASCII DEL character, not backspace.
  38. Use control-H for backspace. Function keys can be changed via
  39. key redefiners;  check out the public domain NEWKEY as a possible
  40. one.
  41.  
  42.