home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #20 / NN_1992_20.iso / spool / comp / os / linux / 10557 < prev    next >
Encoding:
Text File  |  1992-09-12  |  1.5 KB  |  39 lines

  1. Newsgroups: comp.os.linux
  2. Path: sparky!uunet!usc!sdd.hp.com!spool.mu.edu!snorkelwacker.mit.edu!bloom-picayune.mit.edu!athena.mit.edu!tytso
  3. From: tytso@athena.mit.edu (Theodore Y. Ts'o)
  4. Subject: Re: Transferring files over a serial port
  5. In-Reply-To: erc@unislc.uucp's message of Fri, 11 Sep 1992 23:57:58 GMT
  6. Message-ID: <TYTSO.92Sep12122541@tsx-11.mit.edu>
  7. Sender: news@athena.mit.edu (News system)
  8. Nntp-Posting-Host: tsx-11.mit.edu
  9. Organization: Massachusetts Institute of Technology
  10. References: <11SEP199215524779@cc.utah.edu> <1992Sep11.235758.7569@unislc.uucp>
  11. Date: Sat, 12 Sep 1992 16:25:49 GMT
  12. Lines: 25
  13.  
  14. In article <1992Sep11.235758.7569@unislc.uucp> erc@unislc.uucp (Ed Carp) writes:
  15.    There's kermit.  It's got a high packet overhead, since the packets are
  16.    small.....
  17.  
  18. The packet overhead doesn't have to be large....  You can adjust the
  19. packet size of kermit; and you can also turn on sliding windows, which
  20. can make a big difference when you are transferring files at any speed
  21. (but especially if you're using one of the slower speeds).  I use the
  22. following ~/.kermrc, which automatically configures kermit to do the
  23. right thing.  Note that you need to have this file on both ends of the
  24. kermit connection.  Also, the format of the commands in ~/.kermrc may have
  25. to change if you are using MS-Kermit as opposed to C-Kermit, which runs
  26. on Unix machines (including Linux).  Anyway, here it is:
  27.  
  28. set flow none
  29. set parity space
  30. set window 5
  31. set receive packet 512
  32. set send packet 512
  33. set block-check 3
  34. set file type binary
  35. set file name literal
  36.  
  37.                         - Ted
  38.  
  39.