home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19940919-19941004 < prev    next >
Text File  |  2020-01-01  |  1MB  |  21,981 lines

  1. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!library.ucla.edu!ihnp4.ucsd.edu!munnari.oz.au!news.uwa.edu.au!newsman.csu.murdoch.edu.au!csuvax1!anson
  2. From: anson@csuvax1.csu.murdoch.edu.au (Binh Anson)
  3. Newsgroups: comp.protocols.kermit.misc
  4. Subject: [HELP] Slow Kermit Transfer ?!
  5. Date: 19 Sep 1994 11:09:16 GMT
  6. Lines: 13
  7.  
  8.  
  9. G'day,
  10.  
  11. I used Kermit 3.13 for my PC, my modem has a speed of 14.4 K, but I found that the downloading rate from the mainframe to my PC was still very slow! I tried Telix with SZ (Z-Modem Protocol), and it was very fast compared to Kermit. Is there a way to accelerate Kermit transfer ?
  12.  
  13. Thanks,
  14. Binh.
  15. --
  16. -------------------------------------------------------------------------
  17.   Binh Anson            FAX: (61-9) 244 4726 (Perth, Australia)
  18.                 Email: anson@csuvax1.murdoch.edu.au
  19. -------------------------------------------------------------------------
  20.         
  21. Path: news.columbia.edu!usenet
  22. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  23. Newsgroups: comp.protocols.kermit.misc
  24. Subject: Re: [HELP] Slow Kermit Transfer ?!
  25. Date: 19 Sep 1994 14:15:42 GMT
  26. Organization: Columbia University
  27. Lines: 153
  28. Distribution: World
  29. References: <35jrgsINNdq2@newsman.csu.murdoch.edu.au>
  30. Keywords: Kermit, Performance, Slow, Fast
  31.  
  32. In article <35jrgsINNdq2@newsman.csu.murdoch.edu.au>
  33. anson@csuvax1.csu.murdoch.edu.au (Binh Anson) writes:
  34. > I used Kermit 3.13 for my PC, my modem has a speed of 14.4 K, but I found
  35. > that the downloading rate from the mainframe to my PC was still very slow!
  36. > I tried Telix with SZ (Z-Modem Protocol), and it was very fast compared to
  37. > Kermit. Is there a way to accelerate Kermit transfer ?
  38. Yes.
  39.  
  40. But first, welcome to comp.protocols.kermit.misc.  This is the first
  41. day of operation of this unmoderated newsgroup.  I hope it will prove
  42. beneficial to all Kermit users.
  43.  
  44. To answer your question, somewhat longwindedly, since this Question is
  45. Asked so Frequently :-) ...
  46.  
  47. Zmodem is optimized for speed on the assumption that it has a clear 8-bit
  48. transparent channel with no blockages (small buffers, etc), and so, out of
  49. the box, when it works it goes fast.  The tradeoff is that it often does
  50. not work at all, in which case you have to configure it in various ways --
  51. escaping of control characters, changing window size, etc.  In some cases
  52. it can't be made to work at all, either because of the nature of the
  53. connection, or because of one or both of the computers on the two ends.
  54.  
  55. Kermit, on the other hand, is configured to work -- i.e. transfer files --
  56. out of the box, even under hostile conditions.  By default, it does not 
  57. assume that control characters pass through transparently, nor that large
  58. buffers are available.  It does not even assume a full-duplex connection.
  59. The tradeoff is speed.
  60.  
  61. In a perfect world, there would be no tradeoffs, but the world is far from
  62. perfect.  7-bit transmission is still extremely common, small buffers are
  63. very common, even in modern terminal servers and other communications
  64. processors, flow control is rarely implemented correctly and effectively,
  65. telephone lines are still noisy, and we still have a bewildering array
  66. of communication methods needed for accessing different kinds of hosts and
  67. services.  Most PCs are still shipped with non-buffered UARTs; many PCs
  68. have interrupt conflicts, noisy buses, etc; many modern modems are buggy.
  69. The list goes on.  This is by way of demonstrating that Kermit's default
  70. tuning is not crazy, and goes a long way towards explaining its justified
  71. reputation for dependability.
  72.  
  73. Unfortunately, because of the tradeoffs necessary to achieve its
  74. reliability, Kermit has a reputation for slowness:
  75.  
  76.   Yes, Kermit transfers are slow if you use the default tuning.
  77.  
  78. However, you can make Kermit go as fast the communication path will permit
  79. by changing a few parameters.  But first, here are some general principles
  80. that apply to all communications software:
  81.  
  82.  1. Ensure that you have an effective means of flow control enabled at
  83.     every juncture along the communication path (this applies to any file
  84.     transfer protocol).  For example, when using high-speed,
  85.     error-correcting modems, you should use some form of hardware flow
  86.     control, most commonly RTS/CTS.  You have to tell the software to use
  87.     it, AND you have to tell the modem to use it too -- if the flow
  88.     control methods of the PC and the modem do not agree, then data will
  89.     be lost.
  90.  
  91.  2. If your modem is capable of data compression, use it.  Fix the
  92.     interface speed of the software to four times the connection speed if
  93.     possible -- e.g. for a V.32bis 14400 bps connection, use an interface
  94.     speed of 57600, or else the modem's compression capacity is likely to
  95.     be wasted.
  96.  
  97.  3. On network connections (e.g. TCP/IP), it is usually best to turn off
  98.     flow control entirely, because the underlying networking method
  99.     supplies fully effective flow control.
  100.  
  101. Now, to make Kermit go fast, follow these steps:
  102.  
  103.  1. Use real Kermit software, not the many shareware and commercial
  104.     packages, most of whose Kermit protocol implementations lack the
  105.     performance features listed below and/or the means for the user to
  106.     control them.
  107.  
  108.  2. Use long packets.  Kermit's default packet length is 94.  You can
  109.     increase it to a theoretical maximum of 9024.  Give the following
  110.     command to the file receiver:
  111.  
  112.       SET RECEIVE PACKET-LENGTH 2000  ; (or other length)
  113.  
  114.     The longer you make the packets, the more efficient the file transfer
  115.     will be... IF IT WORKS.  If you make packets longer than some buffer
  116.     somewhere along the line, and effective flow control is lacking, the
  117.     transfer might not work.  Also, the longer the packet, the greater
  118.     the chance it will be hit by noise, and the longer it takes to
  119.     retransmit.
  120.  
  121.  3. On full duplex connections, use sliding windows.  Sliding windows
  122.     allow packets to be transmitted in a continuous stream, rather than
  123.     "stop and wait" style.  The command is:
  124.  
  125.       SET WINDOW 4 ; (or other number)
  126.  
  127.     The maximum is 32 (or less, depending on the implementation).  Give
  128.     this command to *both* Kermit programs.
  129.  
  130. For text files and uncompressed binary files, this should give you very
  131. good performance -- efficiencies in the 85%-100% range.  For compressed
  132. files, and certain other types of binary files, you can squeeze out
  133. another 20-25% efficiency by telling Kermit not to prefix a given list of
  134. control characters.  A typical sequence might be:
  135.  
  136.   SET CONTROL UNPREFIX ALL  ;  Unprefix all control characters.
  137.   SET CONTROL PREFIX 0 1 13 129 141 ...  ; Add back prefixes for these.
  138.  
  139. This requires a lot of trial and error because there is no way that a
  140. communication software program can know what characters are safe and
  141. which ones are not on a particular connection.  For example, you might be
  142. going through an X.25 PAD where Ctrl-P will pop you back to the PAD
  143. prompt.  Or you might be going through a TELNET terminal server where
  144. Ctrl-] or Ctrl-^ will pop you back to the terminal server prompt.  Or the
  145. connection might be using Xon/Xoff flow control, and sending Ctrl-S as a
  146. data character might freeze the connection.
  147.  
  148. If you take all of these steps, using optimal packet lengths, window
  149. sizes, and unprefixing, you should achieve transfer rates comparable to,
  150. and often better than, the Zmodem implementations that you find in Telix,
  151. Procomm, and similar shareware and commercial packages; for example, on a
  152. V.32bis/V.42/V.42bis connection, RTS/CTS flow control, no parity, 57600
  153. bps interface speed:
  154.  
  155.   Typical text files:        3500 cps (characters per second)
  156.   Uncompressed binary files: 2400 cps (e.g. PC KERMIT.EXE)
  157.   Compressed files:          1600 cps (e.g. ZIP files)
  158.  
  159. These figures come from Kermit News #5, June 1993, which is available via
  160. anonymous ftp from kermit.columbia.edu, directory kermit/e, file
  161. newsn5.txt (ASCII) or newsn5.ps (PostScript).  Also see newsn4.txt (.ps)
  162. for a detailed discussion of long packets and sliding windows.
  163.  
  164. Kermit software is available via anonymous ftp to kermit.columbia.edu
  165. [128.59.39.2], directory kermit and its subdirectories.  There are
  166. literally hundreds of different Kermit programs for *almost* every machine
  167. and operating system imaginable.  The most widely used Kermit programs
  168. are:
  169.  
  170.  . MS-DOS Kermit 3.13 for DOS and Windows.
  171.    No, this is not a native Windows application, but yes, this
  172.    is the software we recommend for Windows.
  173.    File: kermit/bin/msvib.zip.
  174.  
  175.  . C-Kermit 5A(189) for UNIX, VMS, OS/2, AOS/VS, the Commodore Amiga, etc.
  176.    UNIX: kermit/bin/cku190.tar.Z.
  177.    VMS: Get kermit/b/ckvaaa.hlp, read it, take it from there.
  178.    Others: Get kermit/b/ckaaaa.hlp, read it, take it from there.
  179.  
  180.  . IBM Mainframe Kermit-370 for VM/CMS, MVS/TSO, CICS, and MUSIC.
  181.    kermit/b/ik*.*.
  182.  
  183. - Frank
  184.  
  185. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!vixen.cso.uiuc.edu!adam
  186. From: adam@symcom.math.uiuc.edu (Adam H. Lewenberg)
  187. Newsgroups: comp.protocols.kermit.misc
  188. Subject: FILE COLLISION UPDATE problem
  189. Date: 19 Sep 1994 12:18:43 GMT
  190. Organization: Math Dept., University of Illinois at Urbana/Champaign
  191. Lines: 23
  192. Distribution: na
  193.  
  194. I am having a problem with the SET FILE COLLISION UPDATE setting.  I
  195. send files from my home computer (OS/2 CKermit 5A(160) alpha.16) to
  196. the computer at school (Ckermit 5A(188)) with the FILE COLLISION set
  197. to UPDATE. Thus, I would expect that only those files on my home
  198. commputer that are newer than the files on the school computer will be
  199. transfered. And that is what happens...mostly. There are a few files
  200. that constantly get transfered. Although I have not touched the
  201. files on either system for months, everytime I run the transfer script
  202. these few files get transfered. I have checked the dates on both
  203. machines and they are identical, at least to the minute. Perhaps the
  204. seconds are different? 
  205.  
  206. In any case, one way around this that would even be useful in other
  207. situations would be a FILE COLLISION setting which only transfered
  208. files that were newer by a certain amount. For example, if one issued
  209. the command SET FILE COLLISION UPDATEBY 60, then only those files that
  210. were newer by at least one hour would be transfered. Comments?
  211.  
  212.                      Adam H. Lewenberg adam@math.uiuc.edu
  213. -- 
  214. University of Illinois at Champaign-Urbana, Dept. Of Mathematics
  215. INTERNET: adam@math.uiuc.edu   or    a-lewenberg@uiuc.edu
  216.  
  217. Path: news.columbia.edu!usenet
  218. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  219. Newsgroups: comp.protocols.kermit.misc
  220. Subject: Re: FILE COLLISION UPDATE problem
  221. Date: 19 Sep 1994 14:23:34 GMT
  222. Organization: Columbia University
  223. Lines: 24
  224. Distribution: World
  225. References: <35jvj3$b0u@vixen.cso.uiuc.edu>
  226.  
  227. In article <35jvj3$b0u@vixen.cso.uiuc.edu> adam@symcom.math.uiuc.edu (Adam H.  
  228. Lewenberg) writes:
  229. > I am having a problem with the SET FILE COLLISION UPDATE setting.  I
  230. > send files from my home computer (OS/2 CKermit 5A(160) alpha.16) to
  231. > the computer at school (Ckermit 5A(188)) with the FILE COLLISION set
  232. > to UPDATE. ...
  233. >
  234. An OS/2 FAT file system records the time to a precision of 2 seconds,
  235. whereas most other file systems record the time to a precision of
  236. one second or less.  This the file times for the same file can differ
  237. by one second.  In this case, Kermit takes the conservative approach
  238. and transfers the file.  Workarounds: (1) "touch" the file on the
  239. receiving end to force it to be newer (not recommended); (2) use an
  240. HPFS file system instead of a FAT file system.
  241.  
  242. These comments apply also to DOS and Windows, but suggestion (2)
  243. does not apply :-(.
  244.  
  245. Also, the latest version of OS/2 C-Kermit is 5A(190) Beta.23,
  246. available via anonymous ftp from kermit.columbia.edu, directory
  247. kermit/test/bin, binary mode, file cko190.zip.  It works a lot better
  248. than the earlier Alpha versions.
  249.  
  250. - Frank
  251.  
  252. Path: news.columbia.edu!panix!MathWorks.Com!yeshua.marcam.com!zip.eecs.umich.edu!gmi.edu!ellis
  253. From: ellis@nova.gmi.edu (R. Stewart Ellis)
  254. Newsgroups: comp.protocols.kermit.misc
  255. Subject: Re: FTP for Current MS-DOS Kermit?
  256. Date: 19 Sep 94 01:25:10 GMT
  257. Organization: GMI Engineering&Management Institute, Flint, MI
  258. Lines: 29
  259. References: <35i2ta$qgp@sundog.tiac.net>
  260.  
  261. conover@max.tiac.net (Harry H Conover) writes:
  262.  
  263.  
  264.  >I'm current using Kermit as my primary communications package, as
  265.  >I have for the past 10 years or so.  So far, the program has survived
  266.  >an IBM XT, '286, '386' and '486, and is now going strong on the 
  267.  >Internet.  Sadly, it lacks certain features such as automatic
  268.  >re-dial, the ability to automatically log-off on completion of
  269.  >batch file transfers, etc.  
  270.  
  271.  >It identifies itself as: IBM PC KERMIT-MS V2.28....
  272.  
  273.  >Can anyone point me to an FTP site that has a more recent MS-DOS
  274.  >version available?
  275.  
  276.  >Thanks.   
  277.  
  278.  >                              Harry C.
  279.  
  280.  
  281. The regular place for kermit the last time I checked was
  282. watsun.cc.columbia.edu.  Oak.oakland.edu is the best general PC place.  The
  283. latest I know of is 3.13 with a couple of patches.
  284.  
  285. -- 
  286.   R.Stewart(Stew) Ellis, Assoc.Prof., (Off)313-762-9765   ___________________
  287.   Humanities & Social Science,  GMI Eng.& Mgmt. Inst.    /   _____  ______ 
  288.   Flint, MI 48504      ellis@nova.gmi.edu               /        / /  /  / /
  289.   Gopher,chimera,nn,tin,jove,modems, free code is best!/________/ /  /  / /
  290.  
  291. Path: news.columbia.edu!usenet
  292. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  293. Newsgroups: comp.protocols.kermit.misc
  294. Subject: Re: FTP for Current MS-DOS Kermit?
  295. Date: 19 Sep 1994 14:30:48 GMT
  296. Organization: Columbia University
  297. Lines: 43
  298. Distribution: World
  299. References: <ellis.779937910@gmi.edu>
  300.  
  301. In article <ellis.779937910@gmi.edu> ellis@nova.gmi.edu (R. Stewart Ellis)  
  302. writes:
  303. > conover@max.tiac.net (Harry H Conover) writes:
  304. >  >I'm current using Kermit as my primary communications package, as
  305. >  >I have for the past 10 years or so.  So far, the program has survived
  306. >  >an IBM XT, '286, '386' and '486, and is now going strong on the 
  307. >  >Internet.  Sadly, it lacks certain features such as automatic
  308. >  >re-dial
  309. >
  310. No it doesn't.  The dialing scripts that come with MS-DOS Kermit
  311. automatically redial for you.
  312.  
  313. >  >... the ability to automatically log-off on completion of
  314. >  >batch file transfers, etc.  
  315. Not at all.  Please read the documentation.  MS-DOS Kermit includes a
  316. script programming language that lets you set up any automated procedures
  317. you like.
  318.  
  319. >  >It identifies itself as: IBM PC KERMIT-MS V2.28....
  320. Well...  That would explain it.  Version 2.28 dates from 1986.  We've
  321. been working on it for a solid eight years since then!  (Has it been
  322. eight years already ???!)  The current version is 3.13, and 3.14 will
  323. be announced for beta testing soon.  Watch comp.protocols.kermit.announce.
  324.  
  325. >  >Can anyone point me to an FTP site that has a more recent MS-DOS
  326. >  >version available?
  327. >  >                              Harry C.
  328. > The regular place for kermit the last time I checked was
  329. > watsun.cc.columbia.edu.  Oak.oakland.edu is the best general PC place.  The
  330. > latest I know of is 3.13 with a couple of patches.
  331. To clarify, the ONE AND ONLY source for Kermit software on the Internet
  332. is kermit.columbia.edu (which, indeed, at the present, happens to be the
  333. same as watus.cc.columbia.edu, but might not always be, so use the
  334. kermit name to be safe).  Please don't pick up Kermit from other sites
  335. because we can't support it that way -- we don't know where it's been,
  336. what's been done to it, how old it is, whether the file sets are complete,
  337. etc etc.
  338.  
  339. - Frank
  340.  
  341. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!malgudi.oar.net!swiss.ans.net!gatech!udel!MathWorks.Com!news.kei.com!travelers.mail.cornell.edu!tuba.cit.cornell.edu!crux3!rf13
  342. From: rf13@crux3.cit.cornell.edu (Ramin Farzaneh)
  343. Newsgroups: comp.protocols.kermit.misc
  344. Subject: Help Request: Download Speed
  345. Date: 19 Sep 1994 03:39:19 GMT
  346. Organization: Cornell University
  347. Lines: 33
  348.  
  349. I have been trying to improve the file transfer speed I get while
  350. downloading from a workstation to my PC using C Kermit and MS Kermit.
  351. The highest rate that I've gotten for a .zip file has been ~1320 cps 
  352. (I'm using a USR 14.4K modem which achieves ~1600cps with zmodem).
  353. Here's  what I've done so far:
  354.  
  355. - Played around with the packet length and window parameters.  By
  356.   trial and error I found that 4 sliding windows and a packet length
  357.   of around 900 bytes give me the best speed with the least number
  358.   of retries.
  359.  
  360. - Disabled the modem's compression.  This improved the speed by about
  361.   50 cps.
  362.  
  363. - Downloaded several differend types of files (with no modem compression
  364.   and 'set file type binary' given to both Kermits) and measured the cps.
  365.   I got ~1300 or a .zip file, ~1550 for an ASCII file, and ~1150 for a unix 
  366.   executable.
  367.  
  368. - By looking at Kermit's statistics (show statistics in MS Kermit) it
  369.   turned out that while the serial port speed is the same in each case
  370.   (~16900 bits/sec), the number of characters actually sent is proportionally
  371.   higher for the .zip file compared to the text file.  So the ratio
  372.   (chars sent/file size) is ~93% for text and ~75% for a .zip file (and
  373.   even lower for the unix executable).
  374.  
  375. So how can I improve the efficiency?  I looks like Kermit is applying
  376. some sort of compression (or maybe binary->ASCII encoding? or both?) that is 
  377. inflating the size of .zip files. Is this the case, and if so how
  378. can I turn it off?  Is this a bug or a feature? :-)
  379.  
  380. Thanks,
  381. Ramin
  382.  
  383. Path: news.columbia.edu!usenet
  384. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  385. Newsgroups: comp.protocols.kermit.misc
  386. Subject: Re: Help Request: Download Speed
  387. Date: 19 Sep 1994 14:40:34 GMT
  388. Organization: Columbia University
  389. Lines: 41
  390. Distribution: World
  391. References: <35j157$23n@tuba.cit.cornell.edu>
  392. Keywords: Performance, Fast, Slow, Speed
  393.  
  394. In article <35j157$23n@tuba.cit.cornell.edu> rf13@crux3.cit.cornell.edu  
  395. (Ramin Farzaneh) writes:
  396. > I have been trying to improve the file transfer speed I get while
  397. > downloading from a workstation to my PC using C Kermit and MS Kermit.
  398. > The highest rate that I've gotten for a .zip file has been ~1320 cps 
  399. > (I'm using a USR 14.4K modem which achieves ~1600cps with zmodem).
  400. > Here's  what I've done so far:
  401. > ...
  402. > - By looking at Kermit's statistics (show statistics in MS Kermit) it
  403. >   turned out that while the serial port speed is the same in each case
  404. >   (~16900 bits/sec), the number of characters actually sent is 
  405. >   proportionally higher for the .zip file compared to the text file.
  406. >   So the ratio (chars sent/file size) is ~93% for text and ~75% for a
  407. >  .zip file (and even lower for the unix executable).
  408. See my earlier posting.  You have got the packet-length and window-size
  409. business right, but zip files and other forms of compressed files have
  410. a much higher proportion of control characters than do other types of files,
  411. and therefore incur a higher control-character-prefixing penalty, and so
  412. are transferred less efficiently.  Also note that since these files are
  413. already compressed, Kermit can't compress them any further, and neither
  414. can your modem.  However, in my experience, turning off Kermit's 
  415. compression (SET REPEAT COUNTS OFF) or the modem's results in only a
  416. marginal improvement.
  417.  
  418. The big gain comes in (a) (obviously) making sure you have an 8-bit
  419. no-parity connection (you probably do), and (b) telling Kermit to "unprefix"
  420. most control characters, i.e. all the ones that are safe to unprefix.
  421.  
  422. C-Kermit 5A(189) or later and MS-DOS Kermit 3.13 or later are required
  423. for control-character unprefixing.  See the CKCKER.UPD file that comes
  424. with C-Kermit or the KERMIT.UPD file that comes with MS-DOS Kermit for
  425. details about this feature.
  426.  
  427. For more detailed discussions of Kermit file transfer performance, please
  428. read the manuals: "Using MS-DOS Kermit" and/or "Using C-Kermit", and the
  429. articles on performance in Kermit News numbers 4 and 5, available via
  430. anonymous ftp from kermit.columbia.edu, directory kermit/b, files
  431. newsn4.txt and newsn5.txt (ASCII, also .ps for PostScript).
  432.  
  433. - Frank
  434.  
  435. Newsgroups: comp.protocols.kermit.misc
  436. Path: news.columbia.edu!panix!zip.eecs.umich.edu!yeshua.marcam.com!news.kei.com!eff!news.duke.edu!news-feed-1.peachnet.edu!gatech!howland.reston.ans.net!EU.net!sunic!news.funet.fi!cs.joensuu.fi!news
  437. From: hounsell@cc.joensuu.fi (Paul Hounsell)
  438. Subject: Is anybody working on kermit for windows?
  439. Sender: news@cs.joensuu.fi
  440. Organization: Joensuu University Language Center
  441. Date: Mon, 19 Sep 1994 12:23:08 GMT
  442. Lines: 17
  443.  
  444.     Hello developers
  445.  
  446.     I would like to know if anybody is working on kermit to run under windows
  447. winsocket. I really like kermit for telnet and terminal emulation so I would like to see
  448. version  3.13 done as a windows program. Is there anybody out there working on it? Within
  449. a year or so DOS will be obselete with the arrival of windows 4.1. I know most people will
  450. not upgrade at once but DOSs days are numbered.  Most versions kermit for windows that I 
  451. have seen seem to be very old versions of kermit and thus suffer in many areas.
  452.  
  453.     TIA
  454.     Paul
  455. =======================================================================
  456.  Paul Hounsell                      |disclaimer: 
  457.  Joensuu University Language Center |   Of course I have opinions, I am 
  458.  Joensuu Finland                    |   just not responsible for them
  459.  hounsell@cc.joensuu.fi             |   and neither is anybody else!
  460. =======================================================================
  461.  
  462. Path: news.columbia.edu!usenet
  463. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  464. Newsgroups: comp.protocols.kermit.misc
  465. Subject: Re: Is anybody working on kermit for windows?
  466. Date: 19 Sep 1994 14:47:37 GMT
  467. Organization: Columbia University
  468. Lines: 35
  469. Distribution: World
  470. References: <1994Sep19.122308.19077@cs.joensuu.fi>
  471.  
  472. In article <1994Sep19.122308.19077@cs.joensuu.fi> hounsell@cc.joensuu.fi
  473. (Paul Hounsell) writes:
  474. > I would like to know if anybody is working on kermit to run under windows
  475. > winsocket. I really like kermit for telnet and terminal emulation so I
  476. > would like to see version 3.13 done as a windows program.
  477. >
  478. Wouldn't everybody!
  479.  
  480. > Is there anybody out there working on it? Within a year or so DOS will be
  481. > obselete with the arrival of windows 4.1.
  482. >
  483. Maybe, maybe not.
  484.  
  485. > I know most people will not upgrade at once but DOSs
  486. > days are numbered.  Most versions kermit for windows that I have seen seem
  487. > to be very old versions of kermit and thus suffer in many areas.
  488. That's correct.  We don't recommend any of them.  They are mainly
  489. "proof of concept" exercises with minimal functionality, and not well
  490. supported -- well... not supported at all.
  491.  
  492. We, the Kermit developers, intend to produce a fully functional version of
  493. Kermit for Windows.  In fact, we have always intended to do this.  It is
  494. very high on our list of things to do.  It is also a VERY BIG JOB, and
  495. therefore keeps getting put off.
  496.  
  497. Meanwhile, we recommend using MS-DOS Kermit in Windows.  We support 100%.
  498. It works fine, in a window, it can use all sorts of networking methods,
  499. including its own built-in TCP/IP stack, but no, it does not work with
  500. Winsock because Winsock is only available to fully 100% native Windows apps.
  501.  
  502. There may be some new developments in this area in the next few months.
  503. Watch this space for announcements.
  504.  
  505. - Frank
  506.  
  507. Path: news.columbia.edu!panix!zip.eecs.umich.edu!newsxfer.itd.umich.edu!jobone!news1.oakland.edu!rcsuna.gmr.com!ilium!heifetz.msen.com!jamaican
  508. From: jamaican@garnet.msen.com (Dwight Hugget)
  509. Newsgroups: comp.protocols.kermit.misc
  510. Subject: KERMIT & PCMCIA
  511. Date: 16 Sep 1994 18:12:20 GMT
  512. Organization: Msen, Inc. -- Ann Arbor, MI (account info: +1 313 998-4562)
  513. Lines: 27
  514.  
  515.  
  516.  
  517. Has anyone ever configured Intel's 14.4 fax/data PCMCIA card to work with
  518. kermit ???
  519. If so, how do you handle the setting of the COMn port while trying to 
  520. use IRQ5???
  521.  
  522. Is there any tweaking necessary in any of the .SCR files and which do
  523. I use.
  524. So far, I've tried HAYES and the SPORT ones. I don't know whatelse
  525. to do.
  526.  
  527. I get into terminal mode and he (the PCMCIA card) wont even speak
  528. to me in AT.
  529.  
  530. thanks for any hints.
  531.  
  532. baffled
  533. dwight
  534. --
  535. =======================================================================
  536. =             "Artist seeks Boss with vision impairment."             =
  537. =  0/       __o                                              ,,,      = 
  538. = <|      _`\< _                                            (o o)     =
  539. = / >  --(_)/ (_)------- jamaican@garnet.msen.com -------ooO-(_)-Ooo- = 
  540. =======================================================================
  541.  
  542. Newsgroups: comp.protocols.kermit.misc
  543. Path: news.columbia.edu!panix!MathWorks.Com!yeshua.marcam.com!charnel.ecst.csuchico.edu!olivea!decwrl!decwrl!netcomsv!medicus!bill
  544. From: bill@medicus.com (Bill Chinn)
  545. Subject: Kermit for Windows/NT
  546. Organization: Medicus Clinical Data Systems, Alameda, CA
  547. Date: Mon, 19 Sep 1994 07:14:45 GMT
  548. Lines: 14
  549.  
  550. Hello,
  551.  
  552. I was wondering if anyone is working on porting Kermit to
  553. Windows/NT?  
  554.  
  555. If anyone is working on an NT port, I know some people here
  556. who would love to beta test it.
  557.  
  558. I'm also wondering if anyone is planning on adding support 
  559. for the new Microsoft TCP/IP stack into Kermit.
  560.  
  561. Thanks for any info and if anyone else is interested in this
  562. info I'll post a summary of whatever info I get.
  563. --Bill
  564.  
  565. Path: news.columbia.edu!watsun.cc.columbia.edu!jaltman
  566. From: jaltman@watsun.cc.columbia.edu (Jeffrey Altman)
  567. Newsgroups: comp.protocols.kermit.misc
  568. Subject: Re: Kermit for Windows/NT
  569. Date: 19 Sep 1994 12:28:18 GMT
  570. Organization: Columbia University
  571. Lines: 28
  572. References: <1994Sep19.071445.15802@medicus.com>
  573.  
  574. In article <1994Sep19.071445.15802@medicus.com>,
  575. Bill Chinn <bill@medicus.com> wrote:
  576. >Hello,
  577. >
  578. >I was wondering if anyone is working on porting Kermit to
  579. >Windows/NT?  
  580.  
  581. Currently, we recommend using the 16-bit OS/2 version on Windows NT.
  582.  
  583. >If anyone is working on an NT port, I know some people here
  584. >who would love to beta test it.
  585.  
  586. There are plans to create an NT version at some point in the future.
  587.  
  588. >I'm also wondering if anyone is planning on adding support 
  589. >for the new Microsoft TCP/IP stack into Kermit.
  590.  
  591. When a NT version is created we will support the standard TCP/IP stacks.
  592.  
  593. >Thanks for any info and if anyone else is interested in this
  594. >info I'll post a summary of whatever info I get.
  595. >--Bill
  596.  
  597.  
  598. Jeffrey Altman * PO Box 220415 * Great Neck, NY * 11022-0415 * (516) 466-5495
  599. "C-Kermit: available on more platforms than any other communications software."
  600. "Kermit FTP: sending files whenever and wherever they are needed."
  601. OS/2 version 189 via ftp from watsun.cc.columbia.edu /kermit/bin/ckoker.zip 
  602.  
  603. Path: news.columbia.edu!usenet
  604. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  605. Newsgroups: comp.protocols.kermit.misc
  606. Subject: C-Kermit OS/2 with TCP/IP
  607. Date: 19 Sep 1994 15:47:35 GMT
  608. Organization: Columbia University
  609. Lines: 37
  610. Distribution: World
  611. Keywords: OS/2, TCP/IP
  612.  
  613. Date: Mon, 19 Sep 94 11:13:01 EDT
  614. From: Frank da Cruz <fdc@watsun.cc.columbia.edu>
  615. To: "Bryan H. Hodgson" <0003627745@mcimail.com>
  616. Subject: Re: CKermit-OS2 w/TCP-IP
  617. In-Reply-To: Your message of Mon, 19 Sep 94 09:20 EST
  618.  
  619. > I've got PC/Kermit working very successfully over TCP/IP to connect to
  620. > our Unix boxes while users are simultaneously logged onto Novell
  621. > servers.  Great stuff.
  622. >  
  623. Yup, thanks.
  624.  
  625. > Now I'm trying to solve the same problem with OS2/CKermit.  And I'm
  626. > trying to avoid springing for IBM's OS/2 product.  Are you aware of
  627. > shareware or public domain alternatives for OS/2 TCP/IP drivers that
  628. > will work with CKermit?
  629. >  
  630. Nope.  This question is asked about 100 times a day on the OS/2
  631. newsgroups, and the answer is always no.  A number of commercial TCP/IP
  632. products are available, and OS/2 C-Kermit works with most of them.
  633.  
  634. C-Kermit 5A(190) Beta works with the following:
  635.  
  636.   IBM TCP/IP 1.2.1 (C-Kermit edit 189 and later)
  637.   IBM TCP/IP 2.0 (edit 190)
  638.   Essex Systems TCP/2 (edit 189 and later)
  639.   FTP Software's PC/TCP for OS/2 (edit 190)
  640.   IP-Switch Vantage IP (edit 190)
  641.  
  642. It does not work with Novell LAN Workplace for OS/2, although there is
  643. some slight chance that we might be able to add this support before
  644. leaving Beta.
  645.  
  646. anonymous ftp to kermit.columbia.edu, directory kermit/test/bin, binary
  647. mode, file cko190.zip.  Unzip and run the install script (INSTALL.CMD).
  648.  
  649. - Frank
  650.  
  651. Newsgroups: comp.protocols.kermit.misc
  652. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!uunet!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!vixen.cso.uiuc.edu!uchinews!iitmax!thssjyh
  653. From: thssjyh@iitmax.iit.edu (Jianqing Hu)
  654. Subject: Re: [HELP] Slow Kermit Transfer ?!
  655. Organization: Illinois Institute of Technology, Chicago
  656. References: <35jrgsINNdq2@newsman.csu.murdoch.edu.au>
  657. Date: Mon, 19 Sep 94 14:19:01 GMT
  658. Lines: 40
  659.  
  660. In article <35jrgsINNdq2@newsman.csu.murdoch.edu.au> anson@csuvax1.csu.murdoch.edu.au (Binh Anson) writes:
  661. >
  662. >G'day,
  663. >
  664. >I used Kermit 3.13 for my PC, my modem has a speed of 14.4 K, but I found that the downloading rate from the mainframe to my PC was still very slow! I tried Telix with SZ (Z-Modem Protocol), and it was very fast compared to Kermit. Is there a way to accelerate Kermit transfer ?
  665. >
  666. >Thanks,
  667. >Binh.
  668. >--
  669.  
  670.   You could use sz within kermit
  671.  
  672.   or
  673.  
  674.   Set following on both end of kermit
  675.  
  676.   set receive packet 2000
  677.   set windows 3
  678.   set con u all
  679.   set con p 0 1
  680.  
  681.   See DOC for correct syntax.
  682.  
  683.   You need MS-Kermit 3.13 and C-Kermit 5A (189) or up
  684.  
  685.   But don't push kermit too hard. In some cases, it will leave errors undetect
  686.   (At least on our unix box)
  687.  
  688. Jianqing Hu                         |  Internet: thssjyh@iitmax.acc.iit.edu
  689. ECE Dept.  Illinois Inst. of Tech.  |  
  690. Chicago, IL 60616                   |  Office phone: 312-567-6971
  691.  
  692.  
  693. >-------------------------------------------------------------------------
  694. >  Binh Anson            FAX: (61-9) 244 4726 (Perth, Australia)
  695. >                Email: anson@csuvax1.murdoch.edu.au
  696. >-------------------------------------------------------------------------
  697. >        
  698.  
  699. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!uunet!gumby!wupost!simtel.coast.net!w8sdz
  700. From: w8sdz@SimTel.Coast.NET (Keith Petersen)
  701. Newsgroups: comp.protocols.kermit.misc
  702. Subject: Re: [HELP] Slow Kermit Transfer ?!
  703. Date: Mon, 19 Sep 1994 15:17:50 GMT
  704. Organization: SimTel, the Coast to Coast Software Repository (tm)
  705. References: <35jrgsINNdq2@newsman.csu.murdoch.edu.au> <1994Sep19.141901.3102@iitmax.iit.edu>
  706. Lines: 15
  707.  
  708. thssjyh@iitmax.iit.edu (Jianqing Hu) writes:
  709. > ... don't push kermit too hard. In some cases, it will leave errors undetect
  710. > (At least on our unix box)
  711.  
  712. This should fix the problem:
  713.  
  714. set blo 3
  715.  
  716. which is short for "set block-check-type 3-char-crc-ccitt".
  717.  
  718. Keith
  719. --
  720. Keith Petersen
  721. Internet: w8sdz@SimTel.Coast.NET    or      w8sdz@Vela.ACS.Oakland.Edu
  722. Uucp: uunet!umich!vela!w8sdz                     BITNET: w8sdz@OAKLAND
  723.  
  724. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!uunet!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!news.sprintlink.net!dsm6.dsmnet.com!dsm1.dsmnet.com!RICH
  725. From: rich@dsm1.dsmnet.com
  726. Newsgroups: comp.protocols.kermit.misc
  727. Subject: Re: Dumb question...
  728. Date: 19 Sep 1994 14:52:21 GMT
  729. Organization: DES MOINES INTERNET, DES MOINES, IA
  730. Lines: 17
  731. References: <35ghag$274@telerama.lm.com>
  732. Reply-To: rich@dsm1.dsmnet.com
  733.  
  734. In article <35ghag$274@telerama.lm.com>, huzacec@telerama.lm.com writes:
  735. >
  736. >Can someone please tell me where I can FTP C-Kermit for DOS?
  737. >
  738. >Thanks.
  739. >Mike
  740. >
  741. >(please e-mail me)
  742. >huzacec@telerama.lm.com
  743.  
  744. Try Anonymous FTP from kermit.columbia.edu and read the file read.me
  745. (P. 9 of "Using Ckermit" by Frank da Cruz and Christine M. Gianone)
  746.  
  747.     Richard L. Philpott          |  E-MAIL:  rich@dsmnet.com
  748.     Des Moines Internet          |  All opinions are just that, opinions!!
  749.     5911 Meredith Drive, Suite B |  All opinions are mine only and not
  750.     Urbandale, IA 50322          |  those of DES MOINES INTERNET
  751.  
  752. Path: news.columbia.edu!usenet
  753. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  754. Newsgroups: comp.protocols.kermit.misc
  755. Subject: Re: Dumb question...
  756. Date: 19 Sep 1994 20:48:10 GMT
  757. Organization: Columbia University
  758. Lines: 16
  759. Distribution: World
  760. References: <35k8j5$mph@dsm6.dsmnet.com>
  761.  
  762. In article <35k8j5$mph@dsm6.dsmnet.com> rich@dsm1.dsmnet.com writes:
  763. > In article <35ghag$274@telerama.lm.com>, huzacec@telerama.lm.com writes:
  764. > > Can someone please tell me where I can FTP C-Kermit for DOS?
  765. >
  766. > Try Anonymous FTP from kermit.columbia.edu and read the file read.me
  767. > (P. 9 of "Using Ckermit" by Frank da Cruz and Christine M. Gianone)
  768. Actually, this might have been a trick question: There is no C-Kermit
  769. for DOS.  There is MS-DOS Kermit for DOS (and Windows), and C-Kermit for
  770. OS/2 (and UNIX, and VMS, and ... and ...).  The mere act of trying to
  771. ftp something does not necessarily make it spring forth into existence :-)
  772.  
  773. But yes, once again, the definitive source for all Kermit software on the
  774. Internet is kermit.columbia.edu.
  775.  
  776. - Frank
  777.  
  778. Path: news.columbia.edu!usenet
  779. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  780. Newsgroups: comp.protocols.kermit.misc
  781. Subject: Re: [HELP] Slow Kermit Transfer ?!
  782. Date: 19 Sep 1994 20:55:57 GMT
  783. Organization: Columbia University
  784. Lines: 32
  785. Distribution: World
  786. References: <9409191517.AA21171@SimTel.Coast.NET>
  787.  
  788. In article <9409191517.AA21171@SimTel.Coast.NET> w8sdz@SimTel.Coast.NET  
  789. (Keith Petersen) writes:
  790. > thssjyh@iitmax.iit.edu (Jianqing Hu) writes:
  791. > > ... don't push kermit too hard. In some cases, it will leave errors 
  792. > > undetected (At least on our unix box)
  793. > This should fix the problem:
  794. > set blo 3
  795. > which is short for "set block-check-type 3-char-crc-ccitt".
  796. Yes, SET BLOCK 3 should always be used.  It catches errors much better
  797. than the lower-numbered block checks, as explained in the documentation.
  798.  
  799. For example, I once ran across a terminal server that actually swapped
  800. characters occasionally when its was under heavy load.  Type 1 and 2
  801. block checks (which are simple checksums) would not catch this, but type 3
  802. (a Cyclic Redundancy Check) does.
  803.  
  804. However (mea culpa) it should be pointed out that C-Kermit 5A(190) could
  805. introduce errors into incoming files if control-character unprefixing was
  806. used on the characters Ctrl-O, Ctrl-N, or Ctrl-P, AND the file actually
  807. contained these characters, AND the connection was a 7-bit, rather than
  808. 8-bit, connection (i.e. PARITY was not NONE), AND locking shift protocol
  809. had been successfully negotiated.  This problem is fixed in C-Kermit 5A(190),
  810. which will be released shortly, and is available now for Beta testing.
  811.  
  812. Folks, if you have problems like the one mentioned above, for goodness'
  813. sakes, report them!  We support our work.
  814.  
  815. - Frank
  816.  
  817. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!wupost!news.miami.edu!spindler
  818. From: spindler@heron.rsmas.miami.edu (todd spindler)
  819. Newsgroups: comp.protocols.kermit.misc
  820. Subject: Re: [HELP] Slow Kermit Transfer ?!
  821. Date: 19 Sep 1994 12:49:18 -0400
  822. Organization: U of Miami/RSMAS
  823. Lines: 39
  824. Distribution: world
  825. References: <35jrgsINNdq2@newsman.csu.murdoch.edu.au>
  826. Reply-To: spindler@heron.rsmas.miami.edu (todd spindler)
  827.  
  828.  
  829. In article <35jrgsINNdq2@newsman.csu.murdoch.edu.au>, anson@csuvax1.csu.murdoch.edu.au (Binh Anson) writes:
  830. >
  831. >G'day,
  832. >
  833. >I used Kermit 3.13 for my PC, my modem has a speed of 14.4 K, but I found 
  834. >that the downloading rate from the mainframe to my PC was still very slow! 
  835. >I tried Telix with SZ (Z-Modem Protocol), and it was very fast compared to 
  836. >Kermit. Is there a way to accelerate Kermit transfer ?
  837.  
  838. Assuming that your modem supports hardware error correction (MNP5 or LAP-M) 
  839. then you can tune Kermit for quite fast file transfers.  With 
  840. error-correction handled in hardware by the modem, you can turn down the 
  841. processing Kermit uses for error-correction.  In addition, turn off the 
  842. Xon/Xoff flow control for Kermit as it is unneeded.  Increase packet 
  843. size to the maximum allowed by your Kermit applications.  The following 
  844. lines added to your .kermrc might help.
  845.  
  846. set send packet 9024
  847. set rec packet 9024
  848. set block 1
  849. set flow none
  850.  
  851. On the average, assuming a fairly clean phone line, I can download about
  852. 4Mb/hour.  Your mileage may vary.
  853.  
  854. There are additional tweaks that you can try regarding 8th bit prefixing, 
  855. but I haven't got them to work just yet. You can also play with sliding 
  856. windows, if your Kermit supports them, to increase throughput, but here
  857. again I haven't had much success with them.
  858.  
  859. -- 
  860. Todd Spindler            |Rosenstiel School of Marine & Atmospheric Science
  861. TSpindler@rsmas.miami.edu|Dept. of Meteorol & Phys Oceanography /U of Miami
  862. ---------------------------------------------------------------------------
  863. Beyond the ken of mortal men, beneath the wind and waves, / Lies a land of
  864. shells and sand, of chasms, crags, and caves, / Where coral castles climb
  865. and soar, where swaying seaweeds grow, / While all around, without a sound,
  866. the ocean currents flow...         _Sign of the Seahorse_ by Graeme Base
  867.  
  868. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!uunet!MathWorks.Com!europa.eng.gtefsd.com!newsxfer.itd.umich.edu!jobone!opeo!iao.ford.com!jamulla
  869. From: jamulla@iao.ford.com (John Jamulla)
  870. Newsgroups: comp.protocols.kermit.misc
  871. Subject: Exiting kermit without modem hangup
  872. Date: 19 Sep 1994 19:21:38 GMT
  873. Organization: Ford Motor Company -- standard disclaimers apply
  874. Lines: 15
  875. Distribution: world
  876. Reply-To: jamulla@cadcam.pms.ford.com
  877.  
  878.  
  879. Is it possible to exit kermit without dropping the phone line?
  880.  
  881. I'd like to use linux's "term" program and I already have kermit
  882. all set up for my needs. I need kermit to stop buffering and
  883. looking at the link without dropping the phone line
  884.  
  885. Please reply to below address.
  886.  
  887. Thanks in advance,
  888. John J.
  889. _________________________________________________________________________
  890. jamulla@cadcam.pms.ford.com               John Jamulla - Dearborn, MI USA
  891. PROFS:JJAMULLA JAMULLA -ON D1D1           Ford - Car Product Development
  892. Bldg3 2nd Floor #2638 (313) 337-9951      CAD/CAM, Dearborn, MI 48121
  893.  
  894. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!uunet!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!news.sprintlink.net!sundog.tiac.net!max.tiac.net!conover
  895. From: conover@max.tiac.net (Harry H Conover)
  896. Newsgroups: comp.protocols.kermit.misc
  897. Subject: Re: FTP for Current MS-DOS Kermit?
  898. Date: 20 Sep 1994 04:42:18 GMT
  899. Organization: The Internet Access Company
  900. Lines: 9
  901. Distribution: World
  902. References: <ellis.779937910@gmi.edu> <35k7ao$9bc@apakabar.cc.columbia.edu>
  903.  
  904. Thanks to all for the pointers on Kermit FTP sites.  I have it now.
  905.  
  906. If 3.13 proves as good a piece of software as 2.28, I'll likely end up
  907. using it well into the 21st century.
  908.  
  909. Again, many thanks.
  910.  
  911.                                     Harry Conover
  912.  
  913. Path: news.columbia.edu!panix!MathWorks.Com!yeshua.marcam.com!charnel.ecst.csuchico.edu!nic-nac.CSU.net!usc!howland.reston.ans.net!swiss.ans.net!hermes.louisville.edu!homer.louisville.edu!jlmcad01
  914. From: jlmcad01@homer.louisville.edu (Jeff McAdams (J McA))
  915. Newsgroups: comp.protocols.kermit.misc
  916. Subject: Re: Kermit Access/Availability
  917. Date: 20 Sep 1994 03:59:58 GMT
  918. Organization: University of Louisville, Louisville KY USA
  919. Lines: 53
  920. References: <35i0o4$6s@cville-srv.wam.umd.edu> <1994Sep18.190019.26900@iglou.com>
  921.  
  922. In <1994Sep18.190019.26900@iglou.com> wakep@iglou.iglou.com (J. Wakeley Purple) writes:
  923.  
  924. >MDESOUZA (mdesouza@wam.umd.edu) wrote:
  925. >: Hello All,
  926. >:     I want to use download files from my host (umd) to my home pc.
  927.  
  928. >: home, but the computer center guys say Kermit is way better.  they have
  929. >: a disk, but i remember that one could download the "latest" kermit 
  930.  
  931. >We at U of Louisville have an 'official' release of kermit you can get by 
  932. >copying it to your diskette.  It's got several scripts for it to ease 
  933. >access to several systems (mainframe, vax VMS, unix).
  934.  
  935. >For that reason, it's probably better to use their version and 
  936. >installation process even if it's an 'old' version.  The new versions 
  937. >mostly have networking improvements that you're not likely to use.
  938.  
  939. Ok, I work in the computer lab at the above mentioned U of Louisville.
  940. "Our" version of kermit is the latest that is released (we just released
  941. "our" 3.13) with scripts written to automate connections to our
  942. mainframes.
  943.  
  944. On the machine that I am on right now, we have zmodem installed, and on
  945. comparison, I have found zmodem to be approximately twice as fast at
  946. transferring files as kermit is.
  947.  
  948. Your computer center guys proly told you kermit is better for one or
  949. more of the following reasons (brainstorming as I write):
  950.  
  951. 1)  They have kermit setup as we do to automate connection procedures
  952. 2)  Kermit is almost universally supported as a file transfer
  953. 3)  They can get it free or very inexpensively from Columbia and so give
  954. that out to users
  955.  
  956. As a note for #2.  Please keep in mind that kermit originally was just a
  957. file transfer protocol, and still can be used for that.  Nearly ALL
  958. communications programs have a kermit protocol to use.  Kermit was
  959. originally developed so that files could be tranfered without regard to
  960. what system was sending or recieving those files.  Before kermit, ppl
  961. had to find a protocol that they had in common and fiddle with it to get
  962. it to work, after kermit, everyone just starts up kermit, and sends the
  963. file.  VERY robust.
  964.  
  965. So in short (yeah right, too late for that I know) kermit is a very good
  966. tool to have because if all else fails, kermit WILL work, but other comm
  967. programs could be better depending on your setup.  I would suggest
  968. trying some out to see which fits your needs best.  Personally, I use
  969. telix, but I'm not exactly a power modem user.  (only 2400 bps in fact).
  970.  
  971. Chill,
  972. J McA
  973.  
  974. Hope I've helped and haven't run too long on the subject.
  975.  
  976. Path: news.columbia.edu!panix!MathWorks.Com!news.duke.edu!concert!news.wfu.edu!matthews
  977. From: matthews@wfu.edu (Rick Matthews)
  978. Newsgroups: comp.protocols.kermit.misc
  979. Subject: Re: Kermit Access/Availability
  980. Date: 20 Sep 1994 12:30:38 GMT
  981. Organization: Wake Forest University
  982. Lines: 74
  983. References: <35i0o4$6s@cville-srv.wam.umd.edu> <1994Sep18.190019.26900@iglou.com> <35lmnu$pp9@hermes.louisville.edu>
  984.  
  985. Jeff McAdams (J McA) (jlmcad01@homer.louisville.edu) wrote:
  986. : On the machine that I am on right now, we have zmodem installed, and on
  987. : comparison, I have found zmodem to be approximately twice as fast at
  988. : transferring files as kermit is.
  989.  
  990. Old versions of kermit were much slower than zmodem on binary files,
  991. but current versions are not.  If you are using the current versions
  992. of kermit (C-kermit 5A on Unix and most other hosts, MS-Kermit 3.13
  993. for DOS), you can get file transfers slightly faster than zmodem.
  994.  
  995. The *default* file tranfer parameters are very conservative, and must
  996. be changed to get high throughput.  The update file that comes with
  997. MS-Kermit 3.13 describes this is some detail.  With the host I
  998. download from, I use the following ".kermrc" file, and get fast
  999. reliable transfers:
  1000.  
  1001.  
  1002. set control unprefix all
  1003. set control prefix 0 1 129
  1004. set window 5
  1005. set file type binary
  1006. set receive packet 2000
  1007.  
  1008.  
  1009. ..kermrc is an initialization script that C-Kermit reads when first
  1010. run.  The first two lines above are what is new with recent versions.
  1011. Kermit assumes by default that many codes, including all eight-bit
  1012. codes, will cause problems with communication between the two
  1013. machines.  Since more than a few systems use 7 data bits, this is not
  1014. an unreasonable assumption, and it allows kermit to work when zmodem
  1015. would fail, by sending eight-bit codes as two (or more?) seven-bit codes.
  1016.  
  1017. If your system supports eight data bits, then this is unnecessary.
  1018. "Set unprefix all" disables all such tricks.  The second line of my
  1019. ..kermrc restores prefixing to only the three codes that cause problems
  1020. on my host.
  1021.  
  1022. : Your computer center guys proly told you kermit is better for one or
  1023. : more of the following reasons (brainstorming as I write):
  1024.  
  1025. : 1)  They have kermit setup as we do to automate connection procedures
  1026. : 2)  Kermit is almost universally supported as a file transfer
  1027. : 3)  They can get it free or very inexpensively from Columbia and so give
  1028. : that out to users.
  1029.  
  1030. I like using MS-Kermit as my terminal emulator, because
  1031.  
  1032.     1.  It provides excellent VT100 emulation.
  1033.     2.  All keys are reprogrammable.  We have reprogrammed our
  1034.             function keys, PageUp, PageDown, etc.  so that they
  1035.             work the same way in emacs and WordPerfect.
  1036.     3.  It provides excellent Tektronix graphics emulation, 
  1037.             toggling into that mode automatically from VT100 mode.
  1038.     4.  It can be used with either serial/modem connections or 
  1039.             with ethernet connections.  With ethernet connections 
  1040.             it supports multiple sessions.
  1041.     5.  It's free, so we can give it away to our students.
  1042.  
  1043. Disadvantage:
  1044.  
  1045.     1.  It's not menu driven.
  1046.  
  1047. For file transfers, I use Zmodem when connecting to BBS's, because
  1048. most of these do not support the current higher speed version of the
  1049. kermit protocol.  When attaching to Unix hosts, I use kermit, because
  1050. Zmodem is unreliable on enough Unix systems that I have tired of
  1051. experimenting, and offers no speed advantage.
  1052.  
  1053.  
  1054. --
  1055. Rick Matthews                     matthews@wfu.edu            Ham radio:
  1056. Wake Forest University            910-759-5340   (Voice)      WA4GSP
  1057. Winston-Salem, NC 27109-7507      910-759-6142   (FAX)
  1058.  
  1059. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!uunet!MathWorks.Com!udel!news-4.nss.udel.edu!strauss.udel.edu!not-for-mail
  1060. From: darkstar@strauss.udel.edu (Jerry Alexandratos)
  1061. Newsgroups: comp.protocols.kermit.misc
  1062. Subject: Re: Kermit And FTP
  1063. Date: 19 Sep 1994 14:21:54 -0400
  1064. Organization: Broken Toys Unlimited
  1065. Lines: 43
  1066. References: <35abck$6gc@louie.udel.edu> <35d5gi$6lm@chopin.udel.edu>
  1067.  
  1068. In article <35d5gi$6lm@chopin.udel.edu>,
  1069. Sigurd Andersen <sigurd@chopin.udel.edu> wrote:
  1070. :In article <35abck$6gc@louie.udel.edu>,
  1071. :Jerry Alexandratos <alexandr@stimpy.eecis.udel.edu> wrote:
  1072. :: Has anyone out there been able to successfully multiplex packets so
  1073. :: that you can use kermit and another TCPIP application?  ...
  1074. :: 
  1075. :: I'm using Kermit v3.13 on Novell v3.11 server with the latest ODI
  1076. :: drivers, and PCTCP v2.31 odipkt.
  1077. :: ...
  1078. :: 
  1079. ::     --Jerry       ...
  1080. :: 
  1081. :Jerry,
  1082. :     An answer from the campus from which you sent your question --
  1083. :PC/TCP software from FTP, Inc. includes a program called TNGLASS
  1084. :which does all the underlying packet handling, yet allows some other
  1085. :program to provide the user interface.  The DOS command to get these
  1086. :to work together is
  1087. :     TNGLASS <ip number> -E kermit.exe -F custom.ini
  1088. :where <ip number> refers to the system to which you wish to connect.
  1089. :"-E" tells TNGLASS to use the following program as the user interface.
  1090. :"-F" tells MS-KERMIT to use the specified INI file.
  1091. :
  1092. :     This has allowed people here to make use of MS-Kermit's VT220,
  1093. :VT320, and/or Tektronix 4010 terminal emulation, or to use the Kermit
  1094. :for communications concurrently with other processes (e.g., FTP).
  1095.  
  1096. Ah, but by using tnglass, I am limited to one connection.  If I use
  1097. Kermit in raw TCPIP mode, I can get multiple connections, and better
  1098. throughput.  Plus, if I shell to dos, I have more room to work with.
  1099. The only thing I'm looking for is a way to get better file transer
  1100. performance by using ftp instead, without having to give up any of the
  1101. goodies that I prefer to use kermit for.
  1102.  
  1103.     --Jerry
  1104.  
  1105.  
  1106.  
  1107. -- 
  1108. |>  Jerry Alexandratos             **  "vengo de la tierra del    <|
  1109. |>  darkstar@strauss.udel.edu      **   fuego ten cuidado cuando  <|
  1110. |>  darkstar@canary.cns.udel.edu   **   llamas mi nombre..."      <|
  1111.  
  1112. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!torn!mcshub!informer1.cis.McMaster.CA!muss.cis.McMaster.CA!not-for-mail
  1113. From: dfraser@muss.cis.McMaster.CA (Doug Fraser)
  1114. Newsgroups: comp.protocols.kermit.misc
  1115. Subject: Re: Kermit and Zmodem?
  1116. Date: 19 Sep 1994 19:06:18 -0400
  1117. Organization: McMaster University, Hamilton, Ontario, Canada.
  1118. Lines: 36
  1119. References: <35i5nc$eq9@larry.rice.edu>
  1120.  
  1121. In article <35i5nc$eq9@larry.rice.edu>,
  1122. Steven Patrick Iltis <iltiss@rice.edu> wrote:
  1123. >
  1124. >Is it possible to use zmodem (or rz and sz) with kermit? I use Kermit
  1125. >on Linux to log on to systems, and would like to use zmodem with
  1126. >Kermit.
  1127. >
  1128. >If I can't get these to work together, how can I get the fastest
  1129. >transfers with Kermit? Currently, I can only get about 1200 cps on a
  1130. >14.4 modem. 
  1131.  
  1132. This has been the subject of much discussion at my site.  I can get about 
  1133. 1000 cps on a 9600 transferring a zip file to a 486 DX 66 Mhz pc without 
  1134. the good uart chip (16450 or 16550, I forget).
  1135.  
  1136. I also added a kermit control file on the source computer.  I forget the 
  1137. exact name of the control file (probably .kermitrc for a unix computer)
  1138.     set control-character unprefixed all
  1139.     set control-character prefixed 0,1,129,17,29
  1140. This is discussed in the documentation but I didn't fully appreciate the 
  1141. social economic impact of doing so.  I think that kermit does something 
  1142. special with binary characters (prefixes them) which adds extra 
  1143. characters to transfer.  I noticed that the number of characters that 
  1144. kermit was transferring was less than the block size.  btw, this is done 
  1145. on the source (where the file comes from).
  1146.  
  1147. As well, be sure to use long blocks (but not too long).  My modem has 7k 
  1148. of ram buffer.  A 9k block is too long, a 6k block is good.
  1149.  
  1150. The set windows did nothing for me and I think it is for more internet 
  1151. transfers than modem transfers.
  1152.  
  1153.  
  1154. Doug Fraser
  1155.  
  1156. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!news.uoregon.edu!cs.uoregon.edu!usenet.ee.pdx.edu!not-for-mail
  1157. From: rkwee@ee.pdx.edu (Roland Kwee)
  1158. Newsgroups: comp.protocols.kermit.misc
  1159. Subject: Re: Kermit and Zmodem?
  1160. Date: 19 Sep 1994 20:26:02 -0700
  1161. Lines: 17
  1162. References: <35i5nc$eq9@larry.rice.edu>
  1163.  
  1164. iltiss@rice.edu (Steven Patrick Iltis) writes:
  1165.  
  1166. >Is it possible to use zmodem (or rz and sz) with kermit?
  1167. > with Kermit ... , I can only get about 1200 cps on a
  1168. >14.4 modem. 
  1169.  
  1170. This is an old discussion. In short, why do you think zmodem will do
  1171. better than Kermit? Your throughput is already 83 %, and could
  1172. THEORETICALLY only improve 17 %. However, the bottleneck may not be
  1173. Kermit, but your UART, the host computer, line noise, etc, all
  1174. factors that will also slow down zmodem.
  1175.  
  1176. Last year's Kermit News had a performance test that showed Kermit
  1177. superior over zmodem, and I haven't seen any counter-tests. If you
  1178. convincingly measure zmodem to be faster, please publish.
  1179.  
  1180. --Roland        email: RolandKwee@ACM.org 
  1181.  
  1182. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!pipex!lyra.csx.cam.ac.uk!warwick!news.shef.ac.uk!sunc!jp1ek
  1183. From: jp1ek@sunc.sheffield.ac.uk (Earl H. Kinmonth)
  1184. Newsgroups: comp.protocols.kermit.misc
  1185. Subject: Kermit for DOS/V
  1186. Date: 20 Sep 1994 06:41:22 GMT
  1187. Organization: Centre for Japanese Studies, Univ. of Sheffield
  1188. Lines: 10
  1189. Reply-To: jp1ek@sunc.shef.ac.uk
  1190.  
  1191. Does anyone know the current state of kermit for DOS/V (the
  1192. IBM/Microsoft dual mode version for Japanese/English)?  I have a 3.13
  1193. beta from a site in Japan, but it has one bug that renders it almost
  1194. unusable.  The code conversion does not work properly for Old-Jis
  1195. coding as used by Japan's largest commercial database vendor, Nikkei
  1196. Telecom.
  1197.  
  1198. --
  1199. Earl H. Kinmonth, Centre for Japanese Studies, University of Sheffield,
  1200. Sheffield, England S10 2TN jp1ek@sunc.sheffield.ac.uk
  1201.  
  1202. Path: news.columbia.edu!usenet
  1203. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  1204. Newsgroups: comp.protocols.kermit.misc
  1205. Subject: Re: Exiting kermit without modem hangup
  1206. Date: 20 Sep 1994 18:28:06 GMT
  1207. Organization: Columbia University
  1208. Lines: 52
  1209. Distribution: world
  1210. References: <35koc2INNvl@ope001.iao.ford.com>
  1211. Keywords: term
  1212.  
  1213. In article <35koc2INNvl@ope001.iao.ford.com> jamulla@iao.ford.com (John  
  1214. Jamulla) writes:
  1215. > Is it possible to exit kermit without dropping the phone line?
  1216. Remember there are hundreds of different Kermit programs.  For some the
  1217. answer is yes, for others it is no.  In UNIX, of course, the answer is no.
  1218. A fundamental aspect of the UNIX operating system is that when a process
  1219. exits, all of its open files are closed.  There is no way around it.
  1220. But this is not really the question you wanted to ask.
  1221.  
  1222. > I'd like to use linux's "term" program and I already have kermit
  1223. > all set up for my needs. I need kermit to stop buffering and
  1224. > looking at the link without dropping the phone line
  1225. The real question is: How do I use Kermit with term?  Here is the answer,
  1226. from the ckuker.bwr file that is being prepared for the forthcoming C-Kermit
  1227. 5A(190) release:
  1228.  
  1229. (11.3) USING C-KERMIT WITH TERM
  1230.  
  1231. The "term" program provides an error-corrected, multiplexed connection
  1232. between two UNIX systems, allowing you to run multiple applications over
  1233. a single connection, for example several terminal windows and a file
  1234. transfer simultaneously.  Term depends on a communications application
  1235. (such as C-Kermit) to make the connection and then redirect it to term's
  1236. standard i/o.  The advantages of using C-Kermit rather than other
  1237. communication programs for this include:
  1238.  
  1239.  . C-Kermit's script language lets you automate the entire process.
  1240.  
  1241.  . With C-Kermit's REDIRECT command, term sessions are not limited to
  1242.    serial connections, but can work over network connections (TCP/IP,
  1243.    X.25) too.
  1244.  
  1245. Here is an example showing how to set up a term session between two UNIX
  1246. systems with with C-Kermit (assuming the connection has already been
  1247. made by C-Kermit, e.g. by dialing up):
  1248.  
  1249.   C-Kermit> connect
  1250.   login: xxx
  1251.   Password: xxx
  1252.   $ exec term -r -s 38400 -A
  1253.   ^\c (escape back)
  1254.   C-Kermit>redirect term -s 38400 -A &
  1255.   C-Kermit>push
  1256.   $ 
  1257.  
  1258. Now you can run term clients such as trsh and tupload at the local shell
  1259. prompt.
  1260.  
  1261. - Frank
  1262.  
  1263. Path: news.columbia.edu!usenet
  1264. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  1265. Newsgroups: comp.protocols.kermit.misc
  1266. Subject: Re: kermit for Psion 3a
  1267. Date: 20 Sep 1994 19:21:33 GMT
  1268. Organization: Columbia University
  1269. Lines: 21
  1270. Distribution: world
  1271. References: <35mv65$pa9@ukwsv2.ggr.co.uk>
  1272. Keywords: Psion
  1273.  
  1274. In article <35mv65$pa9@ukwsv2.ggr.co.uk> w0400@ggr.co.uk (Wodehouse Lord) 
  1275. writes:
  1276. > Has anyone though about a kermit for the Psion 3a?
  1277. There is no Psion version of Kermit in our archives, nobody has ever
  1278. mentioned this system before, and I never heard of it.  When posting
  1279. messages like this:
  1280.  
  1281.   Is there a Kermit program for <name-of-system>
  1282.  
  1283. it might also be a good idea to include a brief description of the
  1284. system -- processor, languages available, operating system, etc, so at
  1285. least we could point you to something close.
  1286.  
  1287. You can find a concise list of Kermit versions in the Kermit archive
  1288. at kermit.columbia.edu, directory kermit/a (or b, c, d, or e) in the
  1289. files aav*.hlp, where * is a 3-letter phrase indicating how the file
  1290. is sorted -- by system name, OS name, programming language, date, etc.
  1291. There are presently about 450 entries in this list.
  1292.  
  1293. - Frank
  1294. From news@columbia.edu Tue Sep 20 19:51:48 1994
  1295. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA02804
  1296.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 20 Sep 1994 15:51:56 -0400
  1297. Received: by apakabar.cc.columbia.edu id AA26920
  1298.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 20 Sep 1994 15:51:54 -0400
  1299. Path: news.columbia.edu!usenet
  1300. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  1301. Newsgroups: comp.protocols.kermit.misc
  1302. Subject: Testing 1 2 3
  1303. Date: 20 Sep 1994 19:51:48 GMT
  1304. Organization: Columbia University
  1305. Lines: 11
  1306. Distribution: World
  1307. Message-Id: <35negk$q93@apakabar.cc.columbia.edu>
  1308. Nntp-Posting-Host: fdc.cc.columbia.edu
  1309. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  1310.  
  1311. This is a test, please ignore...  Execpt I'm wondering if any of my
  1312. postings are making it out to the world, since all the questions I answered
  1313. yesterday are being asked again today.  Maybe it's just propogation delay.
  1314.  
  1315. But I would appreciate a *few* replies (by email, direct to me at
  1316. fdc@columbia.edu) to let me know if you have seen this message, especially
  1317. if you are far away from New York City.
  1318.  
  1319. Thanks.
  1320.  
  1321. - Frank
  1322.  
  1323. From news@columbia.edu Tue Sep 20 14:26:10 1994
  1324. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA09218
  1325.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 20 Sep 1994 17:21:51 -0400
  1326. Received: by apakabar.cc.columbia.edu id AA03357
  1327.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 20 Sep 1994 17:21:49 -0400
  1328. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!uunet!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!gatech!psuvax1!news.cc.swarthmore.edu!netnews.upenn.edu!netnews.CC.Lehigh.EDU!CS1.CC.Lehigh.EDU!cdl0
  1329. From: cdl0@CS1.CC.Lehigh.EDU (CONRAD DANIEL LLOYD-KNIGHT)
  1330. Newsgroups: comp.protocols.kermit.misc
  1331. Subject: MacKermit questions....
  1332. Date: 20 Sep 1994 14:26:10 GMT
  1333. Organization: Lehigh University
  1334. Lines: 22
  1335. Message-Id: <35mre2$1224@fidoii.cc.lehigh.edu>
  1336. Nntp-Posting-Host: cs1.cc.lehigh.edu
  1337. X-Newsreader: TIN [version 1.2 PL2]
  1338. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  1339.  
  1340.  
  1341. just a few quick questions about MacKermit.....
  1342.  
  1343. does anyone know when version 1.0 will be released???? 
  1344.  
  1345. i'm currently using 0.9(188). i got 0.9(190) a while ago, but this
  1346. gave me endless problems when i tried to download stuff with it. anyone
  1347. else experienced this? what's wrong with it?
  1348.  
  1349. hope someone can answer these!
  1350.  
  1351. Later,
  1352. -Smoke.
  1353.  
  1354. -- bye!  :) -- pgp2 key available - just ask. or finger cdl0@cs1.cc.lehigh.edu
  1355.  
  1356. With friends surrounded
  1357. The dawn mist glowing
  1358. The water flowing
  1359. The endless river
  1360. Forever and ever
  1361.                     -"High Hopes", Pink Floyd.
  1362.  
  1363. From news@columbia.edu Tue Sep 20 21:46:14 1994
  1364. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA10991
  1365.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 20 Sep 1994 17:46:35 -0400
  1366. Received: by apakabar.cc.columbia.edu id AA05038
  1367.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 20 Sep 1994 17:46:31 -0400
  1368. Path: news.columbia.edu!usenet
  1369. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  1370. Newsgroups: comp.protocols.kermit.misc
  1371. Subject: Re: MacKermit questions....
  1372. Date: 20 Sep 1994 21:46:14 GMT
  1373. Organization: Columbia University
  1374. Lines: 27
  1375. Distribution: World
  1376. Message-Id: <35nl78$4sg@apakabar.cc.columbia.edu>
  1377. References: <35mre2$1224@fidoii.cc.lehigh.edu>
  1378. Nntp-Posting-Host: fdc.cc.columbia.edu
  1379. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  1380.  
  1381. In article <35mre2$1224@fidoii.cc.lehigh.edu> cdl0@CS1.CC.Lehigh.EDU
  1382. (CONRAD DANIEL LLOYD-KNIGHT) writes:
  1383. > does anyone know when version 1.0 will be released???? 
  1384. No.  As of now, and for the past four years or so, nobody has been available
  1385. on the Mac-Specific aspects of Mac Kermit, at least not for enough time to
  1386. take care of all the deficiencies that badly need attention before a final
  1387. 1.0 release can be announced.
  1388.  
  1389. Anybody who is already comfortable programming the Macintosh in MPW C
  1390. and has a fair amount of time to devote bringing Mac Kermit into fold is
  1391. more than welcome to step forward!
  1392.  
  1393. > i'm currently using 0.9(188). i got 0.9(190) a while ago, but this
  1394. > gave me endless problems when i tried to download stuff with it. anyone
  1395. > else experienced this? what's wrong with it?
  1396. I was able to fix this problem a few weeks ago.  What was wrong was:
  1397. a file-system call that used to work in Mac OS 7.0 and earlier -- all the
  1398. way back to the very earliest Mac OS's -- stopped working in 7.1.
  1399.  
  1400. Pick up the fixed -- but still not release-quality -- Mac Kermit from
  1401. kermit.columbia.edu, directory kermit/test/text, text mode, file
  1402. ckm190.hqx.  Un-binHex with BinHex 4.0.  Please also get the ckmker.bwr
  1403. file and read it.
  1404.  
  1405. - Frank
  1406.  
  1407. From news@columbia.edu Tue Sep 20 22:32:12 1994
  1408. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA13861
  1409.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 20 Sep 1994 18:32:27 -0400
  1410. Received: by apakabar.cc.columbia.edu id AA08278
  1411.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 20 Sep 1994 18:32:23 -0400
  1412. Path: news.columbia.edu!usenet
  1413. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  1414. Newsgroups: comp.protocols.kermit.misc
  1415. Subject: Correction
  1416. Date: 20 Sep 1994 22:32:12 GMT
  1417. Organization: Columbia University
  1418. Lines: 14
  1419. Distribution: World
  1420. Message-Id: <35nntc$825@apakabar.cc.columbia.edu>
  1421. Nntp-Posting-Host: fdc.cc.columbia.edu
  1422. Keywords: Bug
  1423. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  1424.  
  1425. Date: Tue, 20 Sep 94 18:06:24 EDT
  1426. From: Frank da Cruz <fdc@watsun.cc.columbia.edu>
  1427. To: Sigurd Andersen <sigurd@strauss.udel.edu>
  1428. Subject: Re: Testing 1 2 3
  1429. In-Reply-To: Your message of Tue, 20 Sep 1994 18:03:43 -0400
  1430.  
  1431. > In one of your postings, I think you inadvertantly included a typo
  1432. > which might confuse some ... you said that C-Kermit 5A(190) can introduce
  1433. > errors under some odd circumstances, and that C-Kermit 5A(190) fixes
  1434. > that bug.  The identical version can't do both ...
  1435. Right.  C-Kermit 5A(189) had the bug.  Previous and later versions do not.
  1436.  
  1437. - Frank
  1438.  
  1439. From news@columbia.edu Tue Sep 20 15:54:00 1994
  1440. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA14335
  1441.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 20 Sep 1994 18:43:27 -0400
  1442. Received: by apakabar.cc.columbia.edu id AA08910
  1443.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 20 Sep 1994 18:43:25 -0400
  1444. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!uunet!panix!zip.eecs.umich.edu!buzzard.eecs.umich.edu!rjones
  1445. From: rjones@buzzard.eecs.umich.edu (Randolph M. Jones)
  1446. Newsgroups: comp.protocols.kermit.misc
  1447. Subject: Kermit with expanded memory manager
  1448. Date: 20 Sep 1994 15:54:00 GMT
  1449. Organization: University of Michigan EECS Dept.
  1450. Lines: 7
  1451. Distribution: World
  1452. Message-Id: <35n0io$ddt@zip.eecs.umich.edu>
  1453. Nntp-Posting-Host: buzzard.eecs.umich.edu
  1454. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  1455.  
  1456. Perhaps this is in the documentation somewhere, but I missed it.  When
  1457. I run Kermit and I have an expanded memory manager running, I get a lot
  1458. of noise in the connection.  Lots of beeps and missing characters, and there's
  1459. just no way to transfer a file, because too many retries are necessary.
  1460. I have old slow (8250?) UARTs, and I'm connecting at 14,400 bps.  Does
  1461. anyone have an idea what's going on?  Is there any way to fix it short of
  1462. turning of the expanded memory manager?
  1463.  
  1464. From news@columbia.edu Tue Sep 20 16:11:57 1994
  1465. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA16742
  1466.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 20 Sep 1994 19:20:20 -0400
  1467. Received: by apakabar.cc.columbia.edu id AA10894
  1468.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 20 Sep 1994 19:20:18 -0400
  1469. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!uunet!usc!nic-nac.CSU.net!nermal!sthoemke
  1470. From: sthoemke@nermal.santarosa.edu (Steve Thoemke)
  1471. Newsgroups: comp.protocols.kermit.misc
  1472. Subject: specifying port number
  1473. Date: 20 Sep 1994 16:11:57 GMT
  1474. Organization: Santa Rosa Junior College, Santa Rosa, CA
  1475. Lines: 10
  1476. Message-Id: <35n1kd$o00@nic-nac.CSU.net>
  1477. Nntp-Posting-Host: nermal.santarosa.edu
  1478. X-Newsreader: TIN [version 1.2 PL2]
  1479. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  1480.  
  1481.  
  1482.  
  1483. --
  1484. I am using Mac Kermit .98(62). How do I specify a port number when
  1485. telneting?
  1486.  
  1487. Any help would be appreciated,
  1488.  
  1489. (Steve Thoemke) sthoemke@nermal.santarosa.edu
  1490.  
  1491.  
  1492. From news@columbia.edu Tue Sep 20 23:25:12 1994
  1493. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA17042
  1494.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 20 Sep 1994 19:25:22 -0400
  1495. Received: by apakabar.cc.columbia.edu id AA11147
  1496.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 20 Sep 1994 19:25:21 -0400
  1497. Path: news.columbia.edu!usenet
  1498. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  1499. Newsgroups: comp.protocols.kermit.misc
  1500. Subject: Re: specifying port number
  1501. Date: 20 Sep 1994 23:25:12 GMT
  1502. Organization: Columbia University
  1503. Lines: 10
  1504. Distribution: World
  1505. Message-Id: <35nr0o$as2@apakabar.cc.columbia.edu>
  1506. References: <35n1kd$o00@nic-nac.CSU.net>
  1507. Nntp-Posting-Host: fdc.cc.columbia.edu
  1508. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  1509.  
  1510. In article <35n1kd$o00@nic-nac.CSU.net> sthoemke@nermal.santarosa.edu (Steve  
  1511. Thoemke) writes:
  1512. > I am using Mac Kermit .98(62). How do I specify a port number when
  1513. > telneting?  Any help would be appreciated,
  1514. Maybe not :-)  Mac Kermit -- any version (yours is ancient) does not
  1515. make TELNET connections.  There is no TCP/IP support in Mac Kermit.
  1516. Perhaps some day.
  1517.  
  1518. - Frank
  1519.  
  1520. From news@columbia.edu Tue Sep 20 23:44:16 1994
  1521. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA17927
  1522.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 20 Sep 1994 19:44:23 -0400
  1523. Received: by apakabar.cc.columbia.edu id AA12424
  1524.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 20 Sep 1994 19:44:20 -0400
  1525. Path: news.columbia.edu!usenet
  1526. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  1527. Newsgroups: comp.protocols.kermit.misc
  1528. Subject: Re: Kermit with expanded memory manager
  1529. Date: 20 Sep 1994 23:44:16 GMT
  1530. Organization: Columbia University
  1531. Lines: 66
  1532. Distribution: World
  1533. Message-Id: <35ns4g$c44@apakabar.cc.columbia.edu>
  1534. References: <35n0io$ddt@zip.eecs.umich.edu>
  1535. Nntp-Posting-Host: fdc.cc.columbia.edu
  1536. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  1537.  
  1538. In article <35n0io$ddt@zip.eecs.umich.edu> rjones@buzzard.eecs.umich.edu
  1539. (Randolph M. Jones) writes:
  1540. > Perhaps this is in the documentation somewhere, but I missed it.  When
  1541. > I run Kermit and I have an expanded memory manager running, I get a lot
  1542. > of noise in the connection.  Lots of beeps and missing characters, and 
  1543. > there's just no way to transfer a file, because too many retries are 
  1544. > necessary.  I have old slow (8250?) UARTs, and I'm connecting at 14,400
  1545. > bps.  Does anyone have an idea what's going on?  Is there any way to fix
  1546. > it short of turning of the expanded memory manager?
  1547. >
  1548. From Joe Doupnik (author of MS-DOS Kermit):
  1549.  
  1550. Randolf,
  1551.  
  1552. Columbia rescued your query while I await Pony Express (sic) delivery of
  1553. the new comp.protocols.kermit.misc group to my campus. Any year now.
  1554.  
  1555. Let's take a few guesses.  Expanded memory needs a 64KB chunk of upper
  1556. memory block and you need to pin down where with a FRAME= command
  1557. argument to your memory manager.  Segment E000 is a common spot, but
  1558. ensure nothing gets into A000-BFFF video.  Do the same in Windows'
  1559. SYSTEM.INI, [enhanced] section. And be generous with the "exclude="
  1560. phrases to protect your machine.
  1561.  
  1562. Memory managers differ a lot about how a machine is switched between
  1563. real and protected mode, and the switch is needed to make visible the
  1564. big chunk of memory devoted to expanded memory (even though only a 64KB
  1565. piece is visible at one time).  If you have competing TSRs which use
  1566. expanded memory (disk caches come to mind) then they will beat up on the
  1567. machine.  Print spoolers are well known hazards for comms programs.  So
  1568. you may need to do a little local tuning to minimize the interference.
  1569.  
  1570. Next, be really sure there is nothing else using the IRQs of your serial
  1571. port.  Some network boards default to IRQ 3 (COM2), for example.  There
  1572. can be no sharing, else trouble.  While doing this, check port address
  1573. blocks for conflicts too; a serial port wants 8 port values starting at
  1574. the stated base, say \x03f8, and overlaps with other boards are possible
  1575. but fatal.
  1576.  
  1577. Please do watch any disk cache because those gems gather bytes for a
  1578. while then take a huge slice of cpu time (with interrupt recognition
  1579. defeated) to hand them out to the disk drive.  My suggestion is remove
  1580. such caching, but you can experiment to see if that is the cause.
  1581.  
  1582. You have probably read a lot about the 16550A buffered UART chips.  They
  1583. do work very well indeed covering up the holes created by greedy TSRs,
  1584. and I recommend you investigate available boards.  Kermit has supported
  1585. that chip in FIFO mode for many years.  For positively difficult outage
  1586. cases you might look into more expensive serial boards which simulate a
  1587. 16550A but with a 1KB buffer rather than the 16 Byte kind on the chip;
  1588. the Hayes ESP board is one I use here.
  1589.  
  1590. Finally, look out for other TSRs such as screen savers and keyboard
  1591. helpers and FAX drivers. Each of them can cause trouble to serial comms
  1592. gear.
  1593.  
  1594.     Joe D.
  1595.  
  1596. [I would only add that MS-DOS Kermit works just fine with expanded memory
  1597. turned on, on thousands of PCs that have 8250 UARTs, including my own, so
  1598. the problem Randolph reports is not endemic to Kermit, but a peculiarity
  1599. of his setup, an unfortunate byproduct of PC architecture.  By the way,
  1600. a big advantage of expanded memory is that Kermit can take advantage of
  1601. it to store your rollback screens, so you can have literally thousands
  1602. of them.  Also...  Be sure to read the section on memory management in
  1603. the KERMIT.BWR file that comes on the MS-DOS Kermit diskette.  - Frank]
  1604.  
  1605. From news@columbia.edu Tue Sep 20 23:57:08 1994
  1606. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA18362
  1607.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 20 Sep 1994 19:57:16 -0400
  1608. Received: by apakabar.cc.columbia.edu id AA13050
  1609.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 20 Sep 1994 19:57:13 -0400
  1610. Path: news.columbia.edu!usenet
  1611. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  1612. Newsgroups: comp.protocols.kermit.misc
  1613. Subject: OS/2 C-Kermit and SET CARRIER
  1614. Date: 20 Sep 1994 23:57:08 GMT
  1615. Organization: Columbia University
  1616. Lines: 27
  1617. Distribution: World
  1618. Message-Id: <35nssk$cnl@apakabar.cc.columbia.edu>
  1619. Nntp-Posting-Host: fdc.cc.columbia.edu
  1620. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  1621.  
  1622. In article <35mobr$ubl@hermes.acs.ryerson.ca> mhemswor@acs.ryerson.ca writes:
  1623. > In <35kvu0$i89@gabriel.keele.ac.uk>, poa02@cc.keele.ac.uk (R. Kimber)  
  1624. writes:
  1625. > >I have a new machine and am trying to get C-Kermit working, using COM2. 
  1626. > >When I try to connect I get a message something like "Carrier not 
  1627. > >detected". 
  1628. > Try "set carrier off" at the C-kermit command prompt.
  1629. It's all in the documentation.  This is normal behavior.  The question is,
  1630. what do you want carrier to do?  Most people want to know that the
  1631. connection has dropped if carrier goes off.  This is what Kermit is set up
  1632. to do by default.  The conundrum is: "If I can't communicate with carrier
  1633. is off, then how am I supposed to make a connection?"  Answer: the DIAL
  1634. command, of course.  C-Kermit's default CARRIER setting is AUTO, meaning
  1635. that carrier is not to be required by the DIAL command (makes sense,
  1636. right?), but it is required by the CONNECT command.
  1637.  
  1638. If you don't want to use the DIAL command, but would rather CONNECT to
  1639. the modem and type AT commands at it, then SET CARRIER OFF before giving
  1640. the CONNECT command.  But remember that when CARRIER is OFF, Kermit will
  1641. not notice if the carrier signal drops.
  1642.  
  1643. Version 5A(190) of C-Kermit gives you a message that pretty much tells
  1644. you this story if you attempt to CONNECT to a serial device that is not
  1645. presenting the carrier signal when Kermit's CARRIER setting is ON or AUTO.
  1646.  
  1647. - Frank
  1648.  
  1649. From news@columbia.edu Tue Sep 20 23:27:27 1994
  1650. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA20783
  1651.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 20 Sep 1994 20:36:57 -0400
  1652. Received: by apakabar.cc.columbia.edu id AA15604
  1653.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 20 Sep 1994 20:36:55 -0400
  1654. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!swrinde!news.dell.com!tadpole.com!uunet!psinntp!adam.cc.sunysb.edu!brook!gene
  1655. From: gene@brook.physics.sunysb.edu (Eugene Tyurin)
  1656. Newsgroups: comp.protocols.kermit.misc
  1657. Subject: Which is the latest Kermit for MacOS?
  1658. Date: 20 Sep 1994 23:27:27 GMT
  1659. Organization: Institute for Theoretical Physics, Stony Brook University
  1660. Lines: 14
  1661. Message-Id: <35nr4v$rd4@adam.cc.sunysb.edu>
  1662. Reply-To: gene@insti.physics.sunysb.edu (Eugene Tyurin)
  1663. Nntp-Posting-Host: brook.physics.sunysb.edu
  1664. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  1665.  
  1666. Hi netters,
  1667.  
  1668. I'm confused: I tried to find Mac binary on kermit.columbia.edu, but
  1669. found none, on umich.edu they have kermit and mackermit files: I took
  1670. the latest one and info said: "Alpha Development version". It was
  1671. 0.99 pl 190 (?) and was dated Nov. '93.
  1672.  
  1673. In a nutshell: where can I get latest kermit binary for MacOS ver. 6?
  1674.  
  1675. Thanks in advance,
  1676. -- 
  1677.   Eugene Tyurin ( ITP, Stony Brook Univ. )
  1678.   E-mail: gene@insti.physics.sunysb.edu ( MIME mail is welcome! )
  1679.      WWW: http://www.physics.sunysb.edu:80/~gene/plan.html
  1680.  
  1681. From news@columbia.edu Wed Sep 21 00:48:36 1994
  1682. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA21633
  1683.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 20 Sep 1994 20:48:41 -0400
  1684. Received: by apakabar.cc.columbia.edu id AA16169
  1685.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 20 Sep 1994 20:48:40 -0400
  1686. Path: news.columbia.edu!usenet
  1687. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  1688. Newsgroups: comp.protocols.kermit.misc
  1689. Subject: Re: Which is the latest Kermit for MacOS?
  1690. Date: 21 Sep 1994 00:48:36 GMT
  1691. Organization: Columbia University
  1692. Lines: 54
  1693. Distribution: World
  1694. Message-Id: <35nvt4$fp4@apakabar.cc.columbia.edu>
  1695. References: <35nr4v$rd4@adam.cc.sunysb.edu>
  1696. Nntp-Posting-Host: fdc.cc.columbia.edu
  1697. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  1698.  
  1699. In article <35nr4v$rd4@adam.cc.sunysb.edu> gene@brook.physics.sunysb.edu 
  1700. (Eugene Tyurin) writes:
  1701. > I'm confused: I tried to find Mac binary on kermit.columbia.edu, but
  1702. > found none, on umich.edu they have kermit and mackermit files: I took
  1703. > the latest one and info said: "Alpha Development version". It was
  1704. > 0.99 pl 190 (?) and was dated Nov. '93.
  1705. > In a nutshell: where can I get latest kermit binary for MacOS ver. 6?
  1706. Mac Kermit 0.991(190) dated 16 August 1994 or later fixes the problem
  1707. with downloading under newer System releases (7.1.x).  Now files can be
  1708. downloaded on newer systems such as Centris 660 AV with OS 7.1, Power
  1709. Mac 7100/66 with OS 7.1.2, etc, without bombs or other nasty effects.
  1710. It should also fix certain binary/text-mode confusion that seemed to
  1711. result in corrupted files when downloading in binary mode.
  1712.  
  1713. The last formal release of Mac Kermit was 0.9(40) in 1988.
  1714. Unfortunately, it does not work very well on newer Macintoshes or
  1715. Systems.  However, newer versions are too big for 512K Macs or below, so
  1716. you'll have to run 0.9(40) on these old models.
  1717.  
  1718. A great deal of work has been done on the program since 1988, but the
  1719. result (so far) is still not of release quality, though it is quite
  1720. suitable for most purposes.
  1721.  
  1722. The current pre-pre-release of Mac Kermit (still far from a final
  1723. release) is 0.991(190), based on C-Kermit 5A(190) Beta.  It is available
  1724. via anonymous FTP from kermit.columbia.edu [128.59.39.2], directory
  1725. kermit/test/text.
  1726.  
  1727. A comprehensive user manual will be published when the final 1.0 release
  1728. is complete.  Sorry, I can't give any reasonable estimate about when
  1729. that will be.  Watch the Kermit Digest (or comp.protocols.kermit, same
  1730. thing) for further announcements.  You can subscribe to the Kermit
  1731. Digest by sending email to LISTSERV@CUVMA.BITNET (or
  1732. LISTSERV@CUVMA.CC.COLUMBIA.EDU) containing the text:
  1733.  
  1734.   SUBSCRIBE I$KERMIT your-personal-name-here
  1735.  
  1736. Mac Kermit files, ftp from kermit.columbia.edu in text mode from the
  1737. kermit/test/text directory:
  1738.  
  1739.   ckm190.hqx -- current prerelease of Mac Kermit in BinHex 4.0 format
  1740.   ckmker.doc -- user documentation for 0.9(40), the previous release (1988)
  1741.   ckmker.ps  -- PostScript version of user documentation for 0.9(40)
  1742.   ckmker.bwr -- Notes about the current prerelease, FAQ's, etc
  1743.   ckmker.fon -- Notes about the new Mac Kermit terminal emulation font
  1744.  
  1745. and in the kermit/charsets directory:
  1746.  
  1747.   maclatin.* -- The new Mac Kermit font itself
  1748.  
  1749. Read the ckmker.bwr ("beware") file for further details.
  1750.  
  1751. (End of ckmaaa.hlp)
  1752.  
  1753. From news@columbia.edu Tue Sep 20 23:47:45 1994
  1754. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA22836
  1755.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 20 Sep 1994 21:08:37 -0400
  1756. Received: by apakabar.cc.columbia.edu id AA17204
  1757.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 20 Sep 1994 21:08:35 -0400
  1758. Newsgroups: comp.protocols.kermit.misc
  1759. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!gatech!swiss.ans.net!malgudi.oar.net!utnetw.utoledo.edu!jupiter!crszczub
  1760. From: crszczub@cse.utoledo.edu (craig szczublewski)
  1761. Subject: Re: C-Kermit for DOS questions
  1762. Message-Id: <CwGCrM.LIB@utnetw.utoledo.edu>
  1763. Sender: news@utnetw.utoledo.edu (News Manager)
  1764. Organization: University of Toledo
  1765. X-Newsreader: TIN [version 1.2 PL0]
  1766. References: <CwCI2q.286@murdoch.acc.Virginia.EDU>
  1767. Date: Tue, 20 Sep 1994 23:47:45 GMT
  1768. Lines: 18
  1769. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  1770.  
  1771. : Is their a version of Kermit for DOS that supports dynamic
  1772. : blocks?  And where can that be obtained?
  1773.  
  1774. try kermit.columbia.edu (anonymous ftp)
  1775. the latest version for dos supports extended length packets
  1776. and sliding windows.
  1777.  
  1778. just follow the directions from there.
  1779.  
  1780. --
  1781.   +---------------------------+      +------------------------------------+
  1782.   |     Craig Szczublewski    |+     |  crszczub@jupiter.cse.utoledo.edu  |+
  1783.   |    Unique Systems, Inc.   ||     |   4gen!unique!craig%uunet.uu.net   ||
  1784.   | 5610 Monroe St. Suite 210 ||     |------------------------------------||
  1785.   |     Sylvania, OH 43560    ||     | A few munce ugo i cudn't evin spel || 
  1786.   |       (419) 882-1113      ||     |      injunear, now i ar won.       ||
  1787.   +---------------------------+|     +------------------------------------+|
  1788.    +---------------------------+      +------------------------------------+
  1789.  
  1790. From news@columbia.edu Tue Sep 20 23:52:39 1994
  1791. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA22845
  1792.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 20 Sep 1994 21:08:49 -0400
  1793. Received: by apakabar.cc.columbia.edu id AA17214
  1794.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 20 Sep 1994 21:08:48 -0400
  1795. Newsgroups: comp.protocols.kermit.misc
  1796. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!gatech!swiss.ans.net!malgudi.oar.net!utnetw.utoledo.edu!jupiter!crszczub
  1797. From: crszczub@cse.utoledo.edu (craig szczublewski)
  1798. Subject: Re: "script" command in C Kermit
  1799. Message-Id: <CwGCzs.MLs@utnetw.utoledo.edu>
  1800. Sender: news@utnetw.utoledo.edu (News Manager)
  1801. Organization: University of Toledo
  1802. X-Newsreader: TIN [version 1.2 PL0]
  1803. References: <35i6s4$3is@cmcl2.NYU.EDU>
  1804. Date: Tue, 20 Sep 1994 23:52:39 GMT
  1805. Lines: 20
  1806. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  1807.  
  1808. As a brief example, it is script expect send
  1809.  
  1810. example: (logging into a unix machine)
  1811.  
  1812.     script ~0 ~r                  <- does not wait for anything, send a <cr>
  1813.     script ~w30login: me          <- wait for 30 sec. for login; send name
  1814.     script password: blahblah     <- wait (default time) and send password
  1815.  
  1816. I recommend de Cruz's (sp?) using C-Kermit book.  It is chock full of
  1817. usefull stuff and examples for building c-kermit scripts.
  1818.  
  1819. --
  1820.   +---------------------------+      +------------------------------------+
  1821.   |     Craig Szczublewski    |+     |  crszczub@jupiter.cse.utoledo.edu  |+
  1822.   |    Unique Systems, Inc.   ||     |   4gen!unique!craig%uunet.uu.net   ||
  1823.   | 5610 Monroe St. Suite 210 ||     |------------------------------------||
  1824.   |     Sylvania, OH 43560    ||     | A few munce ugo i cudn't evin spel || 
  1825.   |       (419) 882-1113      ||     |      injunear, now i ar won.       ||
  1826.   +---------------------------+|     +------------------------------------+|
  1827.    +---------------------------+      +------------------------------------+
  1828.  
  1829. From news@columbia.edu Tue Sep 20 13:14:47 1994
  1830. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA24390
  1831.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 20 Sep 1994 21:39:00 -0400
  1832. Received: by apakabar.cc.columbia.edu id AA19075
  1833.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 20 Sep 1994 21:38:56 -0400
  1834. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!swrinde!cs.utexas.edu!uunet!ftpbox!mothost!delphinium.cig.mot.com!reindeer!kreidler
  1835. From: kreidler@reindeer.cig.mot.com (Joe Kreidler)
  1836. Newsgroups: comp.protocols.kermit.misc
  1837. Subject: Sending Binary Files
  1838. Date: 20 Sep 94 13:14:47 GMT
  1839. Organization: Motorola Cellular Infrastructure Group
  1840. Lines: 14
  1841. Message-Id: <kreidler.780066887@reindeer>
  1842. Nntp-Posting-Host: reindeer.rtsg.mot.com
  1843. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  1844.  
  1845. Can someone inform me how to transfer a binary file with Kermit. I have
  1846. not had any luck.
  1847.  
  1848. Thanks in Advance,
  1849.  
  1850. ---------------------------------------------------------------
  1851. Joe Kreidler                    1501 W Shure Drive - Room 1315
  1852. Motorola Cellular        Arlington Heights, IL 60004
  1853. kreidler@cig.mot.com        708-632-4656
  1854.                 FAX: 708-632-6519
  1855.  
  1856. network: an advanced version of "connect the dots."
  1857. ---------------------------------------------------------------
  1858.  
  1859.  
  1860. From news@columbia.edu Tue Sep 20 20:55:20 1994
  1861. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA03884
  1862.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 21 Sep 1994 00:36:47 -0400
  1863. Received: by apakabar.cc.columbia.edu id AA28299
  1864.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 21 Sep 1994 00:36:46 -0400
  1865. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!uunet!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!vixen.cso.uiuc.edu!newsrelay.iastate.edu!news.iastate.edu!tflynn
  1866. From: tflynn@iastate.edu (Timothy John Flynn)
  1867. Newsgroups: comp.protocols.kermit.misc
  1868. Subject: Re: FTP - KERMIT ==>Problems
  1869. Date: 20 Sep 1994 20:55:20 GMT
  1870. Organization: Iowa State University, Ames, IA
  1871. Lines: 11
  1872. Message-Id: <35ni7o$5hq@news.iastate.edu>
  1873. References: <35dkpa$jud@knot.queensu.ca>
  1874. Nntp-Posting-Host: des1.iastate.edu
  1875. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  1876.  
  1877.  
  1878.  
  1879.  
  1880. make sure you type set file type binary on both sides of kermit, host
  1881. and local.
  1882. -- 
  1883. Timothy J Flynn                         
  1884. (tflynn@iastate.edu)                  
  1885. Fine Arts &                                        
  1886. Computer Science                     
  1887. Larch 1349 Cunningham, Ames, Iowa 50013-0008    phone (515)-294-9022
  1888.  
  1889. From news@columbia.edu Tue Sep 20 20:58:01 1994
  1890. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA03928
  1891.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 21 Sep 1994 00:37:11 -0400
  1892. Received: by apakabar.cc.columbia.edu id AA28314
  1893.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 21 Sep 1994 00:37:10 -0400
  1894. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!uunet!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!vixen.cso.uiuc.edu!newsrelay.iastate.edu!news.iastate.edu!tflynn
  1895. From: tflynn@iastate.edu (Timothy John Flynn)
  1896. Newsgroups: comp.protocols.kermit.misc
  1897. Subject: Newest Kermit Version????
  1898. Date: 20 Sep 1994 20:58:01 GMT
  1899. Organization: Iowa State University, Ames, IA
  1900. Lines: 10
  1901. Message-Id: <35nicp$5kj@news.iastate.edu>
  1902. References: <35dkpa$jud@knot.queensu.ca> <35ni7o$5hq@news.iastate.edu>
  1903. Nntp-Posting-Host: des1.iastate.edu
  1904. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  1905.  
  1906.  
  1907.  
  1908.     What is the most recent kermit version made for IBM?? 
  1909. Please email me only...thanks!
  1910. -- 
  1911. Timothy J Flynn                         
  1912. (tflynn@iastate.edu)                  
  1913. Fine Arts &                                        
  1914. Computer Science                     
  1915. Larch 1349 Cunningham, Ames, Iowa 50013-0008    phone (515)-294-9022
  1916.  
  1917. From news@columbia.edu Tue Sep 20 21:01:16 1994
  1918. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA04699
  1919.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 21 Sep 1994 00:47:19 -0400
  1920. Received: by apakabar.cc.columbia.edu id AA28580
  1921.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 21 Sep 1994 00:47:17 -0400
  1922. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!uunet!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!vixen.cso.uiuc.edu!newsrelay.iastate.edu!news.iastate.edu!tflynn
  1923. From: tflynn@iastate.edu (Timothy John Flynn)
  1924. Newsgroups: comp.protocols.kermit.misc
  1925. Subject: Kermit + Windows for Workgroups??
  1926. Date: 20 Sep 1994 21:01:16 GMT
  1927. Organization: Iowa State University, Ames, IA
  1928. Lines: 11
  1929. Message-Id: <35niis$5q1@news.iastate.edu>
  1930. References: <35dkpa$jud@knot.queensu.ca> <35ni7o$5hq@news.iastate.edu>
  1931. Nntp-Posting-Host: des1.iastate.edu
  1932. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  1933.  
  1934. What is  the best kermit setup for use with windows.  I seem to get alot
  1935. of retry messages when I use these two together...
  1936.  
  1937. please respond by email only!
  1938.  
  1939. -- 
  1940. Timothy J Flynn                         
  1941. (tflynn@iastate.edu)                  
  1942. Fine Arts &                                        
  1943. Computer Science                     
  1944. Larch 1349 Cunningham, Ames, Iowa 50013-0008    phone (515)-294-9022
  1945.  
  1946. From news@columbia.edu Tue Sep 20 23:09:19 1994
  1947. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA05315
  1948.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 21 Sep 1994 00:55:43 -0400
  1949. Received: by apakabar.cc.columbia.edu id AA28820
  1950.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 21 Sep 1994 00:55:42 -0400
  1951. Path: news.columbia.edu!sol.ctr.columbia.edu!newsxfer.itd.umich.edu!isclient.merit.edu!msuinfo!netnews.upenn.edu!dsinc!newsfeed.pitt.edu!gatech!swrinde!howland.reston.ans.net!europa.eng.gtefsd.com!swiss.ans.net!prodigy.com!prodigy.com!not-for-mail
  1952. From: davidsen@usenety1.news.prodigy.com (Bill Davidsen)
  1953. Newsgroups: comp.protocols.kermit.misc
  1954. Subject: Re: Kermit and Zmodem?
  1955. Date: 20 Sep 1994 19:09:19 -0400
  1956. Organization: Prodigy Services
  1957. Lines: 20
  1958. Message-Id: <35nq2v$bmc@usenety1.news.prodigy.com>
  1959. References: <35i5nc$eq9@larry.rice.edu> <CwEpts.9w4@cfanews.harvard.edu>
  1960. Nntp-Posting-Host: loopback.news.prodigy.com
  1961. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  1962.  
  1963. In article <CwEpts.9w4@cfanews.harvard.edu>,
  1964. John Chandler <chandler@cfa0.harvard.edu> wrote:
  1965.  
  1966. :: If I can't get these to work together, how can I get the fastest
  1967. :: transfers with Kermit? Currently, I can only get about 1200 cps on a
  1968. :: 14.4 modem. 
  1969. :
  1970. :1200 cps = 12,000 bps.  That's not bad for a 14,400-bps modem.
  1971.  
  1972. Since all 14.4 modes have v.42 error correcting, the limit is of the
  1973. order of 9.3 bits/byte (V.42 uses 8/byte + overhead), the practical
  1974. limit is around 1550cps, assuming DTE (serial) rates set to 19.2k,
  1975. hardware flow control, measuring transfer of compressed data files.
  1976.  
  1977. I have seen higher, but this is what you might expect with no obvious
  1978. errors in your setup and zmodem or kermit with a bit of tuning.
  1979. -- 
  1980. Speaking *from* but never *for* Prodigy
  1981.     "Pain builds moral fiber"  -my dad
  1982.     "Pain hurts"  -me
  1983.  
  1984. From news@columbia.edu Tue Sep 20 23:04:38 1994
  1985. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA09394
  1986.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 21 Sep 1994 02:29:44 -0400
  1987. Received: by apakabar.cc.columbia.edu id AA02303
  1988.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 21 Sep 1994 02:29:42 -0400
  1989. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!uunet!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!swiss.ans.net!prodigy.com!prodigy.com!not-for-mail
  1990. From: davidsen@usenety1.news.prodigy.com (Bill Davidsen)
  1991. Newsgroups: comp.protocols.kermit.misc
  1992. Subject: Re: Kermit Access/Availability
  1993. Date: 20 Sep 1994 19:04:38 -0400
  1994. Organization: Prodigy Services
  1995. Lines: 57
  1996. Message-Id: <35npq6$9a9@usenety1.news.prodigy.com>
  1997. References: <35i0o4$6s@cville-srv.wam.umd.edu> <1994Sep18.190019.26900@iglou.com> <35lmnu$pp9@hermes.louisville.edu> <35mkle$m0t@eis.wfunet.wfu.edu>
  1998. Nntp-Posting-Host: loopback.news.prodigy.com
  1999. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  2000.  
  2001. In article <35mkle$m0t@eis.wfunet.wfu.edu>,
  2002. Rick Matthews <matthews@wfu.edu> wrote:
  2003.  
  2004. :Old versions of kermit were much slower than zmodem on binary files,
  2005. :but current versions are not.  If you are using the current versions
  2006. :of kermit (C-kermit 5A on Unix and most other hosts, MS-Kermit 3.13
  2007. :for DOS), you can get file transfers slightly faster than zmodem.
  2008.  
  2009. Let's say that having used both protocols for many years, both the old
  2010. and current versions, both UNIX and DOS talking in various combinations,
  2011. using all of the tuning you mention below... I've never seen any
  2012. indication that this is possible, at least for transferring compressed
  2013. data files, which is all I care about.
  2014.  
  2015. I often use Kermit because I don't care about the speed for small files
  2016. and Kermit gives about 95-96% of zmodem speed, but that last few percent
  2017. always eludes me.
  2018.  
  2019. considering that my Kermit is always the latest and my zmodem is about
  2020. four years old, I think that means there are some tricks and
  2021. dependencies in getting the last little bit out of Kermit, and that
  2022. zmodem is a lot faster for the turnkey user.
  2023. :
  2024. :The *default* file transfer parameters are very conservative, and must
  2025. :be changed to get high throughput.  The update file that comes with
  2026. :MS-Kermit 3.13 describes this is some detail.  With the host I
  2027. :download from, I use the following ".kermrc" file, and get fast
  2028. :reliable transfers:
  2029. :
  2030. :
  2031. :set control unprefix all
  2032. :set control prefix 0 1 129
  2033. :set window 5
  2034. :set file type binary
  2035. :set receive packet 2000
  2036.  
  2037. A word about that, I believe that setting the packet size to about the
  2038. amount of data you transfer in one sec over a reliable link (v.42/TCP)
  2039. or about half that for an unreliable link (modem w/o error correction
  2040. and bad line) is optimal. On most systems further tuning gives 1-2% at
  2041. most.
  2042.  
  2043. You may have to set the total buffer size up (set buffers) to get this
  2044. with higher speeds.
  2045.  
  2046. Going through *some* terminal servers I have found that keeping the
  2047. packet size <=800 gives better performance. I set the total buffering
  2048. (packet size * window) to about 5-7 times the one second throughput of
  2049. the line. This is something which may help if you have a system which
  2050. just gives bad throughput all the time. You may have 10-15 windows doing
  2051. this, it works for me.
  2052.  
  2053. hope these experiences are useful to someone.
  2054. -- 
  2055. Speaking *from* but never *for* Prodigy
  2056.     "Pain builds moral fiber"  -my dad
  2057.     "Pain hurts"  -me
  2058.  
  2059. From news@columbia.edu Wed Sep 21 01:50:51 1994
  2060. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA11572
  2061.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 21 Sep 1994 03:33:45 -0400
  2062. Received: by apakabar.cc.columbia.edu id AA03496
  2063.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 21 Sep 1994 03:33:41 -0400
  2064. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!uunet!MathWorks.Com!news.kei.com!news.byu.edu!news
  2065. From: haymoree@newt.ee.byu.edu (Ed Haymore)
  2066. Newsgroups: comp.protocols.kermit.misc
  2067. Subject: Re: Kermit and Zmodem?
  2068. Date: 21 Sep 1994 01:50:51 GMT
  2069. Organization: Brigham Young University
  2070. Lines: 15
  2071. Message-Id: <35o3hr$k0o@bones.et.byu.edu>
  2072. References: <35i5nc$eq9@larry.rice.edu> <CwEpts.9w4@cfanews.harvard.edu> <35nq2v$bmc@usenety1.news.prodigy.com>
  2073. Nntp-Posting-Host: newt.ee.byu.edu
  2074. X-Newsreader: TIN [version 1.2 PL2]
  2075. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  2076.  
  2077. Bill Davidsen (davidsen@usenety1.news.prodigy.com) wrote:
  2078. | In article <CwEpts.9w4@cfanews.harvard.edu>,
  2079. | :1200 cps = 12,000 bps.  That's not bad for a 14,400-bps modem.
  2080.  
  2081. | Since all 14.4 modes have v.42 error correcting, the limit is of the
  2082. | order of 9.3 bits/byte (V.42 uses 8/byte + overhead), the practical
  2083. | limit is around 1550cps, assuming DTE (serial) rates set to 19.2k,
  2084. | hardware flow control, measuring transfer of compressed data files.
  2085.  
  2086. I usually get above 1600cps on compressed files, with the DTE rate at
  2087. 38.4k.  How much overhead is there in V.42?
  2088.  
  2089. --
  2090. Ed Haymore   |   AA6EJ
  2091. ed@byu.edu   |   Linux -- a better OS than DOS.
  2092.  
  2093. From news@columbia.edu Wed Sep 21 01:55:06 1994
  2094. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA11645
  2095.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 21 Sep 1994 03:36:58 -0400
  2096. Received: by apakabar.cc.columbia.edu id AA03589
  2097.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 21 Sep 1994 03:36:57 -0400
  2098. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!uunet!MathWorks.Com!news.kei.com!news.byu.edu!news
  2099. From: haymoree@newt.ee.byu.edu (Ed Haymore)
  2100. Newsgroups: comp.protocols.kermit.misc
  2101. Subject: Re: Exiting kermit without modem hangup
  2102. Date: 21 Sep 1994 01:55:06 GMT
  2103. Organization: Brigham Young University
  2104. Lines: 19
  2105. Distribution: world
  2106. Message-Id: <35o3pq$k0o@bones.et.byu.edu>
  2107. References: <35koc2INNvl@ope001.iao.ford.com> <35n9jm$kui@apakabar.cc.columbia.edu>
  2108. Nntp-Posting-Host: newt.ee.byu.edu
  2109. X-Newsreader: TIN [version 1.2 PL2]
  2110. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  2111.  
  2112. Frank da Cruz (fdc@fdc.cc.columbia.edu) wrote:
  2113. | In article <35koc2INNvl@ope001.iao.ford.com> jamulla@iao.ford.com (John  
  2114. | Jamulla) writes:
  2115. | > Is it possible to exit kermit without dropping the phone line?
  2116. | > 
  2117. | Remember there are hundreds of different Kermit programs.  For some the
  2118. | answer is yes, for others it is no.  In UNIX, of course, the answer is no.
  2119. | A fundamental aspect of the UNIX operating system is that when a process
  2120. | exits, all of its open files are closed.  There is no way around it.
  2121. | But this is not really the question you wanted to ask.
  2122.  
  2123. Actually, I used to exit kermit all the time without hanging up the
  2124. modem...  for my Zyxel, the command "at&d0" tells it not to hang up when
  2125. DTR is dropped.  But now I run term with kermit's shell command (!)
  2126. instead, often as part of my kermit startup script.
  2127.  
  2128. --
  2129. Ed Haymore    |   Duct tape is like the Force.  It has a light side
  2130. ed@byu.edu    |   and a dark side, and it holds the universe together.
  2131.  
  2132. From news@columbia.edu Wed Sep 21 16:58:43 1994
  2133. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA09333
  2134.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 21 Sep 1994 12:58:58 -0400
  2135. Received: by apakabar.cc.columbia.edu id AA26186
  2136.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 21 Sep 1994 12:58:55 -0400
  2137. Path: news.columbia.edu!watsun.cc.columbia.edu!evarts
  2138. From: evarts@watsun.cc.columbia.edu (Maxwell E Evarts)
  2139. Newsgroups: comp.protocols.kermit.misc
  2140. Subject: Re: Kermit And FTP
  2141. Date: 21 Sep 1994 16:58:43 GMT
  2142. Organization: Columbia University
  2143. Lines: 49
  2144. Message-Id: <35poo3$pho@apakabar.cc.columbia.edu>
  2145. References: <35abck$6gc@louie.udel.edu> <35d5gi$6lm@chopin.udel.edu> <35kks2$r5u@strauss.udel.edu>
  2146. Nntp-Posting-Host: watsun.cc.columbia.edu
  2147. Summary: FTP owns the board...
  2148. Keywords: MS-Kermit TCP ETHDRV PC/TCP
  2149. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  2150.  
  2151. >Ah, but by using tnglass, I am limited to one connection.  If I use
  2152. >Kermit in raw TCPIP mode, I can get multiple connections, and better
  2153. >throughput.  Plus, if I shell to dos, I have more room to work with.
  2154. >The only thing I'm looking for is a way to get better file transer
  2155. >performance by using ftp instead, without having to give up any of the
  2156. >goodies that I prefer to use kermit for.
  2157.  
  2158. Unfortunately, the ETHDRV driver that PC/TCP loads owns the board, as it
  2159. sounds like you already understand.  Here's a clip from the the
  2160. MS-Kermit "beware" file that explains indicates PKTMUX as a possible
  2161. solution for the brave (or foolhardy :-) :
  2162.  
  2163. ------ Begin --------
  2164.  
  2165. Kermit always registers for the ARP and IP protocols.  In addition, but only
  2166. if you gave the command SET TCP ADDRESS RARP, it will also register for RARP.
  2167. Remember the rule:
  2168.  
  2169.   ONLY ONE APPLICATION PER PROTOCOL PER NETWORK BOARD!
  2170.  
  2171. That's why you can't run (say) PC-NFS and Kermit TCP/IP connections at
  2172. the same time.  Here are some hints for getting around this:
  2173.  
  2174.  . If PC-NFS comes with an Interrupt-14 redirector (similar to FTP
  2175.    Software's TNGLASS program), you can use that in conjunction with
  2176.    Kermit's SET PORT BIOS1.  Not as good Kermit's built-in TCP/IP
  2177.    TELNET, but better than nothing.
  2178.  
  2179.  . You can experiment with the PKTMUX driver.  This is supposed to let
  2180.    multiple TCP/IP stacks share the same network board.  Nobody knows
  2181.    very much about this, and a quick glance at the user manual is more
  2182.    than a little bit scary.  You can find PKTMUX on kermit.columbia.edu,
  2183.    directory packet-drivers/new, files pktdrv.exe and pktmux*.*.
  2184.  
  2185.  . You can install a second network board and give one to PC-NFS and
  2186.    the other to Kermit.  This is actually the best choice -- network
  2187.    boards don't cost much these days, especially compared to value of the
  2188.    amount of time you'd have to spend futzing with the other approaches.
  2189.  
  2190. ------ End -------
  2191.  
  2192.  
  2193. Hope this helps.
  2194.  
  2195. - Max
  2196. +=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=
  2197. Maxwell Evarts                     evarts@watsun.cc.columbia.edu
  2198. Kermit Distribution
  2199. Columbia University - AcIS         evarts@CUNIXF.BITNET
  2200.  
  2201. From news@columbia.edu Wed Sep 21 17:05:03 1994
  2202. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA10044
  2203.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 21 Sep 1994 13:05:29 -0400
  2204. Received: by apakabar.cc.columbia.edu id AA26675
  2205.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 21 Sep 1994 13:05:23 -0400
  2206. Path: news.columbia.edu!usenet
  2207. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  2208. Newsgroups: comp.protocols.kermit.misc
  2209. Subject: Re: Kermit and Zmodem?
  2210. Date: 21 Sep 1994 17:05:03 GMT
  2211. Organization: Columbia University
  2212. Lines: 20
  2213. Distribution: World
  2214. Message-Id: <35pp3v$q0i@apakabar.cc.columbia.edu>
  2215. References: <jolomoCwHIIH.Jw7@netcom.com>
  2216. Nntp-Posting-Host: fdc.cc.columbia.edu
  2217. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  2218.  
  2219. In article <jolomoCwHIIH.Jw7@netcom.com> jolomo@netcom.com (Joe Morris)  
  2220. writes:
  2221. > On 18 Sep 1994 18:32:58 -0600 Kerry Schwab wrote:
  2222. > > Yes, look at the "REDIRECT" command.  Suppose you were trying to
  2223. > > recieve a file, you'd do "sz <file>", enter the kermit escape char,
  2224. > > then type "REDIRECT rz".
  2225. > Is this on the level? I'm using C-Kermit 5A(189) and don't have
  2226. > the redirect keyword -- which version do I need
  2227. 5A(190).  It's in Beta.
  2228.  
  2229. Anonymous ftp to kermit.columbia.edu, directory kermit/test/bin, binary
  2230. mode, file cku190.tar.Z (or .gz for gunzip).
  2231.  
  2232. In the archive, see the file ckurzsz.ini.
  2233.  
  2234. - Frank
  2235. x
  2236. x
  2237. x
  2238.  
  2239. From news@columbia.edu Wed Sep 21 16:37:17 1994
  2240. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA27364
  2241.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 21 Sep 1994 16:37:17 -0400
  2242. Received: by apakabar.cc.columbia.edu id AA13383
  2243.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 21 Sep 1994 16:37:16 -0400
  2244. Path: news.columbia.edu!panix!MathWorks.Com!udel!nntp.sunbelt.net!pc164-10.org.tec.sc.us!gfoley
  2245. From: gfoley@org.tec.sc.us (Gary A. Foley)
  2246. Newsgroups: comp.protocols.kermit.misc
  2247. Subject: PRTSCRN
  2248. Date: Tue, 20 Sep 1994 15:46:47 UNDEFINED
  2249. Organization: Orangeburg-Calhoun TECH College
  2250. Lines: 2
  2251. Message-Id: <gfoley.13.0109606E@org.tec.sc.us>
  2252. Nntp-Posting-Host: pc164-10.org.tec.sc.us
  2253. X-Newsreader: Trumpet for Windows [Version 1.0 Rev B]
  2254. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  2255.  
  2256. How to print screen?  Using VT100.ini Control F2 turns on the printer and back 
  2257. off but I need to print the displayed screen.
  2258.  
  2259. From news@columbia.edu Wed Sep 21 21:04:50 1994
  2260. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA29421
  2261.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 21 Sep 1994 17:05:19 -0400
  2262. Received: by apakabar.cc.columbia.edu id AA15427
  2263.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 21 Sep 1994 17:05:13 -0400
  2264. Path: news.columbia.edu!usenet
  2265. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  2266. Newsgroups: comp.protocols.kermit.misc
  2267. Subject: Re: PRTSCRN
  2268. Date: 21 Sep 1994 21:04:50 GMT
  2269. Organization: Columbia University
  2270. Lines: 26
  2271. Distribution: World
  2272. Message-Id: <35q75i$f0o@apakabar.cc.columbia.edu>
  2273. References: <gfoley.13.0109606E@org.tec.sc.us>
  2274. Nntp-Posting-Host: fdc.cc.columbia.edu
  2275. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  2276.  
  2277. In article <gfoley.13.0109606E@org.tec.sc.us> gfoley@org.tec.sc.us (Gary A.  
  2278. Foley) writes:
  2279. > How to print screen?  Using VT100.ini Control F2 turns on the printer and
  2280. > back off but I need to print the displayed screen.
  2281. >
  2282. Explained on pages 82-84 of "Using MS-DOS Kermit".  Very briefly, there
  2283. are two ways:
  2284.  
  2285.   1. Just push the Print Screen key.  This is a DOS function, having
  2286.       nothing to do with Kermit.
  2287.  
  2288.   2. Hold down the Ctrl key and press the End key on the numeric
  2289.      keypad.  This is a Kermit function.  By default, it does not
  2290.      actually print the screen, but rather copies it to a disk file
  2291.      whose name is (by default) KERMIT.SCN on the current disk and
  2292.      directory.
  2293.  
  2294. You can use method (2) to print the current screen on the printer by
  2295. first giving the command:
  2296.  
  2297.   SET DUMP PRN
  2298.  
  2299. to direct screen dumps to the PRN "file" (i.e. the printer).  For
  2300. additional details, please read the manual.
  2301.  
  2302. - Frank
  2303.  
  2304. From news@columbia.edu Wed Sep 21 17:14:00 1994
  2305. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA01211
  2306.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 21 Sep 1994 17:27:59 -0400
  2307. Received: by apakabar.cc.columbia.edu id AA17152
  2308.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 21 Sep 1994 17:27:55 -0400
  2309. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!swrinde!cs.utexas.edu!uunet!newsflash.concordia.ca!pavo.concordia.ca!j_yates
  2310. From: j_yates@pavo.concordia.ca (YATES, JODYE)
  2311. Newsgroups: comp.protocols.kermit.misc
  2312. Subject: converting kermit downloads to ascii or WordPerf.
  2313. Date: 21 Sep 1994 12:14 -0500
  2314. Organization: Concordia University
  2315. Lines: 16
  2316. Distribution: world
  2317. Message-Id: <21SEP199412144358@pavo.concordia.ca>
  2318. Nntp-Posting-Host: pavo7.concordia.ca
  2319. News-Software: VAX/VMS VNEWS 1.41    
  2320. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  2321.  
  2322. Hi there. I use Kermit to download text files from somewhere. The problem is
  2323. that when I load the files with a simple text editor there are hard returns
  2324. inserted at the end of each line. Moreover, WordPerfect 6 doesn't even
  2325. recognize the file format when I try to convert these files and when I
  2326. load them straight into WP, there are hard returns all over the place, so
  2327. the text looks awful. My question therefore is how do I convert kermit
  2328. downloads (I think they are 7-bit) to either standard ascii or to WP?
  2329.  
  2330. All help would be appreciated.
  2331.  
  2332. Jodye.
  2333.  
  2334. email:J_Yates@pavo.concordia.ca
  2335.  
  2336.  
  2337.  
  2338.  
  2339. From news@columbia.edu Wed Sep 21 22:04:15 1994
  2340. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA03725
  2341.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 21 Sep 1994 18:04:20 -0400
  2342. Received: by apakabar.cc.columbia.edu id AA19627
  2343.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 21 Sep 1994 18:04:18 -0400
  2344. Path: news.columbia.edu!watsun.cc.columbia.edu!evarts
  2345. From: evarts@watsun.cc.columbia.edu (Maxwell E Evarts)
  2346. Newsgroups: comp.protocols.kermit.misc
  2347. Subject: Re: converting kermit downloads to ascii or WordPerf.
  2348. Date: 21 Sep 1994 22:04:15 GMT
  2349. Organization: Columbia University
  2350. Lines: 28
  2351. Message-Id: <35qakv$j59@apakabar.cc.columbia.edu>
  2352. References: <21SEP199412144358@pavo.concordia.ca>
  2353. Nntp-Posting-Host: watsun.cc.columbia.edu
  2354. Summary: Uhh, not a Kermit problem...
  2355. Keywords: DOS CRLF WP Conversion
  2356. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  2357.  
  2358. In article <21SEP199412144358@pavo.concordia.ca>,
  2359. YATES, JODYE <j_yates@pavo.concordia.ca> wrote:
  2360. >Hi there. I use Kermit to download text files from somewhere. The problem is
  2361. >that when I load the files with a simple text editor there are hard returns
  2362. >inserted at the end of each line. Moreover, WordPerfect 6 doesn't even
  2363. >recognize the file format when I try to convert these files and when I
  2364. >load them straight into WP, there are hard returns all over the place, so
  2365. >the text looks awful. My question therefore is how do I convert kermit
  2366. >downloads (I think they are 7-bit) to either standard ascii or to WP?
  2367.  
  2368. Uhh, I don't think this is really a Kermit problem.  Standard ASCII
  2369. format for DOS means a CR-LF (carriage-return+line-feed) at the end of
  2370. each line, which translates into a "hard return" at the end of each line
  2371. in WP terms.  Any word processor worth its salt ought to be able read
  2372. ASCII text in such a way that converts CR-LF combos into whatever it's
  2373. internal end-of-line convention calls for.
  2374.  
  2375. I've never used WP 6, but in 5.1 you can do it by saying Ctrl-F5,1,3.
  2376.  
  2377. Hope this helps.
  2378.  
  2379. - Max
  2380.  
  2381.  
  2382. +=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=
  2383. Maxwell Evarts                     evarts@watsun.cc.columbia.edu
  2384. Kermit Distribution
  2385. Columbia University - AcIS         evarts@CUNIXF.BITNET
  2386.  
  2387. From news@columbia.edu Wed Sep 21 11:46:39 1994
  2388. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA01555
  2389.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 21 Sep 1994 19:13:08 -0400
  2390. Received: by apakabar.cc.columbia.edu id AA24403
  2391.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 21 Sep 1994 19:13:07 -0400
  2392. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!malgudi.oar.net!swiss.ans.net!howland.reston.ans.net!cs.utexas.edu!news.unt.edu!jove!chrisl
  2393. From: chrisl@jove.acs.unt.edu (Lambright Christian P)
  2394. Newsgroups: comp.protocols.kermit.misc
  2395. Subject: Won't 'take mscustom.ini'
  2396. Date: 21 Sep 1994 11:46:39 GMT
  2397. Organization: University of North Texas
  2398. Lines: 13
  2399. Distribution: inet
  2400. Message-Id: <35p6ev$38e@hermes.unt.edu>
  2401. Nntp-Posting-Host: jove.acs.unt.edu
  2402. X-Newsreader: TIN [version 1.2 PL2]
  2403. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  2404.  
  2405. I'd appreciate any help from someone who know exactly how to get
  2406. the .ini files set in kermit 3.13. Supposedly the kermit.ini will
  2407. use the mscustom.ini if it's there, which it is, but when I try
  2408. it, it doesn't. I changed things in mscustom.ini as suggested but
  2409. repeatedly when invoking 'kermit', it doesn't seem to notice that
  2410. there even is a mscustom.ini. Only those things set/defined in the
  2411. kermit.ini file get called, and I notice that things change only if
  2412. I change them in that file.
  2413.  Also, I want to set up different .ini files to use for either a 
  2414. vax system or a unix. Is this necessary or even desirable?
  2415.  Any help will be appreciated. 
  2416. Thanks.
  2417. -Chris
  2418.  
  2419. From news@columbia.edu Wed Sep 21 11:47:04 1994
  2420. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA01565
  2421.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 21 Sep 1994 19:13:21 -0400
  2422. Received: by apakabar.cc.columbia.edu id AA24409
  2423.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 21 Sep 1994 19:13:19 -0400
  2424. Newsgroups: comp.protocols.kermit.misc
  2425. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!malgudi.oar.net!swiss.ans.net!howland.reston.ans.net!EU.net!sunic!news.chalmers.se!news.gu.se!pew.psy.gu.se!psybk
  2426. From: psybk@pew.psy.gu.se (Bjorn Kihlberg)
  2427. Subject: Re: Sending Binary Files
  2428. Message-Id: <CwHA2I.FH0@news.gu.se>
  2429. Sender: news@news.gu.se (USENET News System)
  2430. Nntp-Posting-Host: pew.psy.gu.se
  2431. Organization: Gothenburg University
  2432. X-Newsreader: TIN [version 1.2 PL2]
  2433. References: <kreidler.780066887@reindeer>
  2434. Date: Wed, 21 Sep 1994 11:47:04 GMT
  2435. Lines: 23
  2436. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  2437.  
  2438. Joe Kreidler (kreidler@reindeer.cig.mot.com) wrote:
  2439. : Can someone inform me how to transfer a binary file with Kermit. I have
  2440. : not had any luck.
  2441.  
  2442. : Thanks in Advance,
  2443.  
  2444. : ---------------------------------------------------------------
  2445. : Joe Kreidler                    1501 W Shure Drive - Room 1315
  2446. : Motorola Cellular        Arlington Heights, IL 60004
  2447. : kreidler@cig.mot.com        708-632-4656
  2448. :                 FAX: 708-632-6519
  2449.  
  2450. : network: an advanced version of "connect the dots."
  2451. : ---------------------------------------------------------------
  2452.  
  2453. Put a line into .kermrc that says: set file type binary
  2454. Curiously enough it does not default to binary. Anyone know why?
  2455.  
  2456. --
  2457. --------------------------------------------------------------------
  2458.  Bjorn Kihlberg                 |    email:  bk@psy.gu.se
  2459.  (C) All Copyrighted            |            bjorn@trillium.se
  2460.  
  2461.  
  2462. From news@columbia.edu Wed Sep 21 23:48:05 1994
  2463. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA03101
  2464.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 21 Sep 1994 19:48:20 -0400
  2465. Received: by apakabar.cc.columbia.edu id AA26599
  2466.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 21 Sep 1994 19:48:12 -0400
  2467. Path: news.columbia.edu!usenet
  2468. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  2469. Newsgroups: comp.protocols.kermit.misc
  2470. Subject: Re: Sending Binary Files
  2471. Date: 21 Sep 1994 23:48:05 GMT
  2472. Organization: Columbia University
  2473. Lines: 19
  2474. Distribution: World
  2475. Message-Id: <35qgnl$psp@apakabar.cc.columbia.edu>
  2476. References: <CwHA2I.FH0@news.gu.se>
  2477. Nntp-Posting-Host: fdc.cc.columbia.edu
  2478. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  2479.  
  2480. In article <CwHA2I.FH0@news.gu.se> psybk@pew.psy.gu.se (Bjorn Kihlberg)  
  2481. writes:
  2482. > Joe Kreidler (kreidler@reindeer.cig.mot.com) wrote:
  2483. > : Can someone inform me how to transfer a binary file with Kermit. I have
  2484. > : not had any luck.
  2485. > Put a line into .kermrc that says: set file type binary
  2486. > Curiously enough it does not default to binary. Anyone know why?
  2487. It has to default to something.  If you don't like it to default to text
  2488. (as it does), then by all means put "set file type binary" into your
  2489. Kermit initialization file (MSKERMIT.INI, .kermrc, CKERMIT.INI, etc,
  2490. depending on which Kermit version we're talking about).
  2491.  
  2492. - Frank
  2493.  
  2494. x
  2495. x
  2496. x
  2497. x
  2498.  
  2499. From news@columbia.edu Wed Sep 21 12:12:30 1994
  2500. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA03134
  2501.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 21 Sep 1994 19:49:19 -0400
  2502. Received: by apakabar.cc.columbia.edu id AA26807
  2503.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 21 Sep 1994 19:49:17 -0400
  2504. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!uunet!MathWorks.Com!news.duke.edu!news-feed-1.peachnet.edu!concert!news.wfu.edu!matthews
  2505. From: matthews@wfu.edu (Rick Matthews)
  2506. Newsgroups: comp.protocols.kermit.misc
  2507. Subject: Re: Sending Binary Files
  2508. Date: 21 Sep 1994 12:12:30 GMT
  2509. Organization: Wake Forest University
  2510. Lines: 14
  2511. Message-Id: <35p7ve$9o4@eis.wfunet.wfu.edu>
  2512. References: <kreidler.780066887@reindeer>
  2513. Nntp-Posting-Host: acg60.wfunet.wfu.edu
  2514. X-Newsreader: TIN [version 1.2 PL2]
  2515. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  2516.  
  2517. Joe Kreidler (kreidler@reindeer.cig.mot.com) wrote:
  2518. : Can someone inform me how to transfer a binary file with Kermit. I have
  2519. : not had any luck.
  2520.  
  2521. Tell the sending kermit
  2522.  
  2523.     set file type binary
  2524.  
  2525.  
  2526. --
  2527. Rick Matthews                     matthews@wfu.edu            Ham radio:
  2528. Wake Forest University            910-759-5340   (Voice)      WA4GSP
  2529. Winston-Salem, NC 27109-7507      910-759-6142   (FAX)
  2530.  
  2531.  
  2532. From news@columbia.edu Wed Sep 21 23:49:46 1994
  2533. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA03149
  2534.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 21 Sep 1994 19:49:54 -0400
  2535. Received: by apakabar.cc.columbia.edu id AA26872
  2536.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 21 Sep 1994 19:49:53 -0400
  2537. Path: news.columbia.edu!usenet
  2538. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  2539. Newsgroups: comp.protocols.kermit.misc
  2540. Subject: Re: Won't 'take mscustom.ini'
  2541. Date: 21 Sep 1994 23:49:46 GMT
  2542. Organization: Columbia University
  2543. Lines: 21
  2544. Distribution: World
  2545. Message-Id: <35qgqq$q7e@apakabar.cc.columbia.edu>
  2546. References: <35p6ev$38e@hermes.unt.edu>
  2547. Nntp-Posting-Host: fdc.cc.columbia.edu
  2548. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  2549.  
  2550. In article <35p6ev$38e@hermes.unt.edu> chrisl@jove.acs.unt.edu (Lambright  
  2551. Christian P) writes:
  2552. > I'd appreciate any help from someone who know exactly how to get
  2553. > the .ini files set in kermit 3.13. Supposedly the kermit.ini will
  2554. > use the mscustom.ini if it's there, which it is, but when I try
  2555. > it, it doesn't. I changed things in mscustom.ini as suggested but
  2556. > repeatedly when invoking 'kermit' ...
  2557. >
  2558. That's because the way that MSCUSTOM.INI gets executed is by a TAKE
  2559. command in MSKERMIT.INI.
  2560.  
  2561. We recommend that you NOT change MSKERMIT.INI, and that you put all of
  2562. your customizations into MSCUSTOM.INI.
  2563.  
  2564. Then you won't get into this kind of trouble.
  2565.  
  2566. - Frank
  2567.  
  2568. x
  2569. x
  2570. x
  2571.  
  2572. From news@columbia.edu Wed Sep 21 17:09:11 1994
  2573. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA11626
  2574.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 21 Sep 1994 22:50:12 -0400
  2575. Received: by apakabar.cc.columbia.edu id AA09731
  2576.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 21 Sep 1994 22:50:10 -0400
  2577. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!swiss.ans.net!prodigy.com!prodigy.com!not-for-mail
  2578. From: davidsen@usenety1.news.prodigy.com (Bill Davidsen)
  2579. Newsgroups: comp.protocols.kermit.misc
  2580. Subject: Re: Kermit and Zmodem?
  2581. Date: 21 Sep 1994 13:09:11 -0400
  2582. Organization: Prodigy Services
  2583. Lines: 23
  2584. Message-Id: <35ppbn$cv9@usenety1.news.prodigy.com>
  2585. References: <35i5nc$eq9@larry.rice.edu> <CwEpts.9w4@cfanews.harvard.edu> <35nq2v$bmc@usenety1.news.prodigy.com> <35o3hr$k0o@bones.et.byu.edu>
  2586. Nntp-Posting-Host: loopback.news.prodigy.com
  2587. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  2588.  
  2589. In article <35o3hr$k0o@bones.et.byu.edu>,
  2590. Ed Haymore <haymoree@newt.ee.byu.edu> wrote:
  2591.  
  2592. :I usually get above 1600cps on compressed files, with the DTE rate at
  2593. :38.4k.  How much overhead is there in V.42?
  2594.  
  2595. Negative overhead, believe it or not. Without V.42 you send 10 bit/byte,
  2596. with start and stop bits. With V.42 you use synchronous data between the
  2597. modems, so you only have (from memory) about 8.3 bits/byte. Kermit
  2598. generally adds enough overhead to bring the overall speed dow to the
  2599. ballpark of 9.3 bits/byte, although fine tuning can improve on this
  2600. somewhat. At 1700cps you are getting about all the modem can give you.
  2601.  
  2602. I quoted 1550 as being a reasonable goal, compared to whatever the
  2603. original poster mentioned (1400?), rather than as an absolute limit. I
  2604. don't doubt that you can get a bit more if you work at it. For
  2605. compressed files I would not expect going above 19.2 to help, but if you
  2606. are running v.42bis (compression in the modem) you can get speeds up to
  2607. 115.2k (but more like 45k on any data I've thought was "typical").
  2608. -- 
  2609. Speaking *from* but never *for* Prodigy
  2610.     "Pain builds moral fiber"  -my dad
  2611.     "Pain hurts"  -me
  2612.  
  2613. From news@columbia.edu Thu Sep 22 00:37:58 1994
  2614. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA19553
  2615.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 22 Sep 1994 01:19:54 -0400
  2616. Received: by apakabar.cc.columbia.edu id AA18152
  2617.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 22 Sep 1994 01:19:52 -0400
  2618. Path: news.columbia.edu!sol.ctr.columbia.edu!news.cs.columbia.edu!news.pipeline.com!uunet!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!news.sprintlink.net!indirect.com!monty
  2619. From: monty@indirect.com (Jim Monty)
  2620. Newsgroups: comp.protocols.kermit.misc
  2621. Subject: [?] MS-Kermit 3.13 and SLIP8250 11.7
  2622. Date: 22 Sep 1994 00:37:58 GMT
  2623. Organization: Internet Direct, Inc.
  2624. Lines: 42
  2625. Message-Id: <35qjl6$1ua@herald.indirect.com>
  2626. Nntp-Posting-Host: bud.indirect.com
  2627. X-Newsreader: TIN [version 1.2 PL2]
  2628. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  2629.  
  2630. Someone asked this question recently in comp.protocols.tcp-ip.ibmpc, but 
  2631. it was never answered:  Why doesn't version 11.7 of the Crynwyr SLIP 
  2632. packet driver SLIP8250 work with MS-Kermit 3.13?
  2633.  
  2634. I load the packet driver with this command:
  2635.  
  2636. C:\SLIP8250>slip8250 0x60 -h slip 4 0x3f8 57600
  2637.  
  2638. After successfully connecting to the remote SLIP server, I escape back to 
  2639. the MS-Kermit prompt and do this:
  2640.  
  2641. MS-Kermit>set port tcp/ip indirect.com
  2642. MS-Kermit>connect
  2643. Cannot attach to an Ethernet Packet Driver or a Novell ODI driver.
  2644.  Unable to initialize TCP/IP system, quitting
  2645. ?Cannot start the connection.
  2646. MS-Kermit>
  2647.  
  2648. I can, at this point, quit MS-Kermit, unload the SLIP8250 version 11.7 
  2649. driver, load SLIP8250 version 9.6, re-invoke MS-Kermit, then establish a 
  2650. TCP/IP connection without any problem.  What's different about the newer 
  2651. version of the packet driver?  I'd like to be able to use it instead of 
  2652. the older version because its -u option allows me to unload it from 
  2653. memory when I'm through with it; version 9.6 lacks this capability.
  2654.  
  2655. Is there a SLIP packet driver available that's any better than SLIP8250
  2656. and works well with MS-Kermit 3.13? 
  2657.  
  2658. And, in case anyone cares, I just started using MS-Kermit and have fallen
  2659. in love with it!  The VT-series terminal emulation is unsurpassed, and the
  2660. built-in TCP/IP ``stack'' (is that the right lingo?) has enabled me to
  2661. access the Internet via a SLIP connection from a wimpy i80386SX machine
  2662. with 2MB of RAM and a 40MB hard drive that doesn't ``do'' Microsoft
  2663. Windows.  The contributions to this news groups by Mr. da Cruz are superb,
  2664. as well.
  2665.  
  2666. Thanks for your help.
  2667.  
  2668.  
  2669. ---
  2670. Jim Monty
  2671. monty@indirect.com
  2672.  
  2673. From news@columbia.edu Wed Sep 21 19:29:59 1994
  2674. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA23370
  2675.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 22 Sep 1994 03:08:17 -0400
  2676. Received: by apakabar.cc.columbia.edu id AA21004
  2677.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 22 Sep 1994 03:08:16 -0400
  2678. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!cs.utexas.edu!convex!convex!insosf1.infonet.net!usenet
  2679. From: phelanp@ins.infonet.net (Patrick Phelan)
  2680. Newsgroups: comp.protocols.kermit.misc
  2681. Subject: MS-Kermit with Intel Satisfaxtion 400/i
  2682. Date: 21 Sep 1994 19:29:59 GMT
  2683. Organization: INS Info Services, Des Moines, IA USA
  2684. Lines: 6
  2685. Message-Id: <35q1jn$nbs@insosf1.infonet.net>
  2686. Reply-To: phelanp@ins.infonet.net
  2687. Nntp-Posting-Host: ins.infonet.net
  2688. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  2689.  
  2690. Has anyone found the magic combination of settings to get MS-Kermit 3.13
  2691. to work with an Intel Satisfaxtion 400/i ?  I keep trying to get this to
  2692. work, but never have enough time to really see it through.
  2693.  
  2694. Thanks in advance for any ideas!
  2695. -PatP
  2696.  
  2697. From news@columbia.edu Wed Sep 21 19:56:12 1994
  2698. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA23791
  2699.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 22 Sep 1994 03:20:58 -0400
  2700. Received: by apakabar.cc.columbia.edu id AA21457
  2701.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 22 Sep 1994 03:20:55 -0400
  2702. Control: newgroup comp.protocols.kermit.misc
  2703. Newsgroups: comp.protocols.kermit.misc
  2704. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!gatech!swrinde!news.dell.com!tadpole.com!uunet!tale
  2705. From: tale@uunet.uu.net (David C Lawrence)
  2706. Subject: newgroup comp.protocols.kermit.misc
  2707. Approved: tale@uunet.uu.net
  2708. Sender: tale@uunet.uu.net (David C Lawrence)
  2709. Date: Wed, 21 Sep 1994 19:56:12 GMT
  2710. Message-Id: <CwHwpp.Lvp@uunet.uu.net>
  2711. Lines: 19
  2712. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  2713.  
  2714. comp.protocols.kermit.misc is an unmoderated newsgroup which passed its vote
  2715. for creation by 233:28 as reported in news.announce.newgroups on 7 Sep 1994.
  2716.  
  2717. For your newsgroups file:
  2718. comp.protocols.kermit.misc    Kermit protocol and software.
  2719.  
  2720. The charter, culled from the call for votes:
  2721.  
  2722.   The unmoderated newsgroup comp.protocols.kermit.misc will be open to all
  2723.   topics related to Kermit protocol and software, including questions and
  2724.   answers regarding the acquisition and use of the software, and discussions
  2725.   of performance and protocol issues.  It is not intended as a software
  2726.   announcement forum or a software distribution method, e.g. posting of
  2727.   massive amounts of source code, although items such as short script
  2728.   programs (e.g. dialing scripts for new kinds of modems) of general interest
  2729.   can be posted, but with the understanding that the definitive source for
  2730.   Kermit software is the repository at Columbia University, and the act of
  2731.   posting an item to this newsgroup does not necessarily enter it into this
  2732.   repository.
  2733.  
  2734. From news@columbia.edu Thu Sep 22 00:34:12 1994
  2735. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA27043
  2736.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 22 Sep 1994 04:40:41 -0400
  2737. Received: by apakabar.cc.columbia.edu id AA22757
  2738.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 22 Sep 1994 04:40:38 -0400
  2739. Path: news.columbia.edu!sol.ctr.columbia.edu!news.cs.columbia.edu!news.pipeline.com!uunet!gatech!howland.reston.ans.net!EU.net!sun4nl!news.nic.surfnet.nl!tudelft.nl!et.tudelft.nl!jbrhebergen
  2740. From: jbrhebergen@et.tudelft.nl
  2741. Newsgroups: comp.protocols.kermit.misc
  2742. Subject: Kermit/SLIP/modem <-- Question!
  2743. Message-Id: <1994Sep22.023412.4321@tudedv.et.tudelft.nl>
  2744. Date: 22 Sep 94 02:34:12 +0200
  2745. Organization: TU-Delft, dpt of Electrical Engineering
  2746. Lines: 21
  2747. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  2748.  
  2749. Hi there,
  2750.  
  2751. I've been using Kermit v3.13 for quite a while now on my 8086 8Mhz PC with a
  2752. 14k4 modem. Recently SLIP has become available here at our university. How do I
  2753. go about rigging Kermit for use with SLIP? Is it possible? Our sys admin says
  2754. no but I am not convinced. All I need is a slip-packetdriver right? and set
  2755. some kermit settings, right?
  2756.  
  2757. Can anyone enlighten me on this subject?
  2758.  
  2759. Thanks!
  2760.  
  2761. Jan
  2762.  
  2763.  
  2764. ------------------------------------------------------------------------------
  2765. J.B. Rhebergen (JayBee)                   tel: +31 15 144660
  2766. M. Gouweloospoort 8                       fax: +31 15 144660 (phone first)
  2767. 2611 JN  Delft                            e-mail-1: JBRHEBERGEN@et.tudelft.nl
  2768. The Netherlands                           e-mail-2: rheberg@morra.et.tudelft.nl
  2769. ------------------------------------------------------------------------------
  2770.  
  2771. From news@columbia.edu Thu Sep 22 07:37:07 1994
  2772. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA12983
  2773.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 22 Sep 1994 07:24:36 -0400
  2774. Received: by apakabar.cc.columbia.edu id AA25147
  2775.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 22 Sep 1994 07:24:34 -0400
  2776. Path: news.columbia.edu!sol.ctr.columbia.edu!usc!howland.reston.ans.net!EU.net!Germany.EU.net!news.dfn.de!zeus.rbi.informatik.uni-frankfurt.de!terra.wiwi.uni-frankfurt.de!news.th-darmstadt.de!fauern!rz.unibw-muenchen.de!applsrv!p41bsmk
  2777. From: p41bsmk@applsrv.rz.unibw-muenchen.de (Peter Schmolck)
  2778. Newsgroups: comp.protocols.kermit.misc
  2779. Subject: 16550A, PCI (Was: Computer hangs when line is dropped)
  2780. Date: 22 Sep 1994 07:37:07 GMT
  2781. Organization: University of the Federal Armed Forces Munich
  2782. Lines: 52
  2783. Message-Id: <35rc73$l8s@archsrv.rz.unibw-muenchen.de>
  2784. References: <35pesr$sun@liberator.et.tudelft.nl>
  2785. Nntp-Posting-Host: applsrv.rz.unibw-muenchen.de
  2786. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  2787.  
  2788. >I recently got a new PC. I transferred Kermit and all the scripts
  2789. >it uses from my old to my new system. 
  2790. [......]
  2791. >On my old system (286, EMS, 16550A) this worked perfect. On my
  2792. >new system (486, PCI, EMM386, 16550A) the computer hangs as soon
  2793. >as the line is dropped after filling in all info.
  2794.  
  2795. >If I start Kermit under Windows, everything works just fine, but then
  2796. >the serial ports just look like 8250's and all benefits of high speed
  2797. >UARTS are therefore lost.
  2798.  
  2799. In another usegroup (can't rem. exact name, something like 
  2800. "ms-windows.comm") someone posted a Microsoft info file that sayed 16550A 
  2801. support for *DOS programs* is a new feature of WfW 3.11 that Win3.1 did 
  2802. not have.
  2803.  
  2804. [....]
  2805.  
  2806. >Are there any known problems with PCI systems, 16550A's and Kermit?
  2807.  
  2808. I also changed from my old (486, VESA, no 16550A, no ethernet card) to a
  2809. new PC (Pentium PCI system with 16550A, ethernet card) and also have 2 new
  2810. problems now: 
  2811.  
  2812. (1) Sometimes, but not very often, when I first start Kermit, the system
  2813. hangs, and the Ctrl-Alt-Del would not help. I guess this non-stable error
  2814. happens when Kermit analyses the Comm-Port. With my two former PCs I
  2815. already observed that Kermit *sometimes* (not very often) cannot correctly
  2816. initialize the Comm Port, with a message like "wrong hardware found for
  2817. port" or something similar. After exiting Kermit and restarting it for a
  2818. 2nd, sometimes third, time everything would work fine. 
  2819.  
  2820. (2) I used to run my connection with 19200 Baud before. This is still
  2821. possible with my new PC in terminal mode and when transferring
  2822. "non-binary" files, however when I try to download zip-Files I get lots of
  2823. retries. No problem with 9600 Baud. The 19200-Baud problem is independent
  2824. of whether or not I start Kermit under Windows (WfW3.11), and independent
  2825. of COM2Fifo=0/1 in system.ini. It also happens when I use Win-Kermit
  2826. (Win100) instead (although, due to the maximal block length 96, the chances
  2827. of getting the entire file before reaching the max retries limit are
  2828. better). 
  2829.  
  2830. So, I also would like to hear if there are known problems with PCI, 
  2831. 16550A and Kermit.
  2832.  
  2833. Thanx in advance
  2834. Peter
  2835. --
  2836. Peter Schmolck                                p41bsmk@rz.unibw-muenchen.de
  2837. Department of Education                       Phone :     +49-89-6004-2056
  2838. Univ. of the Federal Armed Forces Munich      Fax   :     +49-89-6004-3968
  2839. 85577 NEUBIBERG, GERMANY    
  2840.  
  2841. From news@columbia.edu Thu Sep 22 12:38:18 1994
  2842. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA02612
  2843.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 22 Sep 1994 08:38:29 -0400
  2844. Received: by apakabar.cc.columbia.edu id AA26848
  2845.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 22 Sep 1994 08:38:25 -0400
  2846. Path: news.columbia.edu!usenet
  2847. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  2848. Newsgroups: comp.protocols.kermit.misc
  2849. Subject: Re: Kermit/SLIP/modem <-- Question!
  2850. Date: 22 Sep 1994 12:38:18 GMT
  2851. Organization: Columbia University
  2852. Lines: 50
  2853. Distribution: World
  2854. Message-Id: <35rtrq$q6s@apakabar.cc.columbia.edu>
  2855. References: <1994Sep22.023412.4321@tudedv.et.tudelft.nl>
  2856. Nntp-Posting-Host: fdc.cc.columbia.edu
  2857. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  2858.  
  2859. In article <1994Sep22.023412.4321@tudedv.et.tudelft.nl>  
  2860. jbrhebergen@et.tudelft.nl writes:
  2861. > I've been using Kermit v3.13 for quite a while now on my 8086 8Mhz PC with
  2862. > a 14k4 modem. Recently SLIP has become available here at our university.
  2863. > How do I go about rigging Kermit for use with SLIP? Is it possible? Our
  2864. > sys admin says no but I am not convinced. All I need is a slip-packetdriver
  2865. > right? and set some kermit settings, right?
  2866. Right.  From the KERMIT.HLP file on your MS-DOS Kermit 3.13 diskette:
  2867.  
  2868. MAKING SLIP CONNECTIONS
  2869.  
  2870. To make a SLIP (Serial Line IP) connection, follow these steps:
  2871.  
  2872. 1. SET PORT 1
  2873.    (or whichever serial port you will be using for the SLIP connection).
  2874.  
  2875. 2. SET SPEED 19200
  2876.    (or whatever speed you will be using)
  2877.  
  2878. 3. SET FLOW RTS/CTS (or NONE)
  2879.    Don't use Xon/Xoff flow control on a SLIP connection!  SLIP and Xon/Xoff
  2880.    are incompatible with each other.
  2881.  
  2882. 4. Establish a connection to the terminal server or other device that will be
  2883.    providing SLIP service.  Determine the IP address and other information
  2884.    (e.g. gateway address) that it has assigned to you.    Normally, these are
  2885.    displayed on your screen before the terminal server enters SLIP mode.
  2886.  
  2887. 5. Escape back to the MS-Kermit prompt and EXIT from MS-DOS Kermit.  The
  2888.    connection is left open.
  2889.  
  2890. 6. Start the SLIP8250 driver, telling it to use the same port (hex address
  2891.    and IRQ number must be supplied) and speed (decimal) used in (1) and
  2892.    (2) above, and to use hardware flow control (-h), for example:
  2893.  
  2894.       slip8250 0x60 -h slip 4 0x3f8 19200
  2895.  
  2896. 7. Start MS-DOS Kermit again.  Do NOT give it a SET PORT command for the
  2897.    serial port where SLIP is running.  Instead, give the SET TCP ADDRESS,
  2898.    SET TCP GATEWAY, and other necessary SET TCP commands.  Then, to make
  2899.    a connection, use SET PORT TCP <address>, where <address> is the IP
  2900.    hostname or address of the IP host you want to connect to.
  2901.  
  2902. Note: In version 3.13 and later, it is also possible to obtain BOOTP service
  2903. on a SLIP connection if your SLIP server is configured to provide it (for
  2904. example, Cisco terminal servers can do this).  Also, MS-DOS Kermit 3.13's
  2905. SHOW COMMUNICATIONS command will display the IP address of the BOOTP server.
  2906.  
  2907. - Frank
  2908.  
  2909. From news@columbia.edu Thu Sep 22 13:01:22 1994
  2910. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA03707
  2911.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 22 Sep 1994 09:01:31 -0400
  2912. Received: by apakabar.cc.columbia.edu id AA27662
  2913.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 22 Sep 1994 09:01:29 -0400
  2914. Path: news.columbia.edu!usenet
  2915. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  2916. Newsgroups: comp.protocols.kermit.misc
  2917. Subject: Re: MS-Kermit with Intel Satisfaxtion 400/i
  2918. Date: 22 Sep 1994 13:01:22 GMT
  2919. Organization: Columbia University
  2920. Lines: 92
  2921. Distribution: World
  2922. Message-Id: <35rv72$r0c@apakabar.cc.columbia.edu>
  2923. References: <35q1jn$nbs@insosf1.infonet.net>
  2924. Nntp-Posting-Host: fdc.cc.columbia.edu
  2925. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  2926.  
  2927. In article <35q1jn$nbs@insosf1.infonet.net>
  2928. phelanp@ins.infonet.net (Patrick Phelan) writes:
  2929. > Has anyone found the magic combination of settings to get MS-Kermit 3.13
  2930. > to work with an Intel Satisfaxtion 400/i ?  I keep trying to get this to
  2931. > work, but never have enough time to really see it through.
  2932. Not to my knowledge, although we have had quite a few inquiries about it.
  2933. We do not have an Intel modem on hand, nor any documentation.  If we had
  2934. the documentation, we could easily adapt one of the existing modem dialing
  2935. scripts.  So could you.  Here is our current collection of modem scripts:
  2936.  
  2937.     Modem Type             DOS Filename  Internet
  2938.  
  2939.   *  AT&T DataPort 14400    DATAPORT.SCR  kermit/a/msmdatap.scr
  2940.   *  Boca 14.4 Faxmodem     BOCA.SCR      kermit/a/msmboca.scr
  2941.   *  Digicom Connection144+ CONN144P.SCR  kermit/a/msmc144p.scr
  2942.      Hayes 1200 or 2400     HAYES.SCR     kermit/a/msmhayes.scr
  2943.   *  Hayes Ultra 144        ULTRA144.SCR  kermit/a/msmultra.scr
  2944.   *  Multitech MT1432       MT1432.SCR    kermit/a/msmmt1432.scr
  2945.   *  Penril Alliance V.32   PENRIL.SCR    kermit/a/msmpenril.scr
  2946.   *  Practical Peripherals  PP14400.SCR   kermit/a/msmpp14400.scr
  2947.      Rolm CBX DCM           ROLM.SCR      kermit/a/msmrolm.scr
  2948.   *  SupraFAXmodem V.32bis  SUPRA.SCR     kermit/a/msmsupra.scr
  2949.   *  Telebit QBlazer V.32   QBLAZER.SCR   kermit/a/msmqblazer.scr
  2950.   *  Telebit T3000 V.32bis  T3000.SCR     kermit/a/msmt3000.scr
  2951.   *  US Robotics Sportster  SPORT.SCR     kermit/a/msmsport.scr
  2952.      Vadic VA2400PA         VA2400PA.SCR  kermit/a/msmva2400.scr
  2953.   ** VIVA 2442ef FAX/MODEM  VIVA.SCR      kermit/a/msmviva.scr
  2954.   *  Wang 14/14i or 14/14e  WANG14.SCR    kermit/a/msmwang14.scr
  2955.   *  Zoltrix Platinum 14400 PP14400.SCR   kermit/a/msmpp14400.scr
  2956.   *  Zoom Telephonics 14400 ZOOM.SCR      kermit/a/msmzoom.scr
  2957.   *  ZyXEL 1496             ZYXEL.SCR     kermit/a/msmzyxel.scr
  2958.  
  2959. The ones marked with a single asterisk are for high-speed modems.  They
  2960. are all constructed more or less according to the following steps:
  2961.  
  2962.  1. Get out your modem manual.
  2963.  
  2964.  2. Determine the highest speed at which your modem "autobauds", i.e.
  2965.     at which you can type "AT" and carriage return, and the AT echoes,
  2966.     and the modem prints OK.  Hopefully this will be 57600 or 38400.
  2967.     Include a SET SPEED command for this speed.
  2968.  
  2969.  3. Make sure the modem is set to echo and to return word result codes.
  2970.     The commands are usually E1 V1 Q0.
  2971.  
  2972.  4. Make sure your modem is set to hang up when the computer turns off
  2973.     the DTR signal.  The command is usually something like &D2.
  2974.  
  2975.  5. Make sure your modem is set to turn off its DCD (Data Carrier Detect)
  2976.     signal if the connection drops.  The command is usually &C1.  This
  2977.     doesn't actually make any difference in MS-DOS Kermit 3.13 and earlier,
  2978.     but it's good practice, and can be used with SET CARRIER ON in future
  2979.     releases of MS-DOS Kermit.
  2980.  
  2981.  6. Issue the commands to enable modulation negotiation starting at the
  2982.     highest level your modem supports (V.34 or V.32bis), and working down.
  2983.     The commands are highly modem-specific.  Unnecessary for modems that
  2984.     do this automatically based on the interface speed.
  2985.  
  2986.  7. Enable RTS/CTS hardware flow control.  This is ESSENTIAL when using
  2987.     error-correcting modems.  Again, the command is modem-specific.
  2988.  
  2989.  8. Make the modem pass the BREAK signal through transparently.
  2990.  
  2991.  9. Enable error correction with fallback, preferably V.42 with fallback
  2992.     to the various MNP levels.
  2993.  
  2994. 10. Enable data compression with fallback, preferably V.42bis with
  2995.     fallback to the various MNP levels.
  2996.  
  2997. 11. IMPORTANT: Enable "automatic speed buffering", i.e. make sure the
  2998.     modem's interface speed is fixed, i.e. does not change in response the
  2999.     modulation negotiation.
  3000.  
  3001. 12. Using any of the high-speed modem scripts as a template, substitute
  3002.     your modem's commands for the ones in the script.
  3003.  
  3004. 13. Check the remainder of the script to make sure the modem responses
  3005.     used there agree with those given by your modem (CONNECT, BUSY,
  3006.     NO DIALTONE, etc).
  3007.  
  3008. 14. Include comments saying what each command does.
  3009.  
  3010. 15. Test your script thoroughly, then send it by e-mail to
  3011.     kermit@columbia.edu so we can add it to our collection.  In the
  3012.     comment section, unless you have strenuous objections, include your
  3013.     name and e-mail address in case questions come up later.
  3014.  
  3015. That should do it.
  3016.  
  3017. - Frank
  3018.  
  3019. From news@columbia.edu Thu Sep 22 13:28:46 1994
  3020. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA21810
  3021.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 22 Sep 1994 12:42:54 -0400
  3022. Received: by apakabar.cc.columbia.edu id AA10485
  3023.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 22 Sep 1994 12:42:52 -0400
  3024. Newsgroups: comp.protocols.kermit.misc
  3025. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!ub!acsu.buffalo.edu!cederman
  3026. From: cederman@cs.buffalo.edu (John D Cederman)
  3027. Subject: Uploading Text files
  3028. Message-Id: <CwJ9Fz.Mnn@acsu.buffalo.edu>
  3029. Sender: nntp@acsu.buffalo.edu
  3030. Nntp-Posting-Host: armstrong.cs.buffalo.edu
  3031. Organization: UB
  3032. X-Newsreader: TIN [version 1.2 PL2]
  3033. Date: Thu, 22 Sep 1994 13:28:46 GMT
  3034. Lines: 10
  3035. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  3036.  
  3037. Hello again,
  3038.      Here I am to talk about my solution for the problem with
  3039. Qmodem/Zmodem.  If you change your protocal to Kermit and use Kermit to
  3040. upload Text files...  You will not have any problems.  And don't worry
  3041. about a 0.0001 seconds of time one way or the other.
  3042.  
  3043.  
  3044. (cederman)
  3045.  
  3046.  
  3047.  
  3048. From news@columbia.edu Thu Sep 22 17:56:06 1994
  3049. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA00310
  3050.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 22 Sep 1994 14:29:41 -0400
  3051. Received: by apakabar.cc.columbia.edu id AA17770
  3052.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 22 Sep 1994 14:29:38 -0400
  3053. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!swiss.ans.net!malgudi.oar.net!news.ysu.edu!yfn.ysu.edu!am856
  3054. From: am856@yfn.ysu.edu (Michael DeCosta III)
  3055. Newsgroups: comp.protocols.kermit.misc
  3056. Subject: Re: Won't 'take mscustom.ini'
  3057. Date: 22 Sep 1994 17:56:06 GMT
  3058. Organization: St. Elizabeth Hospital, Youngstown, OH
  3059. Lines: 35
  3060. Message-Id: <35sgfm$onn@news.ysu.edu>
  3061. References: <35qgqq$q7e@apakabar.cc.columbia.edu> <35p6ev$38e@hermes.unt.edu>
  3062. Reply-To: am856@yfn.ysu.edu (Michael DeCosta III)
  3063. Nntp-Posting-Host: yfn2.ysu.edu
  3064. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  3065.  
  3066.  
  3067. In a previous article, fdc@fdc.cc.columbia.edu (Frank da Cruz) says:
  3068.  
  3069. >In article <35p6ev$38e@hermes.unt.edu> chrisl@jove.acs.unt.edu (Lambright  
  3070. >Christian P) writes:
  3071. >> I'd appreciate any help from someone who know exactly how to get
  3072. >> the .ini files set in kermit 3.13. Supposedly the kermit.ini will
  3073. >> use the mscustom.ini if it's there, which it is, but when I try
  3074. >> it, it doesn't. I changed things in mscustom.ini as suggested but
  3075. >> repeatedly when invoking 'kermit' ...
  3076. >>
  3077. >That's because the way that MSCUSTOM.INI gets executed is by a TAKE
  3078. >command in MSKERMIT.INI.
  3079. >
  3080. >We recommend that you NOT change MSKERMIT.INI, and that you put all of
  3081. >your customizations into MSCUSTOM.INI.
  3082. >
  3083. >Then you won't get into this kind of trouble.
  3084. >
  3085. >- Frank
  3086. >
  3087. >x
  3088. >x
  3089. >x
  3090. >
  3091.  
  3092. It could also be that if you are using MSKERMIT.INI in a non-PC clone
  3093. MSDOS environment.
  3094.  
  3095. There is a minor bug in older MSKERMIT.INIs that will never  take
  3096. MSCUSTOM.INI if MSKERMIT determines it is not being called from
  3097. a Kermit that identifies itself as IBM PC version.
  3098.  
  3099. I sent Frank the fix a while back. I imagine it is in the lastest
  3100. release?
  3101.  
  3102. From news@columbia.edu Thu Sep 22 16:47:13 1994
  3103. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA09245
  3104.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 22 Sep 1994 16:28:26 -0400
  3105. Received: by apakabar.cc.columbia.edu id AA25888
  3106.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 22 Sep 1994 16:28:24 -0400
  3107. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!cs.utexas.edu!uunet!heifetz.msen.com!jamaican
  3108. From: jamaican@garnet.msen.com (Dwight Hugget)
  3109. Newsgroups: comp.protocols.kermit.misc
  3110. Subject: Redialing, Divide overflow error
  3111. Date: 22 Sep 1994 16:47:13 GMT
  3112. Organization: Msen, Inc. -- Ann Arbor, MI (account info: +1 313 998-4562)
  3113. Lines: 43
  3114. Message-Id: <35sceh$dgt$1@heifetz.msen.com>
  3115. Nntp-Posting-Host: garnet.msen.com
  3116. X-Newsreader: TIN [version 1.2 PL2]
  3117. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  3118.  
  3119.  
  3120. I running kermit on my PC and I've tweaked the number of redial attempts
  3121. from the default to a high number (500 to be exact). I did this b/c
  3122. my local access number is usually busy so it's easier to keep trying.
  3123. I usually get connected after having some coffee or midnight snack.
  3124.  
  3125. I get a divide overflow after a varying number of attempts.
  3126. Any idea why???? I'll include a segment of my dialing script:
  3127. ____________________________________________________________
  3128.  
  3129. :BEGIN            ; Now DIAL.
  3130. clear          ; Clear INPUT buffer.
  3131. ;***********************************
  3132. ;*lets  stretch out the retry count*
  3133. ;***********************************
  3134. ;set count 5                     ; Dialing retry counter, 5 tries allowed.
  3135. set count 500        ; my count
  3136. echo Dialing \%1 on \v(line) at \v(speed) bps, wait...
  3137. echo
  3138. pause 1
  3139. goto dial                       ; 1st time, skip pause and Redialing message
  3140.  
  3141. :REDIAL
  3142. ;set alarm 30
  3143. ;pause 30       ; Wait 30 seconds before redialing.
  3144. ;****************************************
  3145. ;*lets be quicker about redials an so on*
  3146. ;*alarm and pause number should be =    *
  3147. ;****************************************
  3148. set alarm 3
  3149. pause 3
  3150. if not alarm errfail {Dialing canceled.}
  3151. echo Redialing...               ; Message for redialing.
  3152. pause 1
  3153. --------------------------------------------------------------
  3154.  
  3155. --
  3156. =======================================================================
  3157. =             "Artist seeks Boss with vision impairment."             =
  3158. =  0/       __o                                              ,,,      = 
  3159. = <|      _`\< _                                            (o o)     =
  3160. = / >  --(_)/ (_)------- jamaican@garnet.msen.com -------ooO-(_)-Ooo- = 
  3161. =======================================================================
  3162.  
  3163. From news@columbia.edu Thu Sep 22 03:27:31 1994
  3164. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA15100
  3165.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 22 Sep 1994 17:35:59 -0400
  3166. Received: by apakabar.cc.columbia.edu id AA00785
  3167.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 22 Sep 1994 17:35:56 -0400
  3168. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!malgudi.oar.net!kira.cc.uakron.edu!neoucom.edu!news.ysu.edu!news.cps.udayton.edu!cis.ohio-state.edu!math.ohio-state.edu!cs.utexas.edu!swrinde!gatech!concert!news.wfu.edu!matthews
  3169. From: matthews@wfu.edu (Rick Matthews)
  3170. Newsgroups: comp.protocols.kermit.misc
  3171. Subject: Re: Kermit Access/Availability
  3172. Date: 22 Sep 1994 03:27:31 GMT
  3173. Organization: Wake Forest University
  3174. Lines: 33
  3175. Message-Id: <35qtj3$ms6@eis.wfunet.wfu.edu>
  3176. References: <35i0o4$6s@cville-srv.wam.umd.edu> <1994Sep18.190019.26900@iglou.com> <35lmnu$pp9@hermes.louisville.edu> <35mkle$m0t@eis.wfunet.wfu.edu> <35npq6$9a9@usenety1.news.prodigy.com>
  3177. Nntp-Posting-Host: acg60.wfunet.wfu.edu
  3178. X-Newsreader: TIN [version 1.2 PL2]
  3179. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  3180.  
  3181. Bill Davidsen (davidsen@usenety1.news.prodigy.com) wrote:
  3182. : In article <35mkle$m0t@eis.wfunet.wfu.edu>,
  3183. : Rick Matthews <matthews@wfu.edu> wrote:
  3184.  
  3185. : :Old versions of kermit were much slower than zmodem on binary files,
  3186. : :but current versions are not.  If you are using the current versions
  3187. : :of kermit (C-kermit 5A on Unix and most other hosts, MS-Kermit 3.13
  3188. : :for DOS), you can get file transfers slightly faster than zmodem.
  3189. <snip>
  3190. : I've never seen any
  3191. : indication that this is possible, at least for transferring compressed
  3192. : data files, which is all I care about.
  3193.  
  3194. : I often use Kermit because I don't care about the speed for small files
  3195. : and Kermit gives about 95-96% of zmodem speed, but that last few percent
  3196. : always eludes me.
  3197.  
  3198. I just transferred a GIF file and a text file, each about 180Kbytes.
  3199. On the GIF file, I timed Kermit at 96.5% of zmodem speed, close to
  3200. your experience with compressed files.  For the text file, Kermit was
  3201. 106.2% of zmodem speed.
  3202.  
  3203. : zmodem is a lot faster for the turnkey user.
  3204.  
  3205. Agreed.  Kermit is not for the turnkey user, unless the user is
  3206. unusually patient.  Creating the three-line ".kermrc" file is
  3207. essential for reasonable throughput with kermit.
  3208.  
  3209. --
  3210. Rick Matthews                     matthews@wfu.edu            Ham radio:
  3211. Wake Forest University            910-759-5340   (Voice)      WA4GSP
  3212. Winston-Salem, NC 27109-7507      910-759-6142   (FAX)
  3213.  
  3214.  
  3215. From news@columbia.edu Thu Sep 22 02:14:22 1994
  3216. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA16159
  3217.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 22 Sep 1994 17:49:40 -0400
  3218. Received: by apakabar.cc.columbia.edu id AA01646
  3219.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 22 Sep 1994 17:49:31 -0400
  3220. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  3221. From: jrd@cc.usu.edu (Joe Doupnik)
  3222. Newsgroups: comp.protocols.kermit.misc
  3223. Subject: Re: Won't 'take mscustom.ini'
  3224. Message-Id: <1994Sep22.081422.27598@cc.usu.edu>
  3225. Date: 22 Sep 94 08:14:22 MDT
  3226. References: <35p6ev$38e@hermes.unt.edu>
  3227. Distribution: inet
  3228. Organization: Utah State University
  3229. Lines: 22
  3230. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  3231.  
  3232. In article <35p6ev$38e@hermes.unt.edu>, chrisl@jove.acs.unt.edu (Lambright Christian P) writes:
  3233. > I'd appreciate any help from someone who know exactly how to get
  3234. > the .ini files set in kermit 3.13. Supposedly the kermit.ini will
  3235. > use the mscustom.ini if it's there, which it is, but when I try
  3236. > it, it doesn't. I changed things in mscustom.ini as suggested but
  3237. > repeatedly when invoking 'kermit', it doesn't seem to notice that
  3238. > there even is a mscustom.ini. Only those things set/defined in the
  3239. > kermit.ini file get called, and I notice that things change only if
  3240. > I change them in that file.
  3241. >  Also, I want to set up different .ini files to use for either a 
  3242. > vax system or a unix. Is this necessary or even desirable?
  3243. >  Any help will be appreciated. 
  3244. > Thanks.
  3245. > -Chris
  3246. ----------
  3247.     Perhaps the name "kermit.ini" is the culprit. MS-DOS Kermit
  3248. expects name MSKERMIT.INI; that's built into the program. That file,
  3249. in turn, can contain a line saying TAKE MSCUSTOM.INI and so on.
  3250.     Joe D.
  3251. P.S. This group has just appeared in my (Utah State Univ) News reader
  3252. so I can now follow the conversations (or make a good try). Realize that
  3253. News may take one (my case) or two days to reach outlying districts.
  3254.  
  3255. From news@columbia.edu Thu Sep 22 13:30:48 1994
  3256. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA02189
  3257.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 22 Sep 1994 23:21:57 -0400
  3258. Received: by apakabar.cc.columbia.edu id AA20732
  3259.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 22 Sep 1994 23:21:55 -0400
  3260. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!gatech!newsfeed.pitt.edu!dsinc!netnews.upenn.edu!msuinfo!harbinger.cc.monash.edu.au!news.cs.su.oz.au!news.adelaide.edu.au!gateway.dircsa.org.au!gateway.dircsa.org.au!not-for-mail
  3261. From: arthur@gateway.dircsa.org.au (Arthur Marsh)
  3262. Newsgroups: comp.protocols.kermit.misc
  3263. Subject: MS-Kermit with FOSSIL
  3264. Date: 22 Sep 1994 23:00:48 +0930
  3265. Organization: DIRCSA - Disability Information and Resource Centre
  3266. Lines: 15
  3267. Message-Id: <35s0u8$kds@gateway.dircsa.org.au>
  3268. Nntp-Posting-Host: gateway.dircsa.org.au
  3269. X-Newsreader: TIN [version 1.1 PL8]
  3270. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  3271.  
  3272. I currently use David Nugent's BNU 1.70 FOSSIL driver at home
  3273. with Binkleyterm, BGFAX and MS-Kermit, using the command line:
  3274.  
  3275.   Bnu /F+ /L:1=19200 /M- /T=256 /R=4096 /Z2
  3276.  
  3277. MS-Kermit is quite happy with a simple set port 2 command to
  3278. work with BNU loaded on COM2:.
  3279.  
  3280. Are there any pitfalls to using kermit this way?
  3281.  
  3282.  
  3283. -- 
  3284. Arthur Marsh, telephone +61-8-370-2365, fax +61-8-370-2133, +61-8-223-5082 
  3285.                arthur@gateway.dircsa.org.au, arthur@cswamp.apana.org.au
  3286. .endofsig
  3287.  
  3288. From news@columbia.edu Thu Sep 22 02:22:44 1994
  3289. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA10134
  3290.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 23 Sep 1994 01:50:20 -0400
  3291. Received: by apakabar.cc.columbia.edu id AA26751
  3292.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 23 Sep 1994 01:50:18 -0400
  3293. Path: news.columbia.edu!sol.ctr.columbia.edu!usc!howland.reston.ans.net!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  3294. From: jrd@cc.usu.edu (Joe Doupnik)
  3295. Newsgroups: comp.protocols.kermit.misc
  3296. Subject: Re: converting kermit downloads to ascii or WordPerf.
  3297. Message-Id: <1994Sep22.082245.27601@cc.usu.edu>
  3298. Date: 22 Sep 94 08:22:44 MDT
  3299. References: <21SEP199412144358@pavo.concordia.ca>
  3300. Distribution: world
  3301. Organization: Utah State University
  3302. Lines: 17
  3303. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  3304.  
  3305. In article <21SEP199412144358@pavo.concordia.ca>, j_yates@pavo.concordia.ca (YATES, JODYE) writes:
  3306. > Hi there. I use Kermit to download text files from somewhere. The problem is
  3307. > that when I load the files with a simple text editor there are hard returns
  3308. > inserted at the end of each line. Moreover, WordPerfect 6 doesn't even
  3309. > recognize the file format when I try to convert these files and when I
  3310. > load them straight into WP, there are hard returns all over the place, so
  3311. > the text looks awful. My question therefore is how do I convert kermit
  3312. > downloads (I think they are 7-bit) to either standard ascii or to WP?
  3313. > All help would be appreciated.
  3314. > Jodye.
  3315. ---------
  3316.     Word processor files are NOT TEXT(!), they are pure data for that
  3317. particular program. Which means they are loaded to the gills with binary
  3318. formatting and whatnot material throughout. Treat such files as BINARY.
  3319.     Joe D.
  3320.  
  3321. From news@columbia.edu Thu Sep 22 23:31:48 1994
  3322. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA10665
  3323.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 23 Sep 1994 02:04:09 -0400
  3324. Received: by apakabar.cc.columbia.edu id AA27060
  3325.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 23 Sep 1994 02:04:08 -0400
  3326. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!cs.utexas.edu!not-for-mail
  3327. From: ramon@gcti.com (Ramon F Herrera)
  3328. Newsgroups: comp.protocols.kermit.misc
  3329. Subject: man page for kermit?
  3330. Date: 22 Sep 1994 18:31:48 -0500
  3331. Organization: UTexas Mail-to-News Gateway
  3332. Lines: 5
  3333. Sender: nobody@cs.utexas.edu
  3334. Message-Id: <199409222327.TAA20123@vega.gcti.com>
  3335. Nntp-Posting-Host: news.cs.utexas.edu
  3336. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  3337.  
  3338. Is there a man page for kermit somewhere??
  3339.  
  3340. -Ramon Herrera
  3341. GCT, Inc.
  3342.  
  3343.  
  3344. From news@columbia.edu Thu Sep 22 12:11:54 1994
  3345. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA16240
  3346.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 23 Sep 1994 04:37:39 -0400
  3347. Received: by apakabar.cc.columbia.edu id AA00301
  3348.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 23 Sep 1994 04:37:37 -0400
  3349. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!uunet!MathWorks.Com!news.duke.edu!concert!news.wfu.edu!matthews
  3350. From: matthews@wfu.edu (Rick Matthews)
  3351. Newsgroups: comp.protocols.kermit.misc
  3352. Subject: Re: converting kermit downloads to ascii or WordPerf.
  3353. Date: 22 Sep 1994 12:11:54 GMT
  3354. Organization: Wake Forest University
  3355. Lines: 37
  3356. Distribution: world
  3357. Message-Id: <35rsaa$1dj@eis.wfunet.wfu.edu>
  3358. References: <21SEP199412144358@pavo.concordia.ca>
  3359. Nntp-Posting-Host: acg60.wfunet.wfu.edu
  3360. X-Newsreader: TIN [version 1.2 PL2]
  3361. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  3362.  
  3363. YATES, JODYE (j_yates@pavo.concordia.ca) wrote:
  3364. : Hi there. I use Kermit to download text files from somewhere. The problem is
  3365. : that when I load the files with a simple text editor there are hard returns
  3366. : inserted at the end of each line. Moreover, WordPerfect 6 doesn't even
  3367. : recognize the file format when I try to convert these files and when I
  3368. : load them straight into WP, there are hard returns all over the place, so
  3369. : the text looks awful. My question therefore is how do I convert kermit
  3370. : downloads (I think they are 7-bit) to either standard ascii or to WP?
  3371.  
  3372. You need to do a little homework to find out how your files differ
  3373. from standard ascii, and whether the hard returns exist in the
  3374. original file.  On a UNIX system you can use the command 
  3375.  
  3376.     xd -c filename
  3377.  
  3378. to view the file byte by byte, including control codes and codes
  3379. greater than 127.  If you see \n (linefeed) scattered through your
  3380. text, the hard returns are already there, so you may be stuck.
  3381.  
  3382. If there are other problems, you have a couple of options.  The UNIX
  3383. "col" command will strip backspaces and reverse line feeds from the
  3384. file.  If there are other control codes that are giving WordPerfect a
  3385. hard time, I have a short Fortran program that strips all control
  3386. codes except newline and all eight-bit codes from your file.  It also
  3387. corrects for backspaces, leaving only the "topmost" character in the
  3388. file.  The program does use the functions "getc" and "putc" for single
  3389. character I/O.  These commons are available on many systems, but are
  3390. certainly not standard Fortran and may not be available on your
  3391. system.  It would be a piece of cake for a C programmer to translate
  3392. program, and getc and putc are standard in C.  If you are interested,
  3393. I'll email it to you.
  3394.  
  3395. --
  3396. Rick Matthews                     matthews@wfu.edu            Ham radio:
  3397. Wake Forest University            910-759-5340   (Voice)      WA4GSP
  3398. Winston-Salem, NC 27109-7507      910-759-6142   (FAX)
  3399.  
  3400.  
  3401. From news@columbia.edu Thu Sep 22 21:26:37 1994
  3402. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA16385
  3403.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 23 Sep 1994 04:44:16 -0400
  3404. Received: by apakabar.cc.columbia.edu id AA00383
  3405.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 23 Sep 1994 04:44:15 -0400
  3406. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!newsxfer.itd.umich.edu!news.itd.umich.edu!qiongw
  3407. From: qiongw@srvr1.engin.umich.edu (greek)
  3408. Newsgroups: comp.protocols.kermit.misc
  3409. Subject: Kermit changed the file name from lower case to upper case, why???
  3410. Date: 22 Sep 1994 21:26:37 GMT
  3411. Organization: University of Michigan
  3412. Lines: 4
  3413. Message-Id: <35ssqd$rud@lastactionhero.rs.itd.umich.edu>
  3414. Nntp-Posting-Host: greek.engin.umich.edu
  3415. X-Newsreader: TIN [version 1.2 PL2]
  3416. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  3417.  
  3418. I am using kermit on my linux box.  It changed the file name form lower case to upper case when I download files from remote host.  Any ideas?  How can I prevent this?  Thanks!
  3419.  
  3420.     -Joan
  3421.  
  3422.  
  3423. From news@columbia.edu Thu Sep 22 21:08:26 1994
  3424. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA17279
  3425.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 23 Sep 1994 05:13:58 -0400
  3426. Received: by apakabar.cc.columbia.edu id AA00624
  3427.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 23 Sep 1994 05:13:57 -0400
  3428. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!EU.net!sun4nl!news.nic.surfnet.nl!tudelft.nl!liberator.et.tudelft.nl!dutepp6.et.tudelft.nl!richard
  3429. From: richard@dutepp6.et.tudelft.nl (Richard Kooijman)
  3430. Newsgroups: comp.protocols.kermit.misc
  3431. Subject: Re: Computer hangs when line is dropped.
  3432. Date: 22 Sep 1994 21:08:26 GMT
  3433. Organization: Delft University of Technology, Dept. of Electrical Engineering
  3434. Lines: 37
  3435. Distribution: World
  3436. Message-Id: <35sroa$26u@liberator.et.tudelft.nl>
  3437. References: <35pesr$sun@liberator.et.tudelft.nl> <35plgl$ldg@apakabar.cc.columbia.edu>
  3438. Nntp-Posting-Host: dutepp6.et.tudelft.nl
  3439. X-Newsreader: NN version 6.5.0 #1 (NOV)
  3440. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  3441.  
  3442. fdc@fdc.cc.columbia.edu (Frank da Cruz) writes:
  3443.  
  3444. >> On my old system (286, EMS, 16550A) this worked perfect. On my
  3445. >> new system (486, PCI, EMM386, 16550A) the computer hangs as soon
  3446. >> as the line is dropped after filling in all info.
  3447. >> 
  3448. >This kind of thing is most typically caused by a system peculiarity:
  3449.  
  3450. > . Noisy bus.
  3451.  
  3452. As I said two other comm programs have absolutely no troubles using this
  3453. setup: Linux (minicom to be precise) and Terminate.
  3454.  
  3455. > . A TSR that is grabbing interrupts that Kermit is supposed to see;
  3456. >   unload all your TSRs, drivers, etc, to isolate the problem.
  3457.  
  3458. Done that, and again, other programs do work.
  3459.  
  3460. > . A buggy modem.  Many internal modems have been known to cause this
  3461. >   kind of behavior -- please read the KERMIT.BWR file.
  3462.  
  3463. I still have the external modem, the same as with the old system.
  3464.  
  3465. >Also, be sure you are using the current version of Kermit, 3.13, at 
  3466. >the current patch level, which is 21.
  3467.  
  3468. Used that one.
  3469.  
  3470. The symptoms I experience are the same as those reported in another follow-up
  3471. to my questions:
  3472.     1. Sometimes the computer locks immediately when Kermit starts
  3473.     2. But more often it hangs when the line is dropped by the modem
  3474.  
  3475. BTW although I have a PCI system, the multi-i/o card is 16-bit ISA.
  3476.  
  3477.  
  3478. Richard.
  3479.  
  3480. From news@columbia.edu Thu Sep 22 11:27:55 1994
  3481. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA17367
  3482.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 23 Sep 1994 05:16:45 -0400
  3483. Received: by apakabar.cc.columbia.edu id AA00840
  3484.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 23 Sep 1994 05:16:43 -0400
  3485. Path: news.columbia.edu!sol.ctr.columbia.edu!math.ohio-state.edu!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  3486. From: jrd@cc.usu.edu (Joe Doupnik)
  3487. Newsgroups: comp.protocols.kermit.misc
  3488. Subject: Re: [?] MS-Kermit 3.13 and SLIP8250 11.7
  3489. Message-Id: <1994Sep22.172755.27645@cc.usu.edu>
  3490. Date: 22 Sep 94 17:27:55 MDT
  3491. References: <35qjl6$1ua@herald.indirect.com>
  3492. Organization: Utah State University
  3493. Lines: 47
  3494. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  3495.  
  3496. In article <35qjl6$1ua@herald.indirect.com>, monty@indirect.com (Jim Monty) writes:
  3497. > Someone asked this question recently in comp.protocols.tcp-ip.ibmpc, but 
  3498. > it was never answered:  Why doesn't version 11.7 of the Crynwyr SLIP 
  3499. > packet driver SLIP8250 work with MS-Kermit 3.13?
  3500. > I load the packet driver with this command:
  3501. > C:\SLIP8250>slip8250 0x60 -h slip 4 0x3f8 57600
  3502. > After successfully connecting to the remote SLIP server, I escape back to 
  3503. > the MS-Kermit prompt and do this:
  3504. > MS-Kermit>set port tcp/ip indirect.com
  3505. > MS-Kermit>connect
  3506. > Cannot attach to an Ethernet Packet Driver or a Novell ODI driver.
  3507. >  Unable to initialize TCP/IP system, quitting
  3508. > ?Cannot start the connection.
  3509. > MS-Kermit>
  3510. > I can, at this point, quit MS-Kermit, unload the SLIP8250 version 11.7 
  3511. > driver, load SLIP8250 version 9.6, re-invoke MS-Kermit, then establish a 
  3512. > TCP/IP connection without any problem.  What's different about the newer 
  3513. > version of the packet driver?  I'd like to be able to use it instead of 
  3514. > the older version because its -u option allows me to unload it from 
  3515. > memory when I'm through with it; version 9.6 lacks this capability.
  3516. ------------
  3517.     Ok, folks. I have the answer to the puzzle. SLIP8250.COM v11.x is
  3518. broken compared to earlier releases. In particular it fails to support
  3519. the request to obtain a hardware/MAC address. Older versions said none,
  3520. but no error, for slip. The v11.7 code does not seem to even want to
  3521. discuss the matter and returns an error for the function request.
  3522.     Kermit sees the error response and bails out.
  3523.     Suggestions and workarounds. For the moment I suggest one of: 
  3524.     - trying Etherslip, which makes an Ethernet framed pkt to the app 
  3525. and adds a fake Ethernet address for inquiring apps. I haven't tried v11.x
  3526. yet.
  3527.     - go back to SLIP8250.COM v9.x (the one without a transmit buffer, 
  3528. which will be my rewrite to work solidly, see below),
  3529.     - wait til we shove MSK v3.14 out the door with a workaround just 
  3530. written to deal with this Crynwr v11.x problem.
  3531.  
  3532.         Etherslip is file ethersl.com. Same core material as my stuff.
  3533. I placed a copy of my v9.1 SLIP8250.COM program in directory kermit
  3534. on netlab2.usu.edu in case you can't find a pre-v11.x copy. I don't
  3535. want to mix this with the v11.x archive for obvious reasons.
  3536.     Joe D.
  3537. P.S. Russ: let's unbreak SLIP8250 please. Tnx.
  3538.  
  3539. From news@columbia.edu Thu Sep 22 14:30:39 1994
  3540. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA17975
  3541.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 23 Sep 1994 05:38:00 -0400
  3542. Received: by apakabar.cc.columbia.edu id AA01020
  3543.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 23 Sep 1994 05:37:58 -0400
  3544. Newsgroups: comp.protocols.kermit.misc
  3545. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!uunet!MathWorks.Com!europa.eng.gtefsd.com!newsxfer.itd.umich.edu!ncar!uchinews!iitmax!thssjyh
  3546. From: thssjyh@iitmax.acc.iit.edu (Jianqing Hu)
  3547. Subject: Re: 16550A, PCI (Was: Computer hangs when line is dropped)
  3548. Message-Id: <1994Sep22.143039.22376@iitmax.iit.edu>
  3549. Organization: Illinois Institute of Technology, Chicago
  3550. References: <35pesr$sun@liberator.et.tudelft.nl> <35rc73$l8s@archsrv.rz.unibw-muenchen.de>
  3551. Date: Thu, 22 Sep 94 14:30:39 GMT
  3552. Lines: 27
  3553. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  3554.  
  3555. In article <35rc73$l8s@archsrv.rz.unibw-muenchen.de> p41bsmk@applsrv.rz.unibw-muenchen.de (Peter Schmolck) writes:
  3556. >>I recently got a new PC. I transferred Kermit and all the scripts
  3557. >>it uses from my old to my new system. 
  3558. >[......]
  3559. >[....]
  3560. >
  3561. >>Are there any known problems with PCI systems, 16550A's and Kermit?
  3562. >
  3563. >I also changed from my old (486, VESA, no 16550A, no ethernet card) to a
  3564. >new PC (Pentium PCI system with 16550A, ethernet card) and also have 2 new
  3565. >problems now: 
  3566. >
  3567.  
  3568.  
  3569. Pentium 90 PCI mother board is at its very early stage, so there are a lot
  3570. of BIOS or mother board problems.
  3571.  
  3572. Your best bet is return to your dealer and ask for a New BIOS or exchange
  3573. for a new board.
  3574.  
  3575. One of my friend is a PC technician for a local PC store and he told me
  3576. this point. He himself bought a system and Windows wouldn't run if there
  3577. was a 5.25" floppy drive. He changed the board and the problem is gone.
  3578. However , the newer BIOS , the new board still has trouble to send strings
  3579. to COM port and as a result, comm program's auto dialer won't work for most
  3580. of time and zmodem never works.
  3581.  
  3582.  
  3583. From news@columbia.edu Thu Sep 22 15:07:00 1994
  3584. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA18221
  3585.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 23 Sep 1994 05:46:17 -0400
  3586. Received: by apakabar.cc.columbia.edu id AA01144
  3587.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 23 Sep 1994 05:46:16 -0400
  3588. Newsgroups: comp.protocols.kermit.misc
  3589. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!uunet!MathWorks.Com!news.duke.edu!convex!cs.utexas.edu!utnut!erin.utoronto.ca!tuzo.erin!aveglio
  3590. From: aveglio@tuzo.erin (Andrew Veglio)
  3591. Subject: Kermit under Telix terminal program
  3592. Message-Id: <CwJDzp.7C4@credit.erin.utoronto.ca>
  3593. Sender: news@credit.erin.utoronto.ca (Usenet News)
  3594. Nntp-Posting-Host: tuzo.erin
  3595. Organization: Erindale College, University of Toronto, Canada
  3596. Date: Thu, 22 Sep 1994 15:07:00 GMT
  3597. Lines: 24
  3598. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  3599.  
  3600.   I have been having no luck in transfering files using the Kermit protocol 
  3601. as implemented under Telix V3.15.  This program works well with my system
  3602. using the other protocols (eg. Zmodem,Xmodem,etc.) but with kermit it 
  3603. does not seem to be abel to talk to the Sun Unix box at work.
  3604.   I can connect and use Telix terminal mode quite well to operate the 7E1 
  3605. Unix connection, but when I initiate a Kermit transfer Telix times-out 
  3606. without transfering anything.
  3607.   All help would be appreciated as Telix is quite popular here and Kermit 
  3608. is the only protocal supported on the Unix server.  
  3609.  
  3610. Many Thanks
  3611. Andrew
  3612.                         _      __
  3613. Andrew Veglio                 / \    / /\    aveglio@credit.erin.utoronto.ca    
  3614. Micro/Electronics Department    / ^ \  / / /                     (905)828-3715
  3615. University of Toronto           / ___ \/ / /                         CANADA    
  3616. Erindale College, Room 2004   /_/ __\__/ /                
  3617.                               \_\/  \___/          
  3618.  
  3619. -- 
  3620.                         _      __
  3621. Andrew Veglio                 / \    / /\    aveglio@credit.erin.utoronto.ca    
  3622. Micro/Electronics Department    / ^ \  / / /                     (905)828-3715
  3623. University of Toronto           / ___ \/ / /                         CANADA    
  3624.  
  3625.  some of those
  3626. require a matching terminating sequence before proceeding, and some can
  3627. turn on transparent printing (a favorite way of hanging the machine until
  3628. DOS itself finally gives up trying an unavailable printer). Modems ought
  3629. not do this, but there we are. To try bypassing the problems, try a) press
  3630. ALT =  to reset the terminal emulator, b) issue hangup at the Kermit prompt
  3631. to get there first.
  3632.     Joe D.
  3633.  
  3634. From news@columbia.edu Thu Sep 22 17:00:39 1994
  3635. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA18681
  3636.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 23 Sep 1994 06:04:13 -0400
  3637. Received: by apakabar.cc.columbia.edu id AA01293
  3638.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 23 Sep 1994 06:04:11 -0400
  3639. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!uunet!gatech!gt-news!prism!prism!not-for-mail
  3640. From: dsrekrg@prism.gatech.edu (Rob Gibson)
  3641. Newsgroups: comp.protocols.kermit.misc
  3642. Subject: Re: MS-Kermit with Intel Satisfaxtion 400/i
  3643. Date: 22 Sep 1994 13:00:39 -0400
  3644. Organization: Georgia Institute of Technology
  3645. Lines: 5
  3646. Sender: dsrekrg@prism.gatech.edu
  3647. Message-Id: <35sd7n$1p8@acmey.gatech.edu>
  3648. References: <35q1jn$nbs@insosf1.infonet.net>
  3649. Nntp-Posting-Host: acmey.gatech.edu
  3650. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  3651.  
  3652. I have never had a problem using kermit with my Intel 400/i.
  3653. I have the 400/i set to use com1 and hardware flow control
  3654. and I have kermit set to use RTS/CTS flow control.
  3655. -- 
  3656. Rob Gibson   ARPA: dsrekrg@prism.gatech.edu
  3657.  
  3658. From news@columbia.edu Thu Sep 22 04:57:24 1994
  3659. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA17989
  3660.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 23 Sep 1994 07:39:24 -0400
  3661. Received: by apakabar.cc.columbia.edu id AA02614
  3662.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 23 Sep 1994 07:39:23 -0400
  3663. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!uunet!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  3664. From: jrd@cc.usu.edu (Joe Doupnik)
  3665. Newsgroups: comp.protocols.kermit.misc
  3666. Subject: SLIP8250
  3667. Message-Id: <1994Sep22.105724.27621@cc.usu.edu>
  3668. Date: 22 Sep 94 10:57:24 MDT
  3669. Organization: Utah State University
  3670. Lines: 51
  3671. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  3672.  
  3673. >
  3674. >From: monty@indirect.com (Jim Monty)
  3675. >
  3676. >Someone asked this question recently in comp.protocols.tcp-ip.ibmpc, but 
  3677. >it was never answered:  Why doesn't version 11.7 of the Crynwyr SLIP 
  3678. >packet driver SLIP8250 work with MS-Kermit 3.13?
  3679. >
  3680. >I load the packet driver with this command:
  3681. >
  3682. >C:\SLIP8250>slip8250 0x60 -h slip 4 0x3f8 57600
  3683. >
  3684. >After successfully connecting to the remote SLIP server, I escape back to 
  3685. >the MS-Kermit prompt and do this:
  3686. >
  3687. >MS-Kermit>set port tcp/ip indirect.com
  3688. >MS-Kermit>connect
  3689. >Cannot attach to an Ethernet Packet Driver or a Novell ODI driver.
  3690. > Unable to initialize TCP/IP system, quitting
  3691. >?Cannot start the connection.
  3692. >MS-Kermit>
  3693. >
  3694. >I can, at this point, quit MS-Kermit, unload the SLIP8250 version 11.7 
  3695. >driver, load SLIP8250 version 9.6, re-invoke MS-Kermit, then establish a 
  3696. >TCP/IP connection without any problem.  What's different about the newer 
  3697. >version of the packet driver?  I'd like to be able to use it instead of 
  3698. >the older version because its -u option allows me to unload it from 
  3699. >memory when I'm through with it; version 9.6 lacks this capability.
  3700. >
  3701. >Is there a SLIP packet driver available that's any better than SLIP8250
  3702. >and works well with MS-Kermit 3.13? 
  3703. >
  3704. >And, in case anyone cares, I just started using MS-Kermit and have fallen
  3705. >in love with it!  The VT-series terminal emulation is unsurpassed, and the
  3706. >built-in TCP/IP ``stack'' (is that the right lingo?) has enabled me to
  3707. >access the Internet via a SLIP connection from a wimpy i80386SX machine
  3708. >with 2MB of RAM and a 40MB hard drive that doesn't ``do'' Microsoft
  3709. >Windows.  The contributions to this news groups by Mr. da Cruz are superb,
  3710. >as well.
  3711. >
  3712. >Thanks for your help.
  3713. >Jim Monty
  3714. >monty@indirect.com
  3715. -----------
  3716.     I may have to reissue the SLIP8250 Packet Driver I wrote and then
  3717. someone modified for the latest Crynwr release. What I did worked fine
  3718. here. But I have received reports from others that the latest Crynwr edition
  3719. has troubles. We will have to see how to offer my item without introducing
  3720. confusion in the PD arena. [Russ, if you are reading this lets get together
  3721. and solve the problem.]
  3722.         Joe D.
  3723.  
  3724.  
  3725. tart Kermit under Windows (WfW3.11), and independent
  3726. >of COM2Fifo=0/1 in system.ini. It also happens when I use Win-Kermit
  3727. >(Win100) instead (although, due to the maximal block length 96, the chances
  3728. >of getting the entire file before reaching the max retries limit are
  3729. >better). 
  3730.  
  3731.     Windows Kermit is embarassing to everyone. May we please suggest
  3732. that you get what we refer to as "the real thing", MS-DOS Kermit? MSK
  3733. runs nicely in Windows, even though it is a Windows-aware DOS program.
  3734.  
  3735. >So, I also would like to hear if there are known problems with PCI, 
  3736. >16550A and Kermit.
  3737.  
  3738.     The big square chip simulating 16550As on some Pentium machines,
  3739. SMC FDC37C665 UART, definitly has problems. Some vendors are issuing
  3740. special programs to clear the chip after a boot. MSK v3.14 does pretty
  3741. much the same job transparently, which you will see when MSK 3.14 comes out.
  3742.     Joe D.
  3743.  
  3744. >Peter Schmolck                                p41bsmk@rz.unibw-muenchen.de
  3745. >Department of Education                       Phone :     +49-89-6004-2056
  3746. >Univ. of the Federal Armed Forces Munich      Fax   :     +49-89-6004-3968
  3747. >85577 NEUBIBERG, GERMANY    
  3748.  
  3749.  
  3750.  
  3751.  
  3752. From news@columbia.edu Fri Sep 23 14:43:34 1994
  3753. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA29581
  3754.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 23 Sep 1994 10:44:27 -0400
  3755. Received: by apakabar.cc.columbia.edu id AA10100
  3756.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 23 Sep 1994 10:44:24 -0400
  3757. Path: news.columbia.edu!usenet
  3758. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  3759. Newsgroups: comp.protocols.kermit.misc
  3760. Subject: Re: Kermit Access/Availability
  3761. Date: 23 Sep 1994 14:43:34 GMT
  3762. Organization: Columbia University
  3763. Lines: 28
  3764. Distribution: World
  3765. Message-Id: <35upim$9ol@apakabar.cc.columbia.edu>
  3766. References: <35qtj3$ms6@eis.wfunet.wfu.edu>
  3767. Nntp-Posting-Host: fdc.cc.columbia.edu
  3768. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  3769.  
  3770. In article <35qtj3$ms6@eis.wfunet.wfu.edu> matthews@wfu.edu (Rick Matthews)  
  3771. writes:
  3772. > : zmodem is a lot faster for the turnkey user.
  3773. > Agreed.  Kermit is not for the turnkey user, unless the user is
  3774. > unusually patient.  Creating the three-line ".kermrc" file is
  3775. > essential for reasonable throughput with kermit.
  3776. Matter of preference.  If by "turnkey user" you mean somebody who wants a 
  3777. file transfer to either be fast or else fail, you're right.  On the other 
  3778. hand, if a turnkey user is someone who wants a transfer to work out of the
  3779. box, even if it is slow, then I'd say Kermit is the ticket.
  3780.  
  3781. This is an old and neverending debate and there's no right or wrong.
  3782. In many situations, Zmodem is just fine -- particularly in the BBS world
  3783. where one does not find the many obstructions that exist on mainframes
  3784. and minicomputers, networks, and so on.  It works out of the box, and goes
  3785. fast.  But as soon as you bring multiuser computers, terminal servers,
  3786. networks, PADs, IBM mainframes, and assorted other factors besides just
  3787. two PCs and two modems into the picture, users have to do just as much 
  3788. tuning to get Zmodem to work as Kermit users have to do to get Kermit --
  3789. which already works in these environments -- to go fast.
  3790.  
  3791. It's not worth arguing about.  When there are variables -- like word size,
  3792. packet length, window size, etc -- they must have defaults.  If you don't
  3793. like the defaults, you can change them.  This applies equally to Kermit and
  3794. to Zmodem.
  3795.  
  3796. - Frank
  3797.  
  3798. From news@columbia.edu Fri Sep 23 14:48:03 1994
  3799. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA29923
  3800.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 23 Sep 1994 10:48:19 -0400
  3801. Received: by apakabar.cc.columbia.edu id AA10326
  3802.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 23 Sep 1994 10:48:18 -0400
  3803. Path: news.columbia.edu!usenet
  3804. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  3805. Newsgroups: comp.protocols.kermit.misc
  3806. Subject: Re: Kermit changed the file name from lower case to upper case, why???
  3807. Date: 23 Sep 1994 14:48:03 GMT
  3808. Organization: Columbia University
  3809. Lines: 21
  3810. Distribution: World
  3811. Message-Id: <35upr3$a2d@apakabar.cc.columbia.edu>
  3812. References: <35ssqd$rud@lastactionhero.rs.itd.umich.edu>
  3813. Nntp-Posting-Host: fdc.cc.columbia.edu
  3814. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  3815.  
  3816. In article <35ssqd$rud@lastactionhero.rs.itd.umich.edu>  
  3817. qiongw@news-server.engin.umich.edu (greek) writes:
  3818. > I am using kermit on my linux box.  It changed the file name form lower
  3819. > case to upper case when I download files from remote host.  Any ideas?
  3820. > How can I prevent this?  Thanks!
  3821. >
  3822. Read in the documentation about the SET FILE NAMES command.
  3823.  
  3824. By default, Kermit converts filenames into an innocuous "canonical" form
  3825. during transfer, so as not to upset receiving systems that might not
  3826. support lowercase letters, multiple dots, wierd punctuation, etc.  If you
  3827. don't want Kermit to do that, simply tell it not to.
  3828.  
  3829. You already must have done something with the file names, because UNIX
  3830. C-Kermit (including Linux), unless you tell it otherwise, converts the
  3831. incoming "canonical form" (uppercase) filenme back to lowercase.
  3832.  
  3833. So if you had not messed with the defaults, you probably would not have
  3834. wound up with uppercase filenames.
  3835.  
  3836. - Frank
  3837.  
  3838. From news@columbia.edu Fri Sep 23 14:50:37 1994
  3839. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA00177
  3840.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 23 Sep 1994 10:50:45 -0400
  3841. Received: by apakabar.cc.columbia.edu id AA10461
  3842.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 23 Sep 1994 10:50:43 -0400
  3843. Path: news.columbia.edu!usenet
  3844. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  3845. Newsgroups: comp.protocols.kermit.misc
  3846. Subject: Re: Kermit under Telix terminal program
  3847. Date: 23 Sep 1994 14:50:37 GMT
  3848. Organization: Columbia University
  3849. Lines: 28
  3850. Distribution: World
  3851. Message-Id: <35upvt$a6p@apakabar.cc.columbia.edu>
  3852. References: <CwJDzp.7C4@credit.erin.utoronto.ca>
  3853. Nntp-Posting-Host: fdc.cc.columbia.edu
  3854. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  3855.  
  3856. In article <CwJDzp.7C4@credit.erin.utoronto.ca> aveglio@tuzo.erin (Andrew  
  3857. Veglio) writes:
  3858. >   I have been having no luck in transfering files using the Kermit protocol 
  3859. > as implemented under Telix V3.15.  This program works well with my system
  3860. > using the other protocols (eg. Zmodem,Xmodem,etc.) but with kermit it 
  3861. > does not seem to be abel to talk to the Sun Unix box at work.
  3862. >   I can connect and use Telix terminal mode quite well to operate the 7E1 
  3863. > Unix connection, but when I initiate a Kermit transfer Telix times-out 
  3864. > without transfering anything.
  3865. >   All help would be appreciated as Telix is quite popular here and Kermit 
  3866. > is the only protocal supported on the Unix server.  
  3867. Try MS-DOS Kermit instead of Telix.  If it works and Telix doesn't, then
  3868. report the problem to the Telix people.
  3869.  
  3870. If MS-DOS Kermit doesn't work either, then report it to kermit@columbia.edu
  3871. and we'll be glad to help.
  3872.  
  3873. - Frank
  3874. x
  3875. x
  3876. x
  3877. x
  3878. x
  3879. x
  3880. x
  3881. x
  3882.  
  3883.  
  3884. From news@columbia.edu Fri Sep 23 14:53:53 1994
  3885. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA00452
  3886.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 23 Sep 1994 10:54:23 -0400
  3887. Received: by apakabar.cc.columbia.edu id AA10659
  3888.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 23 Sep 1994 10:54:14 -0400
  3889. Path: news.columbia.edu!usenet
  3890. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  3891. Newsgroups: comp.protocols.kermit.misc
  3892. Subject: Re: man page for kermit?
  3893. Date: 23 Sep 1994 14:53:53 GMT
  3894. Organization: Columbia University
  3895. Lines: 11
  3896. Distribution: World
  3897. Message-Id: <35uq61$acb@apakabar.cc.columbia.edu>
  3898. References: <199409222327.TAA20123@vega.gcti.com>
  3899. Nntp-Posting-Host: fdc.cc.columbia.edu
  3900. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  3901.  
  3902. In article <199409222327.TAA20123@vega.gcti.com> ramon@gcti.com 
  3903. (Ramon F Herrera) writes:
  3904. > Is there a man page for kermit somewhere??
  3905. Since you say "man page", you are probably referring to UNIX C-Kermit?
  3906. Of course there's a man page.  It comes with C-Kermit.  If you ordered
  3907. it from us on tape or cartridge, it's there with all the other files.
  3908. If you ftp'd the ckuXXX.tar.Z file, it's in the tar archive.  The name
  3909. of the man page file is ckuker.nr.
  3910.  
  3911. - Frank
  3912.  
  3913. From news@columbia.edu Fri Sep 23 16:19:04 1994
  3914. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA06804
  3915.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 23 Sep 1994 12:19:23 -0400
  3916. Received: by apakabar.cc.columbia.edu id AA16282
  3917.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 23 Sep 1994 12:19:22 -0400
  3918. Path: news.columbia.edu!usenet
  3919. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  3920. Newsgroups: comp.dcom.modems,comp.protocols.kermit.misc
  3921. Subject: Re: Modem Sharing Over TCP/IP
  3922. Date: 23 Sep 1994 16:19:04 GMT
  3923. Organization: Columbia University
  3924. Lines: 36
  3925. Distribution: World
  3926. Message-Id: <35uv5o$fs4@apakabar.cc.columbia.edu>
  3927. References: <35sr7b$6fk@Venus.mcs.com>
  3928. Nntp-Posting-Host: fdc.cc.columbia.edu
  3929. Xref: news.columbia.edu comp.dcom.modems:66334 comp.protocols.kermit.misc:110
  3930. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  3931.  
  3932. In article <35sr7b$6fk@Venus.mcs.com> les@MCS.COM (Leslie Mikesell) writes:
  3933. > In article <westesCwIInq.37r@netcom.com>, Will Estes <westes@netcom.com>
  3934. > wrote:
  3935. > >: I use cisco terminal servers, and have a modempool setup on the
  3936. > >: cs500. I am sure other terminal servers are perfectly capable of
  3937. > >: doing the same.
  3938. > >: Anyone can telnet to the IP address and gets the next modem in the
  3939. > >: rotary.
  3940. > >So how would this help to redirect COM1 on a DOS or Windows machine
  3941. > >to the modem pool?
  3942. > ...  Under DOS you could run ms-kermit over
  3943. > a packet driver and telnet to the modem's IP address, then chat with
  3944. > the modem to dial out.  A little extra work but since kermit's dialers
  3945. > are done with scripts anyway you could hide it all if you want.
  3946. Yup.  Also, C-Kermit (for UNIX, OS/2, VMS, AOS/VS, and Stratus VOS) supports
  3947. this too, in a very natural way.  First you "set host" to the terminal
  3948. server, then you "set modem" to the appropriate modem type, and then you
  3949. dial.  Real easy.  See "Using C-Kermit", Chapter 3, especially p.74, for
  3950. further details.
  3951.  
  3952. - Frank
  3953. x
  3954. x
  3955. x
  3956. x
  3957. x
  3958. x
  3959. x
  3960. x
  3961. x
  3962. x
  3963. x
  3964. x
  3965. x (Apologies for the x's - my news program made me do it...)
  3966.  
  3967. From news@columbia.edu Fri Sep 23 01:12:59 1994
  3968. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA28438
  3969.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 23 Sep 1994 17:11:59 -0400
  3970. Received: by apakabar.cc.columbia.edu id AA04646
  3971.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 23 Sep 1994 17:11:58 -0400
  3972. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!malgudi.oar.net!kira.cc.uakron.edu!neoucom.edu!news.ysu.edu!news.cps.udayton.edu!cis.ohio-state.edu!math.ohio-state.edu!scipio.cyberstore.ca!vanbc.wimsey.com!unixg.ubc.ca!quartz.ucs.ualberta.ca!tribune.usask.ca!duke.usask.ca!lowey
  3973. From: lowey@duke.usask.ca (Kevin Lowey)
  3974. Newsgroups: comp.protocols.kermit.misc
  3975. Subject: Re: Kermit and Zmodem?
  3976. Date: 23 Sep 1994 01:12:59 GMT
  3977. Organization: University of Saskatchewan
  3978. Lines: 48
  3979. Message-Id: <35ta2r$smc@tribune.usask.ca>
  3980. References: <35i5nc$eq9@larry.rice.edu> <CwEpts.9w4@cfanews.harvard.edu>
  3981. Nntp-Posting-Host: duke.usask.ca
  3982. X-Newsreader: TIN [version 1.2 PL2]
  3983. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  3984.  
  3985. John Chandler (chandler@cfa0.harvard.edu) wrote:
  3986. : Steven Patrick Iltis (iltiss@rice.edu) wrote:
  3987.  
  3988. : : Is it possible to use zmodem (or rz and sz) with kermit?
  3989.  
  3990. : No, they are different protocols.
  3991.  
  3992. True, they are different protocols, but it is also true that you can use 
  3993. rz and sz with kermit, if you use an external Zmodem program like DSZ 
  3994. (for DOS). 
  3995.  
  3996. I use the OS/2 kermit, and an external SZ and RZ program. I start SZ 
  3997. going on the unix box, escape back to kermit, start the "rz" program 
  3998. running, and download my files. I can also go the other way.
  3999.  
  4000. I never use the Kermit protocol for downloading any more. I just use the 
  4001. Kermit program for the excellent terminal emulation.
  4002.  
  4003. : : If I can't get these to work together, how can I get the fastest
  4004. : : transfers with Kermit? Currently, I can only get about 1200 cps on a
  4005. : : 14.4 modem. 
  4006.  
  4007. : 1200 cps = 12,000 bps.  That's not bad for a 14,400-bps modem.
  4008.  
  4009. I have the 16550an uart in my computer, and use OS/2 2.11, and OS/2 
  4010. versions of Kermit and external Zmodem protocols. My Zyxel modem is 
  4011. locked at 57600bps between the modem and my serial port. I have a 486/33 cpu.
  4012.  
  4013. When I transfer pre-compressed .ZIP files between two 19200bps Zyxel 
  4014. modems, I consistantly get 2222cps. Even when running tasks in other windows.
  4015.  
  4016. When my Zyxel connects to a slower 14400bps modem, I usually get about 
  4017. 1550cps on .ZIP files.
  4018.  
  4019. Of course, all bets are off on text files. I've had some that have gone 
  4020. at up to 7000cps.
  4021.  
  4022. --
  4023. - Kevin Lowey (Kevin.Lowey@USask.CA, Client Services Educational Services Team)
  4024.   http://www.usask.ca/~lowey/  --- gopher skynet.usask.ca
  4025.   1982 CB650SC, DoD#975 - The ride is my true destination.
  4026.  
  4027.      I'm just collateral damage of the Political Correctness Movement
  4028.  
  4029.  
  4030. Steven Wright Says ...
  4031. My house is on the median strip of a highway.  You don't really notice,
  4032. except I have to leave the driveway doing 60 mph.
  4033.  
  4034. From news@columbia.edu Fri Sep 23 01:45:03 1994
  4035. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA28799
  4036.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 23 Sep 1994 17:18:01 -0400
  4037. Received: by apakabar.cc.columbia.edu id AA05220
  4038.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 23 Sep 1994 17:17:59 -0400
  4039. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!uunet!MathWorks.Com!yeshua.marcam.com!news.kei.com!travelers.mail.cornell.edu!tuba.cit.cornell.edu!crux4!rf13
  4040. From: rf13@crux4.cit.cornell.edu (Ramin Farzaneh)
  4041. Newsgroups: comp.protocols.kermit.misc
  4042. Subject: Re: 16550A, PCI (Was: Computer hangs when line is dropped)
  4043. Date: 23 Sep 1994 01:45:03 GMT
  4044. Organization: Cornell University
  4045. Lines: 39
  4046. Message-Id: <35tbuv$854@tuba.cit.cornell.edu>
  4047. References: <35pesr$sun@liberator.et.tudelft.nl> <35rc73$l8s@archsrv.rz.unibw-muenchen.de>
  4048. Nntp-Posting-Host: 128.253.232.66
  4049. X-Newsreader: NN version 6.5.0 #6 (NOV)
  4050. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  4051.  
  4052. p41bsmk@applsrv.rz.unibw-muenchen.de (Peter Schmolck) writes:
  4053.  
  4054. >I also changed from my old (486, VESA, no 16550A, no ethernet card) to a
  4055. >new PC (Pentium PCI system with 16550A, ethernet card) and also have 2 new
  4056. >problems now: 
  4057.  
  4058. >(1) Sometimes, but not very often, when I first start Kermit, the system
  4059. >hangs, and the Ctrl-Alt-Del would not help. I guess this non-stable error
  4060. >happens when Kermit analyses the Comm-Port. With my two former PCs I
  4061. >already observed that Kermit *sometimes* (not very often) cannot correctly
  4062. >initialize the Comm Port, with a message like "wrong hardware found for
  4063. >port" or something similar. After exiting Kermit and restarting it for a
  4064. >2nd, sometimes third, time everything would work fine. 
  4065. [...]
  4066.  
  4067. >So, I also would like to hear if there are known problems with PCI, 
  4068. >16550A and Kermit.
  4069.  
  4070. I have a 486 DX2/66 with VESA local bus and 16550A UARTS, and I have 
  4071. the exact same problem.  I don't think it's Kermit's fault though, as 
  4072. I have seen it happen with other programs that access the COM ports (
  4073. including MSD).  I have noticed two things:
  4074.  
  4075. (1)  It happens less often if I don't load the dreaded EMM386 memory
  4076.      manager.  I don't use this "thing" when I use Kermit and/or
  4077.      Windows.
  4078.  
  4079. (2)  It is *much* more likely to happen if I turn the modem on after
  4080.      the computer has finished booting, or if I turn the modem on 
  4081.      and off at any other time. So now I first turn on my modem (an
  4082.      external USR Sportster 14.4K) then boot the computer, and only 
  4083.      turn the modem off at the end of the day.
  4084.  
  4085.  
  4086. I'd like to hear more about this matter, but I'm not sure this is 
  4087. the proper newsgroup for it.
  4088.  
  4089. Cheers,
  4090. Ramin
  4091.  
  4092. From news@columbia.edu Sun Sep 23 03:29:52 1994
  4093. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA02909
  4094.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 23 Sep 1994 18:22:37 -0400
  4095. Received: by apakabar.cc.columbia.edu id AA09412
  4096.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 23 Sep 1994 18:22:35 -0400
  4097. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!malgudi.oar.net!kira.cc.uakron.edu!neoucom.edu!news.ysu.edu!news.cps.udayton.edu!cis.ohio-state.edu!math.ohio-state.edu!cs.utexas.edu!swrinde!howland.reston.ans.net!vixen.cso.uiuc.edu!news.uoregon.edu!cs.uoregon.edu!usenet.ee.pdx.edu!not-for-mail
  4098. From: rkwee@ee.pdx.edu (Roland Kwee)
  4099. Newsgroups: comp.protocols.kermit.misc
  4100. Subject: Re: Kermit changed the file name from lower case to upper case, why???
  4101. Date: 22 Sep 1994 20:29:52 -0700
  4102. Lines: 15
  4103. Message-Id: <35ti3g$4i6@cruella.ee.pdx.edu>
  4104. References: <35ssqd$rud@lastactionhero.rs.itd.umich.edu>
  4105. Nntp-Posting-Host: cruella.ee.pdx.edu
  4106. X-Newsreader: NN version 6.4.19 #2
  4107. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  4108.  
  4109. qiongw@news-server.engin.umich.edu (greek) writes:
  4110.  
  4111. >I am using kermit on my linux box.  It changed the file name form lower case to upper case when I download files from remote host.  Any ideas?  How can I prevent this?  Thanks!
  4112.  
  4113. >    -Joan
  4114.  
  4115. Using C-Kermit, Frank DaCruz, 1993, Digital Press, page 114:
  4116.    SET FILE NAMES LITERAL
  4117. Is probably also mentioned in the .hlp files with the Kermit distribution
  4118. (ftp kermit.columbia.edu).
  4119. Check also out the command:
  4120.    SET ATTRIBUTES ON
  4121.  
  4122. From news@columbia.edu Fri Sep 23 00:34:01 1994
  4123. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA02915
  4124.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 23 Sep 1994 18:22:45 -0400
  4125. Received: by apakabar.cc.columbia.edu id AA09416
  4126.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 23 Sep 1994 18:22:43 -0400
  4127. Newsgroups: comp.protocols.kermit.misc
  4128. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!malgudi.oar.net!kira.cc.uakron.edu!neoucom.edu!news.ysu.edu!news.cps.udayton.edu!cis.ohio-state.edu!math.ohio-state.edu!cs.utexas.edu!swrinde!howland.reston.ans.net!news.cac.psu.edu!news.pop.psu.edu!psuvax1!hsdndev!cfanews!cfa0!chandler
  4129. From: chandler@cfa0.harvard.edu (John Chandler)
  4130. Subject: Re: Kermit and Zmodem?
  4131. Message-Id: <CwK48q.H8t@cfanews.harvard.edu>
  4132. Sender: news@cfanews.harvard.edu
  4133. Organization: Smithsonian Astrophysical Observatory, Cambridge, MA, USA
  4134. X-Newsreader: TIN [version 1.2 PL0]
  4135. References: <35i5nc$eq9@larry.rice.edu> <CwEpts.9w4@cfanews.harvard.edu> <CwFKxG.HJ5@news.gu.se>
  4136. Date: Fri, 23 Sep 1994 00:34:01 GMT
  4137. Lines: 18
  4138. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  4139.  
  4140. Bjorn Kihlberg (psybk@pew.psy.gu.se) wrote:
  4141. : John Chandler (chandler@cfa0.harvard.edu) wrote:
  4142. : : Steven Patrick Iltis (iltiss@rice.edu) wrote:
  4143.  
  4144. : I am myself forced (:-)) to use kermit instead of rz/sz and would love to get
  4145. : the same througput. What is the major obstruction? Packet length?
  4146.  
  4147. You need to tune the parameters according to the type of connection.  Yes,
  4148. set the packet length to a thousand or two, enable sliding windows, and
  4149. turn off flow control if you can get away without it.  If you have binary
  4150. files to transfer (but, then, you wouldn't likely get any compression out
  4151. of the modem!), you need to set up for 8-bit transmission if possible and
  4152. also to suppress prefixing for as many control characters as you can.
  4153. Obviously, the 8-bit consideration also applies if you have text files
  4154. with extended character sets.
  4155.  
  4156. --
  4157. John F. Chandler             chandler@cfa.harvard.edu
  4158.  
  4159. From news@columbia.edu Sun Sep 23 03:36:56 1994
  4160. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA03228
  4161.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 23 Sep 1994 18:26:45 -0400
  4162. Received: by apakabar.cc.columbia.edu id AA09686
  4163.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 23 Sep 1994 18:26:43 -0400
  4164. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!malgudi.oar.net!kira.cc.uakron.edu!neoucom.edu!news.ysu.edu!news.cps.udayton.edu!cis.ohio-state.edu!math.ohio-state.edu!usc!howland.reston.ans.net!vixen.cso.uiuc.edu!news.uoregon.edu!cs.uoregon.edu!usenet.ee.pdx.edu!not-for-mail
  4165. From: rkwee@ee.pdx.edu (Roland Kwee)
  4166. Newsgroups: comp.protocols.kermit.misc
  4167. Subject: Re: Kermit under Telix terminal program
  4168. Date: 22 Sep 1994 20:36:56 -0700
  4169. Lines: 22
  4170. Message-Id: <35tigo$4j2@cruella.ee.pdx.edu>
  4171. References: <CwJDzp.7C4@credit.erin.utoronto.ca>
  4172. Nntp-Posting-Host: cruella.ee.pdx.edu
  4173. X-Newsreader: NN version 6.4.19 #2
  4174. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  4175.  
  4176. aveglio@tuzo.erin (Andrew Veglio) writes:
  4177.  
  4178. >  I have been having no luck in transfering files using the Kermit protocol 
  4179. >as implemented under Telix V3.15.  This program works well with my system
  4180. >using the other protocols (eg. Zmodem,Xmodem,etc.) but with kermit it 
  4181. >does not seem to be abel to talk to the Sun Unix box at work.
  4182. >  I can connect and use Telix terminal mode quite well to operate the 7E1 
  4183. >Unix connection, but when I initiate a Kermit transfer Telix times-out 
  4184. >without transfering anything.
  4185. >  All help would be appreciated as Telix is quite popular here and Kermit 
  4186. >is the only protocal supported on the Unix server.  
  4187.  
  4188. IMHO it doesn't make any sense to run the Kermit file transfer
  4189. protocol under Telix. Just use Kermit INSTEAD of Telix. So far, 
  4190. I have only heard of people that think Kermit file transfer
  4191. is slow (not true) and therefore want to run zmodem under Kermit.
  4192.  
  4193. Your 7E1 connection is exactly the reason why Kermit was invented in the
  4194. first place. Don't even think of downloading binary data with X/Y/Zmodem.
  4195.  
  4196. --Roland
  4197. email: RolandKwee@ACM.org
  4198.  
  4199. From news@columbia.edu Thu Sep 22 14:58:36 1994
  4200. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA04022
  4201.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 23 Sep 1994 18:40:42 -0400
  4202. Received: by apakabar.cc.columbia.edu id AA10461
  4203.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 23 Sep 1994 18:40:39 -0400
  4204. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!malgudi.oar.net!kira.cc.uakron.edu!neoucom.edu!news.ysu.edu!news.cps.udayton.edu!cis.ohio-state.edu!math.ohio-state.edu!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  4205. From: jrd@cc.usu.edu (Joe Doupnik)
  4206. Newsgroups: comp.protocols.kermit.misc
  4207. Subject: Re: Redialing, Divide overflow error
  4208. Message-Id: <1994Sep22.205836.27653@cc.usu.edu>
  4209. Date: 22 Sep 94 20:58:36 MDT
  4210. References: <35sceh$dgt$1@heifetz.msen.com>
  4211. Organization: Utah State University
  4212. Lines: 54
  4213. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  4214.  
  4215. In article <35sceh$dgt$1@heifetz.msen.com>, jamaican@garnet.msen.com (Dwight Hugget) writes:
  4216. > I running kermit on my PC and I've tweaked the number of redial attempts
  4217. > from the default to a high number (500 to be exact). I did this b/c
  4218. > my local access number is usually busy so it's easier to keep trying.
  4219. > I usually get connected after having some coffee or midnight snack.
  4220.                               ^^^^^^^^------- Hmmm 
  4221. > I get a divide overflow after a varying number of attempts.
  4222. > Any idea why???? I'll include a segment of my dialing script:
  4223. > ____________________________________________________________
  4224. > :BEGIN            ; Now DIAL.
  4225. > clear          ; Clear INPUT buffer.
  4226. > ;***********************************
  4227. > ;*lets  stretch out the retry count*
  4228. > ;***********************************
  4229. > ;set count 5                     ; Dialing retry counter, 5 tries allowed.
  4230. > set count 500        ; my count
  4231. > echo Dialing \%1 on \v(line) at \v(speed) bps, wait...
  4232. > echo
  4233. > pause 1
  4234. > goto dial                       ; 1st time, skip pause and Redialing message
  4235. > :REDIAL
  4236. > ;set alarm 30
  4237. > ;pause 30       ; Wait 30 seconds before redialing.
  4238. > ;****************************************
  4239. > ;*lets be quicker about redials an so on*
  4240. > ;*alarm and pause number should be =    *
  4241. > ;****************************************
  4242. > set alarm 3
  4243. > pause 3
  4244. > if not alarm errfail {Dialing canceled.}
  4245. > echo Redialing...               ; Message for redialing.
  4246. > pause 1
  4247. > --------------------------------------------------------------
  4248. ------
  4249.     I am going to guess the timer stuff spanned midnight and the time
  4250. of day calculations failed (INPUT has a divide when converting seconds to 
  4251. HHMMSS stuff in t
  4252. e code). I am NOT going to sit up til midnight to find
  4253. out, thankyouverymuch. But I will inspect the code and try to catch the 
  4254. difficulty. 
  4255.     Just as a general warning, timers crossing midnight are going
  4256. to lead to confusion because I don't try to carry a day number around in
  4257. the code (it's expensive). I do try to follow the great circle path, but 
  4258. it may not be foolproof everywhere.
  4259.     Workaround: let's both get some sleep.
  4260.     Thanks for the "timely" remark since MSK 3.14 would have the
  4261. same problem.
  4262.     Joe D.
  4263.  
  4264. P.S. Another generality. It helps us a lot to know the version number of
  4265. the Kermit you are using (on both ends if that's the case). Please add
  4266. that information to your queries.
  4267.  
  4268. From news@columbia.edu Fri Sep 23 07:04:48 1994
  4269. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA04923
  4270.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 23 Sep 1994 18:51:35 -0400
  4271. Received: by apakabar.cc.columbia.edu id AA10925
  4272.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 23 Sep 1994 18:51:27 -0400
  4273. Path: news.columbia.edu!panix!MathWorks.Com!news.duke.edu!news-feed-1.peachnet.edu!gatech!howland.reston.ans.net!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  4274. From: jrd@cc.usu.edu (Joe Doupnik)
  4275. Newsgroups: comp.protocols.kermit.misc
  4276. Subject: Re: MS-Kermit with FOSSIL
  4277. Message-Id: <1994Sep23.130448.27699@cc.usu.edu>
  4278. Date: 23 Sep 94 13:04:48 MDT
  4279. References: <35s0u8$kds@gateway.dircsa.org.au>
  4280. Organization: Utah State University
  4281. Lines: 22
  4282. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  4283.  
  4284. In article <35s0u8$kds@gateway.dircsa.org.au>, arthur@gateway.dircsa.org.au (Arthur Marsh) writes:
  4285. > I currently use David Nugent's BNU 1.70 FOSSIL driver at home
  4286. > with Binkleyterm, BGFAX and MS-Kermit, using the command line:
  4287. >   Bnu /F+ /L:1=19200 /M- /T=256 /R=4096 /Z2
  4288. > MS-Kermit is quite happy with a simple set port 2 command to
  4289. > work with BNU loaded on COM2:.
  4290. > Are there any pitfalls to using kermit this way?
  4291. -------------
  4292.     If it works then the answer is no problem. Be sure to tell MSK
  4293. to use a BIOS serial port (SET PORT BIOSn, n=1..4) rather than the hardware 
  4294. port (COMx) so there will be no bus wars about hardware ownership. Your
  4295. example suggests that you told Kermit to use the hardware, which it is
  4296. able to do better than Fossil drivers. Since MSK tries to restore hardware
  4297. to its pre-use state (but leaves DTR high and the speed where Kermit last
  4298. used it, etc) you probably got away with stealing the port from BNU; no 
  4299. guarantees that this always works.
  4300.     The BNU docs should say that all applications should use it via
  4301. Bios serial port Int 14h functions. I don't know if they do.
  4302.     Joe D.
  4303.  
  4304. From news@columbia.edu Fri Sep 23 09:00:19 1994
  4305. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA05009
  4306.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 23 Sep 1994 18:53:24 -0400
  4307. Received: by apakabar.cc.columbia.edu id AA11012
  4308.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 23 Sep 1994 18:53:23 -0400
  4309. Path: news.columbia.edu!panix!MathWorks.Com!news.duke.edu!news-feed-1.peachnet.edu!gatech!swrinde!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  4310. From: jrd@cc.usu.edu (Joe Doupnik)
  4311. Newsgroups: comp.protocols.kermit.misc
  4312. Subject: Re: Pentia, Windows Kermit, etc
  4313. Message-Id: <1994Sep23.150019.27714@cc.usu.edu>
  4314. Date: 23 Sep 94 15:00:19 MDT
  4315. References: <1994Sep22.105326.27620@cc.usu.edu> <35v4gd$j7t@archsrv.rz.unibw-muenchen.de>
  4316. Organization: Utah State University
  4317. Lines: 30
  4318. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  4319.  
  4320. > I have checked for IRQ-conflicts. However, hoping that I'm not unduly 
  4321. > ignorant in that matter, could you, Joe, please expand on what one can 
  4322. > do to check on "excessiv bus speed on the serial stuff". I've looked around 
  4323. > in the CMOS setting and only found that the PCI bus is tacted at 8Mhz, 
  4324. > not 10, is this relevant here?
  4325.     That's relevant. The "standard" bus speed is 8.33MHz, and above
  4326. it all bets are off. Wait states are tweakable on some systems, and
  4327. maybe ought not to be. DMA transfer details can hog the bus if you have
  4328. a bus master board which uses that method (SCSI boards for example, and
  4329. sound boards).
  4330.  
  4331. > I'm using MS-Kermit 3.13 and C-Kermit 5A; "direct" serial connection to
  4332. > the distant Unix-server. And, to repeat, I get exessive numbers of retries
  4333. > only with 19200 Baud (not with 9600 Baud), only with binary files (not
  4334. > with text files, independent of transfer mode), and only when downloading
  4335. > files. With my former 486-66 PC I did not have that problem. Probably it
  4336. > isn't Kermit's fault, since WinKermit is affected as well (sorry, just
  4337. > forgot not to mention it again :)), but maybe there is a workaround. 
  4338.     It still looks like a flow control problem to me, or a disk cache
  4339. program effect (dumping its accumlation and taking its sweet time about
  4340. it). But there could be something strange on the Unix side which echos
  4341. XON/XOFF back to the DOS machine right in the middle of other bytes.
  4342. The way I do first tier diagnosis is by recording a packet log on both
  4343. ends and then wading through it looking for hints. That's the LOG PACKET
  4344. command. 
  4345.     If you have control codes unprefixed then that is a nice opening
  4346. for systems to play with the data stream. If you have a terminal server
  4347. or other piece of electronics in the path then that may need inspection
  4348. for byte-greed too.
  4349.         Joe D.
  4350.  
  4351. From news@columbia.edu Fri Sep 23 05:23:45 1994
  4352. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA07604
  4353.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 23 Sep 1994 19:46:59 -0400
  4354. Received: by apakabar.cc.columbia.edu id AA13614
  4355.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 23 Sep 1994 19:46:58 -0400
  4356. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!malgudi.oar.net!swiss.ans.net!europa.eng.gtefsd.com!MathWorks.Com!news.kei.com!eff!neoucom.edu!news.ysu.edu!yfn.ysu.edu!am856
  4357. From: am856@yfn.ysu.edu (Michael DeCosta III)
  4358. Newsgroups: comp.protocols.kermit.misc
  4359. Subject: Microcom AX/9624c mnp class 6 dialing script?
  4360. Date: 23 Sep 1994 05:23:45 GMT
  4361. Organization: St. Elizabeth Hospital, Youngstown, OH
  4362. Lines: 2
  4363. Message-Id: <35top1$ccf@news.ysu.edu>
  4364. Reply-To: am856@yfn.ysu.edu (Michael DeCosta III)
  4365. Nntp-Posting-Host: yfn2.ysu.edu
  4366. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  4367.  
  4368.  
  4369. The subject says it all. Anyone have a dialing script for this neast?
  4370.  
  4371. From news@columbia.edu Fri Sep 23 06:41:57 1994
  4372. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA09254
  4373.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 23 Sep 1994 20:28:26 -0400
  4374. Received: by apakabar.cc.columbia.edu id AA15689
  4375.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 23 Sep 1994 20:28:23 -0400
  4376. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!malgudi.oar.net!swiss.ans.net!gatech!newsxfer.itd.umich.edu!news1.oakland.edu!acsu.buffalo.edu!not-for-mail
  4377. Newsgroups: comp.protocols.kermit.misc
  4378. From: cederman@cs.buffalo.edu (John D Cederman)
  4379. Message-Id: <-CwKC6r.DrB@acsu.buffalo.edu>
  4380. Control: cancel <CwKC6r.DrB@acsu.buffalo.edu>
  4381. Sender: nntp@acsu.buffalo.edu
  4382. Organization: UB
  4383. Subject: cmsg cancel <CwKC6r.DrB@acsu.buffalo.edu>
  4384. Date: Fri, 23 Sep 1994 06:41:57 GMT
  4385. Approved: news@acsu.buffalo.edu
  4386. Lines: 1
  4387. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  4388.  
  4389. cancel <CwKC6r.DrB@acsu.buffalo.edu>
  4390.  
  4391. From news@columbia.edu Fri Sep 23 09:08:38 1994
  4392. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA13166
  4393.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 23 Sep 1994 21:39:16 -0400
  4394. Received: by apakabar.cc.columbia.edu id AA19323
  4395.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 23 Sep 1994 21:39:15 -0400
  4396. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!uunet!zib-berlin.de!informatik.tu-muenchen.de!heun
  4397. From: heun@informatik.tu-muenchen.de (Volker Heun)
  4398. Newsgroups: comp.protocols.kermit.misc
  4399. Subject: MSKERMIT: IRQ5 on port 3
  4400. Date: 23 Sep 1994 09:08:38 GMT
  4401. Organization: Technische Universitaet Muenchen, Germany
  4402. Lines: 19
  4403. Distribution: world
  4404. Message-Id: <35u5um$gjt@hpsystem1.informatik.tu-muenchen.de>
  4405. Reply-To: heun@informatik.tu-muenchen.de
  4406. Nntp-Posting-Host: hpmayr2.informatik.tu-muenchen.de
  4407. Originator: heun@hpmayr2.informatik.tu-muenchen.de
  4408. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  4409.  
  4410.  
  4411. Hello,
  4412.  
  4413. does anybody know how to configure MSKERMIT such that  Kermit use IRQ 5
  4414. on COM3 instead of IRQ 4??
  4415. I'am using MSKERMIT Version 3.13
  4416. Thanks in advance
  4417.  
  4418. Volker
  4419.                               \\\//
  4420.                               (o-o)
  4421. ..........................oOO..\ /..OOo......................................
  4422. Volker Heun                     v       Email: heun@informatik.tu-muenchen.de
  4423. Institut f"ur Informatik                              Phone: +49-89-2105-2686
  4424. Technische Universit"at M"unchen                        Fax: +49-89-2105-5297
  4425. Arcisstr. 21                                                Room: (SB2) S2238
  4426. D-80290 M"unchen               WWW: http://hpmayr1.informatik.tu-muenchen.de/
  4427. Germany                                                    personen/heun.html
  4428. .............................................................................
  4429.  
  4430. From news@columbia.edu Fri Sep 23 15:04:47 1994
  4431. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA13510
  4432.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 23 Sep 1994 21:50:03 -0400
  4433. Received: by apakabar.cc.columbia.edu id AA19762
  4434.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 23 Sep 1994 21:50:00 -0400
  4435. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!yeshua.marcam.com!zip.eecs.umich.edu!newsxfer.itd.umich.edu!europa.eng.gtefsd.com!howland.reston.ans.net!math.ohio-state.edu!magnus.acs.ohio-state.edu!csn!col.hp.com!news.dtc.hp.com!hpscit.sc.hp.com!lf.hp.com!degood
  4436. From: degood@lf.hp.com (John DeGood)
  4437. Newsgroups: comp.protocols.kermit.misc
  4438. Subject: Re: 16550A, PCI (Was: Computer hangs when line is dropped)
  4439. Date: 23 Sep 1994 15:04:47 GMT
  4440. Organization: Hewlett-Packard Little Falls Site
  4441. Lines: 27
  4442. Message-Id: <35uqqf$slk@hpavla.lf.hp.com>
  4443. References: <35pesr$sun@liberator.et.tudelft.nl> <35rc73$l8s@archsrv.rz.unibw-muenchen.de> <35tbuv$854@tuba.cit.cornell.edu>
  4444. Nntp-Posting-Host: hpavuu.lf.hp.com
  4445. X-Newsreader: TIN [version 1.2 PL2]
  4446. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  4447.  
  4448. Ramin Farzaneh (rf13@crux4.cit.cornell.edu) wrote:
  4449. : p41bsmk@applsrv.rz.unibw-muenchen.de (Peter Schmolck) writes:
  4450. : >I also changed from my old (486, VESA, no 16550A, no ethernet card) to a
  4451. : >new PC (Pentium PCI system with 16550A, ethernet card) and also have 2 new
  4452. : >problems now: 
  4453. :
  4454. : >(1) Sometimes, but not very often, when I first start Kermit, the system
  4455. : >hangs, and the Ctrl-Alt-Del would not help. I guess this non-stable error
  4456. : >happens when Kermit analyses the Comm-Port.
  4457. :
  4458. : I have a 486 DX2/66 with VESA local bus and 16550A UARTS, and I have 
  4459. : the exact same problem.
  4460.  
  4461. I have an IBM "Blue Lightning" motherboard (75 MHz clock tripled CPU)
  4462. with 16550 UARTs, and Kermit hangs 100% of the time on my system when it
  4463. first accesses the COM ports after a poweron.  I've discovered that if I
  4464. then do a hardware reset to force a reboot from the hung state that
  4465. Kermit runs perfectly until the next time I turn the power off.  If I
  4466. use a Windows terminal emulator the COM ports work fine, even the 1st
  4467. time after poweron.
  4468.  
  4469. I'm glad to see these other postings.  I had assumed this was a race
  4470. condition in my motherboard, but it sounds like there may be a race in
  4471. kermit's initialization code instead.
  4472.  
  4473. John DeGood  degood@LF.HP.COM
  4474. Hewlett-Packard Little Falls Site (Wilmington, Delaware)
  4475.  
  4476. From news@columbia.edu Fri Sep 23 10:13:54 1994
  4477. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA15007
  4478.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 23 Sep 1994 22:28:40 -0400
  4479. Received: by apakabar.cc.columbia.edu id AA21149
  4480.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 23 Sep 1994 22:28:38 -0400
  4481. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!malgudi.oar.net!swiss.ans.net!howland.reston.ans.net!EU.net!sun4nl!news.nic.surfnet.nl!tudelft.nl!liberator.et.tudelft.nl!dutepp6.et.tudelft.nl!richard
  4482. From: richard@dutepp6.et.tudelft.nl (Richard Kooijman)
  4483. Newsgroups: comp.protocols.kermit.misc
  4484. Subject: Re: 16550A, PCI (Was: Computer hangs when line is dropped)
  4485. Date: 23 Sep 1994 10:13:54 GMT
  4486. Organization: Delft University of Technology, Dept. of Electrical Engineering
  4487. Lines: 26
  4488. Message-Id: <35u9p2$dej@liberator.et.tudelft.nl>
  4489. References: <35pesr$sun@liberator.et.tudelft.nl> <35rc73$l8s@archsrv.rz.unibw-muenchen.de> <1994Sep22.143039.22376@iitmax.iit.edu>
  4490. Nntp-Posting-Host: dutepp6.et.tudelft.nl
  4491. X-Newsreader: NN version 6.5.0 #1 (NOV)
  4492. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  4493.  
  4494. thssjyh@iitmax.iit.edu (Jianqing Hu) writes:
  4495.  
  4496. >Pentium 90 PCI mother board is at its very early stage, so there are a lot
  4497. >of BIOS or mother board problems.
  4498.  
  4499. First I have a DX2/66 PCI motherboard. Secondly, like Frank, you
  4500. overlook two other applications that run perfectly and furthermore
  4501. Kermit under Windows does work but it does see the COM ports as a simple
  4502. 8250 then.
  4503. So, I claim that there is a bug in Kermit dealing with 16550a's in pure
  4504. DOS under certain circumstances like faster CPU's or higher bus speeds.
  4505.  
  4506. While I use Terminate, I can download texts with 65% efficiency of 57600 bps
  4507. (v42.bis compression), play and change tracks of audio CD's, let
  4508. Terminate warn me through my Soundblaster and use my mouse.
  4509. I think that shows that there are no problems with this setup
  4510. and that IRQ conflicts are not there.
  4511. I get the same perfect results while using minicom under Linux:
  4512. expected 65% efficiency of 57600 bps while downloading with ZMODEM.
  4513.  
  4514. Kermit, however, fails using a single COM port.
  4515. What I didn't try yet was dialing and handling the callback by hand
  4516. so circumventing my automatic script. Any know problems in that area?
  4517.  
  4518.  
  4519. Richard.
  4520.  
  4521. From news@columbia.edu Fri Sep 23 17:50:05 1994
  4522. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA16764
  4523.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 23 Sep 1994 23:07:22 -0400
  4524. Received: by apakabar.cc.columbia.edu id AA22615
  4525.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 23 Sep 1994 23:07:21 -0400
  4526. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!EU.net!Germany.EU.net!news.dfn.de!zeus.rbi.informatik.uni-frankfurt.de!terra.wiwi.uni-frankfurt.de!news.th-darmstadt.de!fauern!rz.unibw-muenchen.de!applsrv!p41bsmk
  4527. From: p41bsmk@applsrv.rz.unibw-muenchen.de (Peter Schmolck)
  4528. Newsgroups: comp.protocols.kermit.misc
  4529. Subject: Re: Pentia, Windows Kermit, etc
  4530. Date: 23 Sep 1994 17:50:05 GMT
  4531. Organization: University of the Federal Armed Forces Munich
  4532. Lines: 51
  4533. Message-Id: <35v4gd$j7t@archsrv.rz.unibw-muenchen.de>
  4534. References: <1994Sep22.105326.27620@cc.usu.edu>
  4535. Nntp-Posting-Host: applsrv.rz.unibw-muenchen.de
  4536. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  4537.  
  4538. Joe Doupnik's response to my posting was quite helpful with regard to one 
  4539. of two problems I'm experiencing with my new Pentium PC, namely, the 
  4540. reason for system hangs when starting Kermit for the first time after 
  4541. booting:
  4542.  
  4543. >    The big square chip simulating 16550As on some Pentium machines,
  4544. >SMC FDC37C665 UART, definitly has problems. Some vendors are issuing
  4545. >special programs to clear the chip after a boot. MSK v3.14 does pretty
  4546. >much the same job transparently, which you will see when MSK 3.14 comes out.
  4547.  
  4548. (msd says I've got a "16650AF" UART, the computer handbook calls 
  4549. it "SMC665", however)
  4550.  
  4551. Regarding the other problem (lots of retries when downloading binary 
  4552. files with 19200 Baud), what he sayed in the following quote seems 
  4553. relevant to me:
  4554.  
  4555. >Common suggestions include do thoroughly check
  4556. >for conflicts and excessive bus speed on the serial stuff. I have no PCI
  4557. >system myself so I can not run down the list of bugs in the current crop
  4558. >of motherboards.
  4559.  
  4560. I have checked for IRQ-conflicts. However, hoping that I'm not unduly 
  4561. ignorant in that matter, could you, Joe, please expand on what one can 
  4562. do to check on "excessiv bus speed on the serial stuff". I've looked around 
  4563. in the CMOS setting and only found that the PCI bus is tacted at 8Mhz, 
  4564. not 10, is this relevant here?
  4565.  
  4566. >    Windows Kermit is embarassing to everyone. May we please suggest
  4567. >that you get what we refer to as "the real thing", MS-DOS Kermit? MSK
  4568. >runs nicely in Windows, even though it is a Windows-aware DOS program.
  4569.  
  4570. I promise never to mention Windows Kermit again! :) (Actually I nearly 
  4571. only use it in cases when nothing else, e.g. Alt-' (German keyboard!), 
  4572. helps to clear the Comm port).
  4573.  
  4574. I'm using MS-Kermit 3.13 and C-Kermit 5A; "direct" serial connection to
  4575. the distant Unix-server. And, to repeat, I get exessive numbers of retries
  4576. only with 19200 Baud (not with 9600 Baud), only with binary files (not
  4577. with text files, independent of transfer mode), and only when downloading
  4578. files. With my former 486-66 PC I did not have that problem. Probably it
  4579. isn't Kermit's fault, since WinKermit is affected as well (sorry, just
  4580. forgot not to mention it again :)), but maybe there is a workaround. 
  4581.  
  4582. Thanks for all responses to my question, and also in advance,
  4583. Peter
  4584. --
  4585. Peter Schmolck                                p41bsmk@rz.unibw-muenchen.de
  4586. Department of Education                       Phone :     +49-89-6004-2056
  4587. Univ. of the Federal Armed Forces Munich      Fax   :     +49-89-6004-3968
  4588. 85577 NEUBIBERG, GERMANY    
  4589.  
  4590. From news@columbia.edu Fri Sep 23 14:52:29 1994
  4591. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA22900
  4592.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 24 Sep 1994 00:56:53 -0400
  4593. Received: by apakabar.cc.columbia.edu id AA28459
  4594.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 24 Sep 1994 00:56:51 -0400
  4595. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!uunet!usc!news.service.uci.edu!rigel.oac.uci.edu!eaog136
  4596. From: eaog136@rigel.oac.uci.edu (Quan Nguyen)
  4597. Newsgroups: comp.protocols.kermit.misc
  4598. Subject: Re: MSKERMIT: IRQ5 on port 3
  4599. Date: 23 Sep 1994 14:52:29 GMT
  4600. Organization: University of California, Irvine
  4601. Lines: 18
  4602. Message-Id: <35uq3d$ue@news.service.uci.edu>
  4603. References: <35u5um$gjt@hpsystem1.informatik.tu-muenchen.de>
  4604. Nntp-Posting-Host: rigel.oac.uci.edu
  4605. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  4606.  
  4607. In article <35u5um$gjt@hpsystem1.informatik.tu-muenchen.de>,
  4608. Volker Heun <heun@informatik.tu-muenchen.de> wrote:
  4609. >
  4610. >Hello,
  4611. >
  4612. >does anybody know how to configure MSKERMIT such that  Kermit use IRQ 5
  4613. >on COM3 instead of IRQ 4??
  4614.  
  4615. set com3 \x03E8 5
  4616. set port 3
  4617.  
  4618.  
  4619.  
  4620. --
  4621. *X*X*X*X*X*X*X*X*X*X*X*X*X*X*X*X*X*X*X*X*X*X*X*X*X*X*X*X*X*X*X*X*X*X*X*X*X*X*X
  4622. Quan Nguyen                              eaog136@rigel.oac.uci.edu        
  4623. Program in Social Relations              qnguyen@orion.oac.uci.edu
  4624. University of California, Irvine         
  4625.  
  4626. From news@columbia.edu Fri Sep 23 15:21:51 1994
  4627. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA23233
  4628.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 24 Sep 1994 01:04:40 -0400
  4629. Received: by apakabar.cc.columbia.edu id AA28639
  4630.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 24 Sep 1994 01:04:38 -0400
  4631. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!uunet!MathWorks.Com!panix!zip.eecs.umich.edu!newsxfer.itd.umich.edu!ncar!csn!col.hp.com!news.dtc.hp.com!hpscit.sc.hp.com!lf.hp.com!degood
  4632. From: degood@lf.hp.com (John DeGood)
  4633. Newsgroups: comp.protocols.kermit.misc
  4634. Subject: Re: 16550A, PCI (Was: Computer hangs when line is dropped)
  4635. Date: 23 Sep 1994 15:21:51 GMT
  4636. Organization: Hewlett-Packard Little Falls Site
  4637. Lines: 26
  4638. Message-Id: <35urqf$slk@hpavla.lf.hp.com>
  4639. References: <35pesr$sun@liberator.et.tudelft.nl> <35rc73$l8s@archsrv.rz.unibw-muenchen.de> <35tbuv$854@tuba.cit.cornell.edu> <35uqqf$slk@hpavla.lf.hp.com>
  4640. Nntp-Posting-Host: hpavuu.lf.hp.com
  4641. X-Newsreader: TIN [version 1.2 PL2]
  4642. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  4643.  
  4644. Following-up to my own post, I earlier wrote:
  4645. : I have an IBM "Blue Lightning" motherboard (75 MHz clock tripled CPU)
  4646. : with 16550 UARTs, and Kermit hangs 100% of the time on my system when it
  4647. : first accesses the COM ports after a poweron.  I've discovered that if I
  4648. : then do a hardware reset to force a reboot from the hung state that
  4649. : Kermit runs perfectly until the next time I turn the power off.  If I
  4650. : use a Windows terminal emulator the COM ports work fine, even the 1st
  4651. : time after poweron.
  4652. :
  4653. : I'm glad to see these other postings.  I had assumed this was a race
  4654. : condition in my motherboard, but it sounds like there may be a race in
  4655. : kermit's initialization code instead.
  4656.  
  4657. I just discovered in another posting:
  4658.  
  4659. In <1994Sep22.082102.27600@cc.usu.edu> Joe Doupnik (jrd@cc.usu.edu) wrote:
  4660. >     There are known bugs with the big square chip simulating 16550As
  4661. > on some Pentium systems, and MSK 3.14 (not out) works around them. The bug
  4662. > is normally associated with first use of a serial port after a boot.
  4663.  
  4664. My system is not Pentium-based, but perhaps "the big square chip" (or
  4665. the 16550 cell it contains) is also used on the other motherboards that
  4666. have been cited as experiencing kermit hangs on startup?
  4667.  
  4668. John DeGood  degood@LF.HP.COM
  4669. Hewlett-Packard Little Falls Site (Wilmington, Delaware)
  4670.  
  4671. From news@columbia.edu Fri Sep 23 04:46:05 1994
  4672. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA26280
  4673.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 24 Sep 1994 02:48:06 -0400
  4674. Received: by apakabar.cc.columbia.edu id AA01115
  4675.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 24 Sep 1994 02:48:04 -0400
  4676. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!uunet!usc!howland.reston.ans.net!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  4677. From: jrd@cc.usu.edu (Joe Doupnik)
  4678. Newsgroups: comp.protocols.kermit.misc
  4679. Subject: Re: 16550A, PCI (Was: Computer hangs when line is dropped)
  4680. Message-Id: <1994Sep23.104605.27691@cc.usu.edu>
  4681. Date: 23 Sep 94 10:46:05 MDT
  4682. References: <35pesr$sun@liberator.et.tudelft.nl> <35rc73$l8s@archsrv.rz.unibw-muenchen.de> <1994Sep22.143039.22376@iitmax.iit.edu> <35u9p2$dej@liberator.et.tudelft.nl>
  4683. Organization: Utah State University
  4684. Lines: 36
  4685. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  4686.  
  4687. In article <35u9p2$dej@liberator.et.tudelft.nl>, richard@dutepp6.et.tudelft.nl (Richard Kooijman) writes:
  4688. > thssjyh@iitmax.iit.edu (Jianqing Hu) writes:
  4689. >>Pentium 90 PCI mother board is at its very early stage, so there are a lot
  4690. >>of BIOS or mother board problems.
  4691. > First I have a DX2/66 PCI motherboard. Secondly, like Frank, you
  4692. > overlook two other applications that run perfectly and furthermore
  4693. > Kermit under Windows does work but it does see the COM ports as a simple
  4694. > 8250 then.
  4695. > So, I claim that there is a bug in Kermit dealing with 16550a's in pure
  4696. > DOS under certain circumstances like faster CPU's or higher bus speeds.
  4697.     <part omitted>
  4698. > Kermit, however, fails using a single COM port.
  4699. > What I didn't try yet was dialing and handling the callback by hand
  4700. > so circumventing my automatic script. Any know problems in that area?
  4701. > Richard.
  4702. ---------
  4703.     Kermit's handling of the 16550A chip is fine, has been ever since
  4704. the chips came out. But... motherboards and peripherals differ considerably,
  4705. and the single word "fail" is too general for me to do much with.
  4706.     Please note that Kermit actually safely tests your hardware before
  4707. using it, contrary to the "shoot first, ask questions later" technique of many
  4708. comms programs. If the test fails then the odds are in favor of something
  4709. being peculiar in your machine.
  4710.     I ask people to review the extensive material in text file MSKERM.BWR
  4711. and open the covers of their machine to ensure things are the way one thinks
  4712. they might be (check those jumpers). Watch out for TSRs hitting the ports,
  4713. mouse drivers and fax programs included. While I enjoy tinkering with hardware 
  4714. as much as the next person my crystal ball has a finite range; hence, I can't 
  4715. diagnose the machine by remote control. That has to be your concern.
  4716.         As in all complex situations the path to solutions is simplify
  4717. and isolate carefully. Divide and conquer (except when divide overflows).
  4718. Ask a friend to be a cross examiner during the process, and don't forget those
  4719. sacrifical chickens.
  4720.     Joe D.
  4721.  
  4722. From news@columbia.edu Sat Sep 24 06:29:25 1994
  4723. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA26326
  4724.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 24 Sep 1994 02:49:54 -0400
  4725. Received: by apakabar.cc.columbia.edu id AA01142
  4726.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 24 Sep 1994 02:49:53 -0400
  4727. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!torn!hermes.acs.ryerson.ca!cuckoo!esiu
  4728. From: esiu@ee.ryerson.ca (Edmond Siu)
  4729. Newsgroups: comp.protocols.kermit.misc
  4730. Subject: Windows Modem setup
  4731. Date: 24 Sep 1994 06:29:25 GMT
  4732. Organization: Ryerson Polytechnic University
  4733. Lines: 5
  4734. Message-Id: <360h05$u6k@hermes.acs.ryerson.ca>
  4735. Nntp-Posting-Host: cuckoo.ee.ryerson.ca
  4736. X-Newsreader: TIN [version 1.2 PL2]
  4737. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  4738.  
  4739.  
  4740. Does anybody know what line I have to add to system.ini or win.ini for windows inorder to use com port 4? because if I run telix in windows on com 4. the computer crashes.. There is a special line I'm suppose to add to it inorder to make windows accept communication on com port 4.
  4741.  
  4742. plese reply if you know the solution
  4743.  
  4744.  
  4745. From news@columbia.edu Thu Sep 22 14:46:23 1994
  4746. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA26975
  4747.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 24 Sep 1994 03:07:54 -0400
  4748. Received: by apakabar.cc.columbia.edu id AA01492
  4749.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 24 Sep 1994 03:07:53 -0400
  4750. Newsgroups: comp.protocols.kermit.misc
  4751. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!noc.near.net!black.clarku.edu!black.clarku.edu!kdesai
  4752. From: kdesai@black.clarku.edu (Kamalkumar R. Desai)
  4753. Subject: Re: kermit dialing help (3.1.3 on PC)
  4754. Message-Id: <kdesai.780245183@black.clarku.edu>
  4755. Organization: Clark University (Worcester, MA)
  4756. References: <35ckr8$s2s@coranto.ucs.mun.ca>
  4757. Date: 22 Sep 94 14:46:23 GMT
  4758. Lines: 21
  4759. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  4760.  
  4761. In <35ckr8$s2s@coranto.ucs.mun.ca> cstamp@morgan.ucs.mun.ca (Cliff Stamp) writes:
  4762.  
  4763. >Does anyone know how to tell kermit to redial after a set number
  4764. >of rings/busy signals. Right now it is set to around 25 and I would
  4765. >like to lower it to 2.
  4766. >
  4767. >Thanks for your time.
  4768. >-- 
  4769. >Cliff Stamp
  4770. >sstamp@morgan.physics.mun.ca
  4771. >
  4772.  
  4773.  
  4774. Try editing a file named "yourmod.SCR"
  4775. where yourmod is your modem name, or model filename 
  4776.  
  4777. You can edit MSKERMIT.INI to see which file sets your personnel settings
  4778. most probably in the end of the file with a statement TAKE 'MYFILE.INI'
  4779. where myfile is the file with personnel settings, this file will tell you
  4780. which model file it is using.
  4781.  
  4782.  
  4783. From news@columbia.edu Fri Sep 23 15:51:26 1994
  4784. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA27295
  4785.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 24 Sep 1994 03:18:25 -0400
  4786. Received: by apakabar.cc.columbia.edu id AA01869
  4787.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 24 Sep 1994 03:18:23 -0400
  4788. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!uunet!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!math.ohio-state.edu!jussieu.fr!univ-lyon1.fr!ghost.dsi.unimi.it!galileo.polito.it!not-for-mail
  4789. From: mau@beatles.cselt.stet.it (Maurizio Codogno)
  4790. Newsgroups: comp.protocols.kermit.misc,alt.computers.folklore
  4791. Subject: BOO bootstrap
  4792. Followup-To: poster
  4793. Date: 23 Sep 1994 17:51:26 +0200
  4794. Organization: CSELT UF/DD - Torino Italy
  4795. Lines: 11
  4796. Message-Id: <35uthu$9lo@beatles.cselt.stet.it>
  4797. Nntp-Posting-Host: beatles.cselt.stet.it
  4798. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  4799.  
  4800. Yup, it's not a Kermit-related question but I am fairly sure that a lot of time
  4801. ago (6 years?) in the Kermit mailing list someone came out with a BOO.COM file
  4802. which was actually sendable via mail because it contained just printable
  4803. characters. Could you please send me a copy of it?
  4804.  
  4805. ciao, .mau.
  4806. -- 
  4807. Maurizio ".mau." Codogno - CSELT UF/DD - Torino - mau@beatles.cselt.stet.it
  4808.  
  4809.  Well, you can take it any way you want, ... It's a rock'n'roll symphony, 
  4810.  and it's gonna be the death of me.
  4811.  
  4812. From news@columbia.edu Fri Sep 23 04:29:37 1994
  4813. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA27956
  4814.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 24 Sep 1994 03:43:34 -0400
  4815. Received: by apakabar.cc.columbia.edu id AA02198
  4816.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 24 Sep 1994 03:43:32 -0400
  4817. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!uunet!MathWorks.Com!zombie.ncsc.mil!news.duke.edu!convex!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  4818. From: jrd@cc.usu.edu (Joe Doupnik)
  4819. Newsgroups: comp.protocols.kermit.misc
  4820. Subject: Re: MSKERMIT: IRQ5 on port 3
  4821. Message-Id: <1994Sep23.102938.27688@cc.usu.edu>
  4822. Date: 23 Sep 94 10:29:37 MDT
  4823. References: <35u5um$gjt@hpsystem1.informatik.tu-muenchen.de>
  4824. Distribution: world
  4825. Organization: Utah State University
  4826. Lines: 14
  4827. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  4828.  
  4829. In article <35u5um$gjt@hpsystem1.informatik.tu-muenchen.de>, heun@Informatik.TU-Muenchen.DE (Volker Heun) writes:
  4830. > Hello,
  4831. > does anybody know how to configure MSKERMIT such that  Kermit use IRQ 5
  4832. > on COM3 instead of IRQ 4??
  4833. > I'am using MSKERMIT Version 3.13
  4834. > Thanks in advance
  4835. > Volker
  4836. -----------
  4837.     Please read release text file MSKERM.BWR, particularly the section
  4838. starting on line 202. SET COMx etc.
  4839.     Joe D.
  4840.  
  4841. From news@columbia.edu Thu Sep 22 16:53:17 1994
  4842. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA28115
  4843.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 24 Sep 1994 03:50:31 -0400
  4844. Received: by apakabar.cc.columbia.edu id AA02287
  4845.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 24 Sep 1994 03:50:30 -0400
  4846. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!agate!forrest
  4847. From: forrest@toe.CS.Berkeley.EDU (Jon Forrest)
  4848. Newsgroups: comp.protocols.kermit.misc
  4849. Subject: Just Say "RTFM" To Documented Kermit Questions
  4850. Date: 22 Sep 1994 16:53:17 GMT
  4851. Organization: University of California, Berkeley
  4852. Lines: 18
  4853. Message-Id: <35scpt$lki@agate.berkeley.edu>
  4854. Nntp-Posting-Host: toe.cs.berkeley.edu
  4855. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  4856.  
  4857. There have been an alarming number of questions in this newsgroup
  4858. recently that are answered in the public litterature. Instead
  4859. of Joe and Frank (and others) wasting their time regurgating
  4860. this material, I suggest they simply say "RTFM, document X,
  4861. page Y, section Z".
  4862.  
  4863. This approach shouldn't apply to questions in which people say
  4864. "I've read document X, page Y, section Z and I don't understand
  4865. what they mean by ...". People who can't afford to buy the material
  4866. that costs money should also be excused.
  4867.  
  4868. There is enough to do without helping people who haven't done
  4869. their homework.
  4870.  
  4871. -- 
  4872. Anything you read here is my opinion and in no way represents the Univ. of Cal.
  4873. Jon Forrest WB6EDM     forrest@cs.berkeley.edu     510-643-6764
  4874. 377 Soda Hall, Univ. of Cal., Berkeley, CA. 94720-1776
  4875.  
  4876. From news@columbia.edu Fri Sep 23 13:27:20 1994
  4877. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA28185
  4878.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 24 Sep 1994 03:54:57 -0400
  4879. Received: by apakabar.cc.columbia.edu id AA02322
  4880.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 24 Sep 1994 03:54:56 -0400
  4881. Path: news.columbia.edu!panix!MathWorks.Com!news.duke.edu!concert!hearst.acc.Virginia.EDU!gems.vcu.edu!agnew
  4882. From: agnew@gems.vcu.edu (Brainwave Surfer)
  4883. Newsgroups: comp.protocols.kermit.misc
  4884. Subject: Re: Just Say "RTFM" To Documented Kermit Questions
  4885. Message-Id: <1994Sep23.092720.1929@gems.vcu.edu>
  4886. Date: 23 Sep 94 09:27:20 -0400
  4887. References: <35scpt$lki@agate.berkeley.edu>
  4888. Organization: Medical College of Virginia
  4889. Lines: 20
  4890. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  4891.  
  4892. In article <35scpt$lki@agate.berkeley.edu>, forrest@toe.CS.Berkeley.EDU (Jon Forrest) writes:
  4893. > There have been an alarming number of questions in this newsgroup
  4894. > recently that are answered in the public litterature. Instead
  4895. > of Joe and Frank (and others) wasting their time regurgating
  4896. > this material, I suggest they simply say "RTFM, document X,
  4897.  
  4898.     snip....
  4899.  
  4900. maybe we could build a FAQ???
  4901.  
  4902. Good point, Jon....
  4903.  
  4904. Jim
  4905.  
  4906.          /^^^\   \ /   Jim Agnew         | AGNEW@RUBY.VCU.EDU  (Internet)
  4907.         /      >  ||   Neurosurgery,     | AGNEW@VCUVAX        (Bitnet)
  4908.    /\_/     '   \  /   MCV-VCU           | This disc will self destruct in
  4909.  /________________>    Richmond, VA, USA | five seconds.  Good luck, Jim..."
  4910.     ***error, brain i/o fault****
  4911.  
  4912.  
  4913. From news@columbia.edu Sat Sep 24 02:42:54 1994
  4914. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA28968
  4915.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 24 Sep 1994 04:10:36 -0400
  4916. Received: by apakabar.cc.columbia.edu id AA02552
  4917.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 24 Sep 1994 04:10:35 -0400
  4918. Newsgroups: comp.protocols.kermit.misc
  4919. Path: news.columbia.edu!spcuna!uunet!usc!nic-nac.CSU.net!charnel.ecst.csuchico.edu!csusac!csus.edu!netcom.com!puma
  4920. From: puma@netcom.com (puma)
  4921. Subject: Re: Kermit and Zmodem?
  4922. Message-Id: <pumaCwM4vJ.4MK@netcom.com>
  4923. Organization: organized?? me?
  4924. References: <35i5nc$eq9@larry.rice.edu> <35lkoa$dde@cruella.ee.pdx.edu>
  4925. Date: Sat, 24 Sep 1994 02:42:54 GMT
  4926. Lines: 31
  4927. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  4928.  
  4929. In article <35lkoa$dde@cruella.ee.pdx.edu>,
  4930. Roland Kwee <rkwee@ee.pdx.edu> wrote:
  4931. >iltiss@rice.edu (Steven Patrick Iltis) writes:
  4932. >
  4933. >>Is it possible to use zmodem (or rz and sz) with kermit?
  4934. >> with Kermit ... , I can only get about 1200 cps on a
  4935. >>14.4 modem. 
  4936. >
  4937. >This is an old discussion. In short, why do you think zmodem will do
  4938. >better than Kermit? Your throughput is already 83 %, and could
  4939. >THEORETICALLY only improve 17 %. However, the bottleneck may not be
  4940. >Kermit, but your UART, the host computer, line noise, etc, all
  4941. >factors that will also slow down zmodem.
  4942.  
  4943.  
  4944. 1200 is not 83% of available.
  4945. The modem strips the start and stop bits, and sends the data between
  4946. modems in synchronous mode.  The potential throughput is actually
  4947. 10*14400/8, which is 1800 cps.
  4948.  
  4949. Now, you have to include bytes for controls, command exchanges between
  4950. the modems, block start and stop, CRCs, all of which reduce the space
  4951. available for 'real' data.  Using Ymodem-G, which doesn't wait between
  4952. blocks for ack's, I usually get about 1650 to 1680 cps on zip files, 
  4953. which are not really compressible, and much more on text files or
  4954. .exe files which contain large areas of blanks or zeroes.  That
  4955. improvement, however, is due to the compression.
  4956.  
  4957.  
  4958. -- 
  4959. puma@netcom.com
  4960.  
  4961. From news@columbia.edu Fri Sep 23 06:20:59 1994
  4962. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA00564
  4963.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 24 Sep 1994 04:48:19 -0400
  4964. Received: by apakabar.cc.columbia.edu id AA03369
  4965.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 24 Sep 1994 04:48:17 -0400
  4966. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!uunet!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  4967. From: jrd@cc.usu.edu (Joe Doupnik)
  4968. Newsgroups: comp.protocols.kermit.misc
  4969. Subject: Re: 16550A, PCI (Was: Computer hangs when line is dropped)
  4970. Message-Id: <1994Sep23.122100.27695@cc.usu.edu>
  4971. Date: 23 Sep 94 12:20:59 MDT
  4972. References: <35pesr$sun@liberator.et.tudelft.nl> <35rc73$l8s@archsrv.rz.unibw-muenchen.de> <35tbuv$854@tuba.cit.cornell.edu> <35uqqf$slk@hpavla.lf.hp.com>
  4973. Organization: Utah State University
  4974. Lines: 46
  4975. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  4976.  
  4977. In article <35uqqf$slk@hpavla.lf.hp.com>, degood@lf.hp.com (John DeGood) writes:
  4978. > Ramin Farzaneh (rf13@crux4.cit.cornell.edu) wrote:
  4979. > : p41bsmk@applsrv.rz.unibw-muenchen.de (Peter Schmolck) writes:
  4980. > : >I also changed from my old (486, VESA, no 16550A, no ethernet card) to a
  4981. > : >new PC (Pentium PCI system with 16550A, ethernet card) and also have 2 new
  4982. > : >problems now: 
  4983. > I have an IBM "Blue Lightning" motherboard (75 MHz clock tripled CPU)
  4984. > with 16550 UARTs, and Kermit hangs 100% of the time on my system when it
  4985. > first accesses the COM ports after a poweron.  I've discovered that if I
  4986. > then do a hardware reset to force a reboot from the hung state that
  4987. > Kermit runs perfectly until the next time I turn the power off.  If I
  4988. > use a Windows terminal emulator the COM ports work fine, even the 1st
  4989. > time after poweron.
  4990. > I'm glad to see these other postings.  I had assumed this was a race
  4991. > condition in my motherboard, but it sounds like there may be a race in
  4992. > kermit's initialization code instead.
  4993. > John DeGood  degood@LF.HP.COM
  4994. > Hewlett-Packard Little Falls Site (Wilmington, Delaware)
  4995. -----------
  4996.  
  4997.     For the third or fourth time let me spell this out for you rich
  4998. guys with shinny new toys.
  4999.     There is a known chip design problem in at least one big square chip,
  5000. SMC FDC37C665 UART simulator. That item hangs comms programs if the chip is
  5001. not cleared somehow from the mess it creates for itself during system power
  5002. on. I don't know if the mistake has occurred in other chips, but it would
  5003. not surprize me (cellular designs sold here and there to other foundries).
  5004.     Various vendors have been posting notices about fixup programs for
  5005. their machines. MS-DOS Kermit v3.14 has its own code to do the fixup too,
  5006. and external reports say it works fine.
  5007.     Now this does not exclude other motherboard design mistakes which
  5008. may mess up things across the bus. There is abundant historical precedent
  5009. for them especially when an older design is stretched to new speeds. MSK 
  5010. 3.14 tries very hard to dodge potential goofs of this kind, but the hardware 
  5011. guys are very sharp and keep inventing new ones. Users of internal modems 
  5012. should assume that the firmware in their units are equally or more susceptible
  5013. to modem design mistakes of varying magnitude.
  5014.     MSK 3.13 is more vulnerable to this stuff, simply because it's a 
  5015. little older and did not have the hardware test base which is now available.
  5016. When 3.14 comes out for beta I hope you fellas will pound on it and let me
  5017. know what's wrong in as much detail as you can.
  5018.     Thanks,
  5019.     Joe D.
  5020.  
  5021.  
  5022. From news@columbia.edu Fri Sep 23 23:45:44 1994
  5023. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA02595
  5024.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 24 Sep 1994 06:02:58 -0400
  5025. Received: by apakabar.cc.columbia.edu id AA04802
  5026.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 24 Sep 1994 06:02:57 -0400
  5027. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!uunet!gatech!newsxfer.itd.umich.edu!zip.eecs.umich.edu!yeshua.marcam.com!news.kei.com!travelers.mail.cornell.edu!tuba.cit.cornell.edu!crux3!rf13
  5028. From: rf13@crux3.cit.cornell.edu (Ramin Farzaneh)
  5029. Newsgroups: comp.protocols.kermit.misc
  5030. Subject: Re: 16550A, PCI (Was: Computer hangs when line is dropped)
  5031. Date: 23 Sep 1994 23:45:44 GMT
  5032. Organization: Cornell University
  5033. Lines: 19
  5034. Message-Id: <35vpb8$m9j@tuba.cit.cornell.edu>
  5035. References: <35pesr$sun@liberator.et.tudelft.nl> <35rc73$l8s@archsrv.rz.unibw-muenchen.de> <35tbuv$854@tuba.cit.cornell.edu> <35uqqf$slk@hpavla.lf.hp.com> <1994Sep23.122100.27695@cc.usu.edu>
  5036. Nntp-Posting-Host: 128.253.232.63
  5037. X-Newsreader: NN version 6.5.0 #6 (NOV)
  5038. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  5039.  
  5040. jrd@cc.usu.edu (Joe Doupnik) writes:
  5041.  
  5042. >In article <35uqqf$slk@hpavla.lf.hp.com>, degood@lf.hp.com (John DeGood) writes:
  5043. >> Ramin Farzaneh (rf13@crux4.cit.cornell.edu) wrote:
  5044. [stuff deleted]
  5045.  
  5046. >    For the third or fourth time let me spell this out for you rich
  5047. >guys with shinny new toys.
  5048. [...]
  5049. >    Joe D.
  5050.  
  5051. Having a bad day Joe?  My name appeared in this post even though none
  5052. of the stuff quoted was mine.  Still I don't see why you have to be
  5053. so rude.  For the record I am not rich and I don't have a shinny (sic)
  5054. toy.  Please control your tone in the future.
  5055.  
  5056. Have a nice day,
  5057. Ramin
  5058.  
  5059.  
  5060. From news@columbia.edu Sat Sep 24 16:00:56 1994
  5061. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA10090
  5062.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 24 Sep 1994 12:00:58 -0400
  5063. Received: by apakabar.cc.columbia.edu id AA28274
  5064.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 24 Sep 1994 12:00:57 -0400
  5065. Path: news.columbia.edu!usenet
  5066. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  5067. Newsgroups: comp.protocols.kermit.misc
  5068. Subject: Re: Just Say "RTFM" To Documented Kermit Questions
  5069. Date: 24 Sep 1994 16:00:56 GMT
  5070. Organization: Columbia University
  5071. Lines: 181
  5072. Distribution: World
  5073. Message-Id: <361ifo$rje@apakabar.cc.columbia.edu>
  5074. References: <35scpt$lki@agate.berkeley.edu>
  5075. Nntp-Posting-Host: fdc.cc.columbia.edu
  5076. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  5077.  
  5078. In article <35scpt$lki@agate.berkeley.edu> forrest@toe.CS.Berkeley.EDU (Jon  
  5079. Forrest) writes:
  5080. > There have been an alarming number of questions in this newsgroup
  5081. > recently that are answered in the public litterature. Instead
  5082. > of Joe and Frank (and others) wasting their time regurgating
  5083. > this material, I suggest they simply say "RTFM, document X,
  5084. > page Y, section Z".
  5085. > This approach shouldn't apply to questions in which people say
  5086. > "I've read document X, page Y, section Z and I don't understand
  5087. > what they mean by ...". People who can't afford to buy the material
  5088. > that costs money should also be excused.
  5089. > There is enough to do without helping people who haven't done
  5090. > their homework.
  5091. Thank you, Jon.  We (Kermit developers) don't mind responding to queries
  5092. about new stuff, items that aren't clear from the documentation, etc, but
  5093. yes, people who use Kermit software a lot are heartily encouraged to
  5094. purchase the documentation because:
  5095.  
  5096.  1. It's not that expensive.
  5097.  
  5098.  2. It will answer most of your questions -- we put a lot of work into
  5099.     it -- hundreds of examples, step-by-step instructions, illustrations,
  5100.     tables, appendices, tutorials, glossaries, a comprehensive index.
  5101.  
  5102.  3. It relieves the load on the network.
  5103.  
  5104.  4. It frees up time of Kermit developers and tech support people to do
  5105.     more development and tech support.
  5106.  
  5107.  5. Most important of all, income from the sales of Kermit manuals is
  5108.     the primary source of income that funds the Kermit effort.
  5109.  
  5110.                            KERMIT BOOK LIST
  5111.  
  5112. -----------------------------------------------------------------------
  5113.  
  5114. MS-DOS Kermit, full-featured communications software for IBM and
  5115. compatible PCs with DOS or Windows, is documented in:
  5116.  
  5117.     Christine M. Gianone, Using MS-DOS Kermit, Second Edition, Digital
  5118.     Press / Butterworth-Heinemann, Woburn, MA, 1992, 345 pages, ISBN
  5119.     1-55558-082-3.  Packaged with version 3.13 of MS-DOS Kermit for the
  5120.     IBM PC, PS/2, and compatibles on a 3.5-inch diskette.  In computer
  5121.     and book stores, or order direct from Columbia University or from
  5122.     Digital Press.
  5123.  
  5124. A German-language edition is also available:
  5125.  
  5126.     Christine M. Gianone, MS-DOS Kermit, das universelle
  5127.     Kommunikationsprogramm, Verlag Heinz Heise, Hannover, Germany
  5128.     (1991), 414 pages.  Packaged with version 3.12 of MS-DOS Kermit for
  5129.     the IBM PC, PS/2, and compatibles on a 5.25-inch diskette,
  5130.     including German- language help files.  Deutsch von Gisbert W.
  5131.     Selke.  ISBN 3-88229-006-4.
  5132.  
  5133. And a French-language edition:
  5134.  
  5135.     Christine M. Gianone, Kermit MS-DOS mode d'emploi, Deuxieme
  5136.     edition, Heinz Schiefer & Cie., Versailles (1993), 406 pages.
  5137.     Packaged with version 3.11 of MS-DOS Kermit for the IBM PC, PS/2,
  5138.     and compatibles on a 5.25-inch diskette.  Adaption francaise: Jean
  5139.     Dutertre.  ISBN 2-901143-20-2.
  5140.  
  5141. There is also a Japanese book about MS-DOS Kermit, concentrating on the
  5142. NEC PC9801:
  5143.  
  5144.     Hirofumi Fujii and Fukuko Yuasa, MS-Kermit Nyumon, Computer Today
  5145.     Library 6, Saiensu-Sha Co., Ltd., publishers (1993), 160 pages.
  5146.     ISBN 4-7819-0669-9 C3355 P1854E.
  5147.  
  5148. -----------------------------------------------------------------------
  5149.  
  5150. C-Kermit 5A, full-function communication software for UNIX, VMS, OS/2,
  5151. AOS/VS, OS-9, Apollo Aegis, the Commodore Amiga, and the Atari ST is
  5152. documented in:
  5153.  
  5154.     Frank da Cruz and Christine M. Gianone, "Using C-Kermit", Digital
  5155.     Press / Butterworth-Heinemann, Woburn, MA, 1993, 514 pages, ISBN
  5156.     1-55558-108-0.  In computer and book stores, or order direct from
  5157.     Columbia University or from Digital Press.
  5158.  
  5159. A German-language edition is also available:
  5160.  
  5161.     Frank da Cruz und Christine M. Gianone, C-Kermit--Einfuhrung und
  5162.     Referenz, Verlag Heinz Heise, Hannover, Germany (1994).  ISBN
  5163.     3-88229-023-4.  Deutsch von Gisbert W. Selke.
  5164.  
  5165. -----------------------------------------------------------------------
  5166.  
  5167. The Kermit File transfer protocol is specified in the following book,
  5168. which also includes tutorials on computers, file systems, data
  5169. communications, and using Kermit:
  5170.  
  5171.     Frank da Cruz, Kermit, A File Transfer Protocol, Digital Press /
  5172.     Butterworth-Heinemann, Worburn, MA, 1987, 379 pages, ISBN
  5173.     0-932376-88-6.  In computer and book stores, or order direct from
  5174.     Columbia University or from Digital Press.
  5175.  
  5176. -----------------------------------------------------------------------
  5177.  
  5178. Kermit software for more than 400 different computers and operating
  5179. systems is available from Columbia University.  Contact Columbia for a
  5180. free Kermit software catalog.
  5181.  
  5182.  
  5183. -----------------------------------------------------------------------
  5184.  
  5185.                                  HOW TO ORDER
  5186.  
  5187. -----------------------------------------------------------------------
  5188.  
  5189. ENGLISH-LANGUAGE KERMIT BOOKS:
  5190.  
  5191.    1. In computer and book stores, or order direct from the publisher,
  5192.       Digital Press / Butterworth-Heinemann with MasterCard, Visa, or
  5193.       American Express:
  5194.  
  5195.           +1 800 366-2665     (Woburn, MA office for USA & Canada)
  5196.           +44 993 58521       (Rushden, England office for Europe)
  5197.           +61 02 372-5511     (Chatswood, NSW office for Australia & NZ)
  5198.           +65 220-3684        (Singapore office for Asia)
  5199.  
  5200.    2. From Columbia University:
  5201.  
  5202.           Kermit Development and Distribution
  5203.           Columbia University Academic Information Systems
  5204.           612 West 115th Street
  5205.           New York, NY  10025  USA
  5206.           Tel.  +1 212 854-3703
  5207.           Fax.  +1 212 663-8202
  5208.           E-Mail: kermit@columbia.edu
  5209.  
  5210.       Domestic and overseas orders accepted.  Add $5 US for shipping
  5211.       outside of North America.  Orders may be paid by MasterCard or
  5212.       Visa, or prepaid by check in US dollars.  Add $35 bank fee for
  5213.       checks not drawn on a US bank.  Price includes shipping.  Do not
  5214.       include sales tax.  Quantity discounts are available.
  5215.       Single-copy US prices (in US dollars):
  5216.  
  5217.           Using MS-DOS Kermit  . . . . . . . . . . . . . . . . .$ 34.95
  5218.           Using C-Kermit . . . . . . . . . . . . . . . . . . . .$ 34.95
  5219.           Kermit, A File Transfer Protocol . . . . . . . . . . .$ 29.95
  5220.           All three  . . . . . . . . . . . . . . . . . . . . . .$ 79.95
  5221.  
  5222. -----------------------------------------------------------------------
  5223.  
  5224. GERMAN-LANGUAGE KERMIT BOOKS:
  5225.  
  5226.         MS-DOS Kermit, das universelle Kommunikationsprogramm: DM 69,00
  5227.         C-Kermit--Einfuhrung und Referenz: . . . . . . . . . . DM 90,00
  5228.  
  5229.         Verlag Heinz Heise GmbH & Co. KG
  5230.         Helstorfer Strasse 7
  5231.         D-30625 Hannover, GERMANY
  5232.         Tel.  +49 (05 11) 53 52-0
  5233.         Fax.  +49 (05 11) 53 53-1 29
  5234.  
  5235. -----------------------------------------------------------------------
  5236.  
  5237. FRENCH:  Kermit MS-DOS Mode d'Emploi:  . . . . . . . . . . .  FF 495,00
  5238.  
  5239.         Heinz Schiefer & Cie.
  5240.         45 rue Henri de Regnier
  5241.         F-78000 Versailles, FRANCE
  5242.         Tel.  +33 39 53 95 26
  5243.         Fax.  +33 39 02 39 71
  5244.  
  5245. -----------------------------------------------------------------------
  5246.  
  5247. JAPANESE:  MS-Kermit Nyumon: . . . . . . . . . . . . . . . . .  1,800 Y
  5248.  
  5249.         Saiensu-Sha Co., Ltd.
  5250.         Abe-toku Building
  5251.         2-4 Kanda-suda cho, Chiyoda-ku
  5252.         Tokyo 101, JAPAN
  5253.         Tel.  +81-3-3256-1091
  5254.  
  5255. -----------------------------------------------------------------------
  5256.  
  5257. From news@columbia.edu Sat Sep 24 16:03:52 1994
  5258. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA10182
  5259.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 24 Sep 1994 12:03:53 -0400
  5260. Received: by apakabar.cc.columbia.edu id AA28380
  5261.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 24 Sep 1994 12:03:53 -0400
  5262. Path: news.columbia.edu!usenet
  5263. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  5264. Newsgroups: comp.protocols.kermit.misc
  5265. Subject: Re: BOO bootstrap
  5266. Date: 24 Sep 1994 16:03:52 GMT
  5267. Organization: Columbia University
  5268. Lines: 18
  5269. Distribution: World
  5270. Message-Id: <361il8$rmq@apakabar.cc.columbia.edu>
  5271. References: <35uthu$9lo@beatles.cselt.stet.it>
  5272. Nntp-Posting-Host: fdc.cc.columbia.edu
  5273. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  5274.  
  5275. In article <35uthu$9lo@beatles.cselt.stet.it> mau@beatles.cselt.stet.it  
  5276. (Maurizio Codogno) writes:
  5277. > Yup, it's not a Kermit-related question but I am fairly sure that a lot
  5278. > of time ago (6 years?) in the Kermit mailing list someone came out with
  5279. > a BOO.COM file which was actually sendable via mail because it contained
  5280. > just printable characters. Could you please send me a copy of it?
  5281. Amazing, but true:
  5282. ---(cut here)---
  5283. XPHPD[0GG0G,0G51G31GB'(G+(G:u'0g?(G>(GE1G@arwIV_F*=US@<1|_,5wXNg-7muTu(4
  5284. 1m2?352t0osr2e3K1q2s0s3e0W1_F0:sss1@2G0t1k0s3p0@3T1m3>52f3>1k0t3<2C0@3T2
  5285. K1g2?0@3T1Fm3U51g3<1q0s3:0@3T1g3r1l0ts1>0I@3T1m3i52e0O2;h0L1_Eg352s0m3S2
  5286. j0W1g3of0<1;2?0r1m0s3:1>0m@3T2e0R1FH2E1m0s3:1>0B3^0=2g3=1g3s0@3T2e0@3^1t
  5287. 2e0<1>0m1m0s361>0e1l0s371g3r1:0P@3T1:0P2e1hDk0s3q0V1F2M1_3_c2o3Z1=0Y1=0c
  5288. 2s0o2Ag3H0CSCS1:0=F[1:0=2s0]352k0t1]2s0U390^3<1KL2D1Dc0sf1]2L0UE^1T2HfTZ
  5289. X3mS2@F5C6G3S2Y\_X3a25BB3W2HacTV^\aZ3S2gb3S2Y\_X3mSW28eebe3S2Whe\aZ3S2Y\
  5290. _X3S2<3b2B3W2Abg3S2XabhZ[3S2`X`bel3W4
  5291. ---(cut)---
  5292.  
  5293. From news@columbia.edu Sat Sep 24 16:06:13 1994
  5294. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA10550
  5295.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 24 Sep 1994 12:12:33 -0400
  5296. Received: by apakabar.cc.columbia.edu id AA28796
  5297.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 24 Sep 1994 12:12:33 -0400
  5298. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!EU.net!Germany.EU.net!news.dfn.de!news.belwue.de!news.uni-ulm.de!gaissmai
  5299. From: karl.gaissmaier@rz.uni-ulm.de (Karl Gaissmaier)
  5300. Newsgroups: comp.protocols.kermit.misc
  5301. Subject: HELP: kermit stops upload binary files over two telnet connections
  5302. Date: 24 Sep 1994 16:06:13 GMT
  5303. Organization: Universitaet Ulm
  5304. Lines: 56
  5305. Sender: gaissmai%noc@apakabar.cc.columbia.edu (Karl Gaissmaier)
  5306. Distribution: world
  5307. Message-Id: <361ipm$6bj@wega.rz.uni-ulm.de>
  5308. Reply-To: karl.gaissmaier@rz.uni-ulm.de
  5309. Nntp-Posting-Host: noc.rz.uni-ulm.de
  5310. Keywords: kermit, telnet, download, retransmissions
  5311. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  5312.  
  5313. -- 
  5314.  
  5315. Hello kermit wizards,
  5316.  
  5317. kermit hangs if i try do upload binary files over two telnet connections:
  5318.  
  5319. (kermit) host1 --(telnet)--> host2 -- (telnet) --> host3 (kermit server)
  5320.  
  5321. if i try to UPLOAD a BINARY file from host1 to host3, kermit stops with
  5322. to much retransmissions. I have no problems with ascii files or
  5323. DOWNLOADING binary files.
  5324.  
  5325. Any hints?
  5326.  
  5327. Please don't ask me, why i didn't direct telnet from host1 to host3,
  5328. in my special case it is necessary:
  5329.  
  5330. PC --(modem)--terminalserver--(telnet)--gatehost--(telnet)--desthost
  5331.  
  5332.  
  5333. i tried to track down the problem with our Sniffer, but i have no
  5334. kermit protocol definition and i can't see any strange things in
  5335. the sniffer dump. Therefore my next questions:
  5336.  
  5337. How can i get the kermit protocol definition?
  5338. How can i get the zmodem protocol definition?
  5339.  
  5340. thanks in advance for any help
  5341.     Charly
  5342.  
  5343. PS: by the way, i use the following version on all unix boxes:
  5344.  
  5345. C-Kermit>sh version
  5346.  
  5347. Versions:
  5348.  
  5349.  C-Kermit 5A(189), 30 June 93
  5350.  Numeric: 501189
  5351.  UNIX Communications support, 5A(110), 26 Jun 93 for 4.2 BSD
  5352.  UNIX File support, 5A(074) 11 Jun 93 for 4.2 BSD
  5353.  C-Kermit Protocol Module 5A(055), 4 Jun 93
  5354.  C-Kermit functions, 5A(089) 11 Jun 93
  5355.  Command package 5A(053), 21 Nov 92
  5356.  User Interface 5A(103), 26 Jun 93
  5357.  Character Set Translation 5A(020), 2 May 93
  5358.  CONNECT Command for UNIX, 5A(054) 26 May 93
  5359.  Dial Command, 5A(050) 26 Jun 93
  5360.  Script Command, 5A(016) 26 Jun 93
  5361.  Network support, 5A(019) 8 Jun 93
  5362.  
  5363. =========================================================================
  5364. Universitaet Ulm                       karl.gaissmaier@rz.uni-ulm.de
  5365. Universitaetsrechenzentrum             postmaster, networkadministrator 
  5366. Karl Gaissmaier                        Telefon: (Germany) +49 731/5022499
  5367. D-89069 Ulm                            Telefax: (Germany) +49 731/5022471
  5368. =========================================================================
  5369.  
  5370. From news@columbia.edu Sat Sep 24 16:31:06 1994
  5371. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA11203
  5372.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 24 Sep 1994 12:31:09 -0400
  5373. Received: by apakabar.cc.columbia.edu id AA29793
  5374.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 24 Sep 1994 12:31:08 -0400
  5375. Path: news.columbia.edu!usenet
  5376. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  5377. Newsgroups: comp.protocols.kermit.misc
  5378. Subject: Re: HELP: kermit stops upload binary files over two telnet connections
  5379. Date: 24 Sep 1994 16:31:06 GMT
  5380. Organization: Columbia University
  5381. Lines: 47
  5382. Distribution: world
  5383. Message-Id: <361k8a$t2t@apakabar.cc.columbia.edu>
  5384. References: <361ipm$6bj@wega.rz.uni-ulm.de>
  5385. Nntp-Posting-Host: fdc.cc.columbia.edu
  5386. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  5387.  
  5388. In article <361ipm$6bj@wega.rz.uni-ulm.de> karl.gaissmaier@rz.uni-ulm.de  
  5389. (Karl Gaissmaier) writes:
  5390. > kermit hangs if i try do upload binary files over two telnet connections:
  5391. > (kermit) host1 --(telnet)--> host2 -- (telnet) --> host3 (kermit server)
  5392. > if i try to UPLOAD a BINARY file from host1 to host3, kermit stops with
  5393. > to much retransmissions. I have no problems with ascii files or
  5394. > DOWNLOADING binary files.
  5395. The usual one:
  5396.  
  5397.   SET PARITY SPACE
  5398.  
  5399. and turn off any control-character unprefixing.  Of course, you can unprefix
  5400. whatever control characters are safe, but it's always best to start off
  5401. without it.  Control characters are prefixed by default for a reason!
  5402.  
  5403. > Please don't ask me, why i didn't direct telnet from host1 to host3,
  5404. > in my special case it is necessary:
  5405. > PC --(modem)--terminalserver--(telnet)--gatehost--(telnet)--desthost
  5406. Here's another idea for you -- it might work better than Telnet, provided
  5407. your Telnet servers are 8-bit clean:
  5408.  
  5409. Use C-Kermit instead of Telnet on the gatehost, and tell it to:
  5410.  
  5411.   SET TERMINAL BYTESIZE 8
  5412.   SET COMMAND BYTESIZE 8
  5413.   SET PARITY NONE
  5414.   SET FLOW-CONTROL NONE
  5415.   CONNECT
  5416.  
  5417. Make sure you are using C-Kermit 5A(190) here, because it is WAY more
  5418. efficient in this situation (in CONNECT mode between two other hosts that
  5419. are transferring files) than earlier releases.
  5420.  
  5421. To avoid confusion about which Kermit you are escaping back to, use SET
  5422. ESCAPE to set different escape characters on the different Kermit programs.
  5423.  
  5424. > [I'm using] C-Kermit 5A(189), 30 June 93
  5425. >
  5426. C-Kermit 5A(190) Beta is available via anonymous ftp from kermit.columbia.edu
  5427. directory kermit/test/bin, binary mode, file cku190.tar.Z (or .gz).
  5428.  
  5429. - Frank
  5430.  
  5431. From news@columbia.edu Sat Sep 24 17:27:11 1994
  5432. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA13547
  5433.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 24 Sep 1994 13:27:15 -0400
  5434. Received: by apakabar.cc.columbia.edu id AA02743
  5435.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 24 Sep 1994 13:27:14 -0400
  5436. Path: news.columbia.edu!panix!zip.eecs.umich.edu!newsxfer.itd.umich.edu!gatech!howland.reston.ans.net!vixen.cso.uiuc.edu!adam
  5437. From: adam@symcom.math.uiuc.edu (Adam H. Lewenberg)
  5438. Newsgroups: comp.protocols.kermit.misc
  5439. Subject: FILE COLLISION UPDATE and file access times
  5440. Date: 24 Sep 1994 17:27:11 GMT
  5441. Organization: Math Dept., University of Illinois at Urbana/Champaign
  5442. Lines: 41
  5443. Distribution: na
  5444. Message-Id: <361nhf$7v@vixen.cso.uiuc.edu>
  5445. Nntp-Posting-Host: procyon.math.uiuc.edu
  5446. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  5447.  
  5448. I think I have figured it out. 
  5449.  
  5450. I was still having troubles with the SET FILE COLLISION UPDATE
  5451. setting. Files that were clearly newer on my home machine than the
  5452. files on the destination machine were being refused because of the
  5453. date. As I discovered, although the files on the destination machine
  5454. had an older last-wrote date, they had a newer last accessed-date. So,
  5455. for whatever reason, kermit is refusing to overwrite any file that has
  5456. a more recent last-accessed date. 
  5457.  
  5458. This can't be what people want. 
  5459.  
  5460.  
  5461.  
  5462. Here are the details:
  5463.  
  5464. home computer: 
  5465.    C-Kermit 5A(190) BETA.23, 18 Sep 94, for OS/2 2.11 32-bit  Numeric:
  5466.    501190  with a FAT file system
  5467.    
  5468.    DIR ANN3.TEX:
  5469.          ANN3.TEX         1332   9-24-94  12:17
  5470.  
  5471. destination computer:
  5472.    C-Kermit 5A(188), 23 Nov 92, SunOS 4.1 (BSD)
  5473.  
  5474.    ls -l ann3.tex:
  5475.       
  5476.         -rw-------   1 adam     academic     1293 Sep 24 12:15 ann3.tex
  5477.  
  5478.    ls -lu ann3.tex:
  5479.  
  5480.         -rw-------   1 adam     academic     1293 Sep 24 12:23 ann3.tex
  5481.  
  5482.  
  5483.  
  5484.                      Adam H. Lewenberg adam@math.uiuc.edu
  5485. -- 
  5486. University of Illinois at Champaign-Urbana, Dept. Of Mathematics
  5487. INTERNET: adam@math.uiuc.edu   or    a-lewenberg@uiuc.edu
  5488.  
  5489.  
  5490. From news@columbia.edu Sat Sep 24 17:32:14 1994
  5491. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA13806
  5492.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 24 Sep 1994 13:32:17 -0400
  5493. Received: by apakabar.cc.columbia.edu id AA02936
  5494.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 24 Sep 1994 13:32:16 -0400
  5495. Path: news.columbia.edu!usenet
  5496. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  5497. Newsgroups: comp.protocols.kermit.misc
  5498. Subject: Re: Microcom AX/9624c mnp class 6 dialing script?
  5499. Date: 24 Sep 1994 17:32:14 GMT
  5500. Organization: Columbia University
  5501. Lines: 27
  5502. Distribution: World
  5503. Message-Id: <361nqu$2rj@apakabar.cc.columbia.edu>
  5504. References: <35top1$ccf@news.ysu.edu>
  5505. Nntp-Posting-Host: fdc.cc.columbia.edu
  5506. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  5507.  
  5508. In article <35top1$ccf@news.ysu.edu> am856@yfn.ysu.edu (Michael DeCosta III)  
  5509. writes:
  5510. > The subject says it all. Anyone have a dialing script for this neast?
  5511. >
  5512. None to my knowledge.
  5513.  
  5514. I posted a long message about MS-DOS Kermit dialing scripts yesterday.
  5515.  
  5516. They all follow a basic template.  Writing a dialing script for a new
  5517. kind of modem is fairly simple -- you pick a dialing script for a similar
  5518. kind of modem, sit down with your modem manual, and replace the modem-
  5519. specific commands for setting modulation, flow control, error correction,
  5520. compression, etc, with the ones for your modem.
  5521.  
  5522. MS-DOS Kermit dialing scripts are plain-text files, profusely commented.
  5523. They should be very easy to deal with by anybody who knows how to read
  5524. a modem manual and use a text editor.
  5525.  
  5526. Numerous working scripts are available via anonymous ftp to
  5527. kermit.columbia.edu, directory kermit/a, text mode, files msm*.*.
  5528.  
  5529. Anybody who adapts any of these scripts to a hitherto unsupported modem
  5530. is encouraged to send their work back to Columbia (via email to
  5531. kermit@columbia.edu) to be included in the collection, so that others
  5532. may use it too.
  5533.  
  5534. - Frank
  5535.  
  5536. From news@columbia.edu Sat Sep 24 17:36:43 1994
  5537. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA13962
  5538.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 24 Sep 1994 13:36:44 -0400
  5539. Received: by apakabar.cc.columbia.edu id AA03232
  5540.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 24 Sep 1994 13:36:43 -0400
  5541. Path: news.columbia.edu!usenet
  5542. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  5543. Newsgroups: comp.protocols.kermit.misc
  5544. Subject: MS-DOS / VMS Transfer Performance
  5545. Date: 24 Sep 1994 17:36:43 GMT
  5546. Organization: Columbia University
  5547. Lines: 115
  5548. Distribution: World
  5549. Message-Id: <361o3b$34t@apakabar.cc.columbia.edu>
  5550. Nntp-Posting-Host: fdc.cc.columbia.edu
  5551. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  5552.  
  5553. I thought I would repost this oldie-but-goodie...
  5554.  
  5555. In article <s5$Oj86y-nB0055yn@faraday.clas.virginia.edu>
  5556. gap5u@faraday.clas.virginia.edu (Gregory Perron) writes:
  5557. > I'm downloading from a vax 4000-90 thru a terminal server of some sort
  5558. > to my PC.  14.4's at both ends: I have a cardinal internal; they have
  5559. > us robotics.  I get messages of 14.4, lapm, v.42bis, etc.  But,
  5560. > downloads have been hideous.
  5561. > I've given up on sz, because of too many aborted transfers.  I
  5562. > *think* the problem is w/ the vax, but I'm not sure.  [I get flawless
  5563. > 1600-1650 cps dl's on zipped files from a local bbs] Yes, I tried all
  5564. > the -ebrw permutations I could think of.
  5565. > On to kermit: I use procomm plus/dos 2.01 on my PC.  On the vax,
  5566. > ckermit pops up and says:
  5567. > Ckermit 5a(188) 23 NOV 92, OpenVMS Vax.
  5568. >
  5569. You'll get better results with C-Kermit 5A(189) or later, which has two
  5570. new features described below.  C-Kermit 5A(189) is available via
  5571. anonymous ftp to kermit.columbia.edu, directory kermit/b, get the file
  5572. ckvaaa.hlp, read it, take it from there.
  5573.  
  5574. > My ckermit.ini file has:
  5575. > set send pack 1000
  5576. >
  5577. This command is not needed; see the documentation.
  5578.  
  5579. > set receive pack 1000
  5580. > set buff 20000 20000
  5581. > set file type bin
  5582. > set windows 10
  5583. > set block 3
  5584. > Symptoms: max dl cps has been around 1100 for a zipped/jpg/gif file.
  5585. > And that's unusual: 950-1050 is more normal. It's almost like I'm
  5586. > only at 9600, modem report aside.
  5587. I can't speak for Procomm, but I ran some tests using MS-DOS Kermit 3.13
  5588. (the current version) on a 486/66 over a V.32bis/V.42/V.42bis dialup
  5589. connection to a Cisco terminal server, and from there to a VAXstation
  5590. 3100 running VMS 5.x and C-Kermit 5A. The calling modem is a Telebit
  5591. T3000, the answering modem is a USR Courier.
  5592.  
  5593. MS-DOS Kermit 3.13 is available via anonymous ftp to kermit.columbia.edu,
  5594. directory kermit/bin, binary mode, file msvibm.zip.
  5595.  
  5596. In these tests, I downloaded a 330K ZIP file (MSVIBM.ZIP -- the MS-DOS
  5597. Kermit 3.13 distribution).  My serial interface speed was 57600 bps, and
  5598. I used RTS/CTS flow control between my PC and the modem, and RTS/CTS was
  5599. also active between the answering modem and the terminal server.
  5600.  
  5601. In the first test (10 window slots x 1000-byte packets, same settings as
  5602. yours), I achieved an effective throughput of 1091 cps, like you got.
  5603.  
  5604. Since the connection between the terminal server and VMS is via TCP/IP
  5605. TELNET, and we know that TCP and IP will handle the flow control between
  5606. the VAX and the terminal server, I told C-Kermit to SET FLOW NONE (its
  5607. default setting is XON/XOFF) and ran the test again: 1136 cps.
  5608.  
  5609. Now that we've got the basics taken care of, we can work on tuning.
  5610. Next I tell C-Kermit to:
  5611.  
  5612.   SET CONTROL UNPREFIX ALL
  5613.   SET CONTROL PREFIX 1 129 255
  5614.  
  5615. (version 5A(189) or later is required for this; see the CKCKER.UPD file
  5616. for explanation) -- This removes control-character prefixing overhead
  5617. for all but 3 characters (4 really: NUL, Ctrl-A, Ctrl-A plus parity, and
  5618. the TELNET IAC character).  Now I get 1549 cps.  Note: control-character
  5619. unprefixing is of benefit primarily for precompressed files, secondarily
  5620. for uncompressed binaries, and has very little effect at all on text
  5621. files.
  5622.  
  5623. Well, the PC I was using is one of the new "high-speed, low-cost"
  5624. models, and so lacks a buffered UART.  All of the above transfers
  5625. suffered various amounts of retransmissions due to UART buffer overruns.
  5626. Switching to a much slower PC (a PS/2-70, 15MHz I think) that has a
  5627. 16550A buffered UART, same transfer, same parameters, the throughput
  5628. goes up to 1601 cps.
  5629.  
  5630. Now, since I don't have to worry about buffer overruns any more, I
  5631. increase Kermit's packet length to 5000 (SET RECEIVE PACKET-LENGTH
  5632. 5000).  Throughput: 1608 cps.
  5633.  
  5634. And now, since this is a precompressed file, I note that neither
  5635. Kermit's run-length compression, nor the modem's V.42bis compression
  5636. will do any good -- and some would say that they slow things down
  5637. a lot.  Let's see.  I turn both off:
  5638.  
  5639.   Kermit: SET REPEAT COUNTS OFF (C-Kermit 5A(189) or later required).
  5640.   Modem:  ATS190=0 (Telebit T3000)
  5641.  
  5642. and download the file again.  Result: 1616 cps.  Not a big difference.
  5643.  
  5644. Lessons (most of which apply mainly to this particular type of connection):
  5645.  
  5646.  1. Buffered UARTs are better than nonbuffered UARTs.
  5647.  2. Be sure to get the flow control right at both ends.
  5648.  3. Use long packets (1K - 5K, whatever works) and sliding windows
  5649.     (4 or more).
  5650.  4. Once you've got all that working optimally, you can squeeze out
  5651.     another 20-30% efficiency with control-character unprefixing.
  5652.  5. After that, don't bother too much with fine tuning, particularly
  5653.     with disabling modem or software compression - it makes very little
  5654.     difference.
  5655.  
  5656. Please, before we have another flurry of postings from people asking
  5657. for the "optimal" list of control characters to be unprefixed, THERE IS
  5658. NONE.  Every connection is different, with its own unique characteristics.
  5659. Read the documentation.  Ditto for all the other variables we have looked
  5660. at here: window size, packet length, flow control, etc.
  5661.  
  5662. - Frank
  5663.  
  5664. From news@columbia.edu Sat Sep 24 17:41:11 1994
  5665. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA14208
  5666.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 24 Sep 1994 13:41:13 -0400
  5667. Received: by apakabar.cc.columbia.edu id AA03402
  5668.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 24 Sep 1994 13:41:12 -0400
  5669. Path: news.columbia.edu!usenet
  5670. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  5671. Newsgroups: comp.protocols.kermit.misc
  5672. Subject: Re: FILE COLLISION UPDATE and file access times
  5673. Date: 24 Sep 1994 17:41:11 GMT
  5674. Organization: Columbia University
  5675. Lines: 30
  5676. Distribution: World
  5677. Message-Id: <361obn$3a8@apakabar.cc.columbia.edu>
  5678. References: <361nhf$7v@vixen.cso.uiuc.edu>
  5679. Nntp-Posting-Host: fdc.cc.columbia.edu
  5680. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  5681.  
  5682. In article <361nhf$7v@vixen.cso.uiuc.edu> adam@symcom.math.uiuc.edu 
  5683. (Adam H. Lewenberg) writes:
  5684. > I was still having troubles with the SET FILE COLLISION UPDATE
  5685. > setting. Files that were clearly newer on my home machine than the
  5686. > files on the destination machine were being refused because of the
  5687. > date. As I discovered, although the files on the destination machine
  5688. > had an older last-wrote date, they had a newer last accessed-date. So,
  5689. > for whatever reason, kermit is refusing to overwrite any file that has
  5690. > a more recent last-accessed date. 
  5691. > ...
  5692. > destination computer:
  5693. >    C-Kermit 5A(188), 23 Nov 92, SunOS 4.1 (BSD)
  5694. >
  5695. Quite correct.  This was a bug in C-Kermit 5A(188), and it was fixed in
  5696. 5A(189).  If you replace the Kermit version on your Sun by the current
  5697. released version, 5A(189), or the soon-to-be-formally-released 5A(190),
  5698. which is in the final stages of Beta testing, the problem should (will)
  5699. go away.
  5700.  
  5701. - Frank
  5702. x
  5703. x
  5704. x
  5705. x
  5706. x
  5707. x
  5708. x
  5709. x
  5710. x
  5711. x's for my news poster, sorry.
  5712.  
  5713. From news@columbia.edu Sat Sep 24 18:06:05 1994
  5714. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA15385
  5715.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 24 Sep 1994 14:06:07 -0400
  5716. Received: by apakabar.cc.columbia.edu id AA04608
  5717.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 24 Sep 1994 14:06:06 -0400
  5718. Path: news.columbia.edu!usenet
  5719. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  5720. Newsgroups: comp.protocols.kermit.misc
  5721. Subject: Chatting with Mac Kermit
  5722. Date: 24 Sep 1994 18:06:05 GMT
  5723. Organization: Columbia University
  5724. Lines: 40
  5725. Distribution: World
  5726. Message-Id: <361pqd$4fs@apakabar.cc.columbia.edu>
  5727. Nntp-Posting-Host: fdc.cc.columbia.edu
  5728. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  5729.  
  5730. > Hi, I am using Kermit on a MacPowerbook 160 with 10megs of ram and a
  5731. > Powerport Silver internal modem. I would like to set up a direct link to
  5732. > a friend of mine who has a Mac Plus with currently 1meg (plans to
  5733. > upgrade to 4) and an external Hayes modem. When I am saying direct link,
  5734. > I mean that I like to be able to type something on my screen that would
  5735. > then appear on his screen and vice-versa. His wife is deaf and he would
  5736. > like to be able to communicate with her long-distance. Can Kermit do
  5737. > this?
  5738. >
  5739. Yes.  One modem must be put in "answer mode", which is not the normal mode
  5740. for modems to be in.  This is generally done by giving it a command like:
  5741.  
  5742.   ATS0=2
  5743.  
  5744. (see your modem manual).  The steps on the answering end would be:
  5745.  
  5746.  1. Start Kermit on the Mac.
  5747.  2. In Communications Settings, set the appropriate speed.
  5748.  3. Type "ats0=2" (and Return) at the modem, in the terminal screen.
  5749.  4. In the Terminal Settings screen, set "Auto LF with CR" and "Local Echo"
  5750.  5. Wait for a call to come in.
  5751.  
  5752. This must be done before a call is placed.
  5753.  
  5754. On the calling end:
  5755.  
  5756.  1. Start Kermit on the Mac.
  5757.  2. In Communications Settings, set the appropriate speed.
  5758.  3. Type "atdt" and the phone number, and Return, in the terminal screen.
  5759.  4. In the Terminal settings screen, set "Auto LF with CR" and "Local Echo"
  5760.  5. Wait for call to be answered.
  5761.  
  5762. Now the two parties can chat.  When it's time to hang up, they should:
  5763.  
  5764.  1. Do nothing for at least one second.
  5765.  2. Type +++ in the terminal screen.
  5766.  3. Do nothing for at least one second.
  5767.  5. Type ATH0 and then Return, in the terminal screen, to hang up the phone.
  5768.  
  5769. - Frank
  5770.  
  5771. From news@columbia.edu Sat Sep 24 18:32:38 1994
  5772. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA16319
  5773.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 24 Sep 1994 14:32:41 -0400
  5774. Received: by apakabar.cc.columbia.edu id AA06083
  5775.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 24 Sep 1994 14:32:39 -0400
  5776. Path: news.columbia.edu!usenet
  5777. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  5778. Newsgroups: comp.sys.sun.apps,comp.protocols.kermit.misc
  5779. Subject: Re: Scripted Telnet wanted
  5780. Date: 24 Sep 1994 18:32:38 GMT
  5781. Organization: Columbia University
  5782. Lines: 42
  5783. Distribution: World
  5784. Message-Id: <361rc6$5u1@apakabar.cc.columbia.edu>
  5785. References: <1994Sep20.182343.21582@netra.com>
  5786. Nntp-Posting-Host: fdc.cc.columbia.edu
  5787. Xref: news.columbia.edu comp.sys.sun.apps:9932 comp.protocols.kermit.misc:147
  5788. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  5789.  
  5790. In article <1994Sep20.182343.21582@netra.com> pnewman@netra.com
  5791. (Paul Newman) writes:
  5792. > Hi, I'm looking for a program that let's me do some programmatic telnet.
  5793. > That is, I'm looking for something like CrossTalk or Procomm (on PCs)
  5794. > except that I want it to use telnet for transport.  I want to send a
  5795. > command and look at the response programmatically, maybe with a shell
  5796. > like language, and then send another command based on the response.
  5797. C-Kermit 5A.  Anonymous ftp to kermit.columbia.edu.  The current version
  5798. is 5A(189):
  5799.  
  5800.   kermit/bin/cku189.tar.Z
  5801.  
  5802. Version 5A(190) is in Beta test; I'd encourage you to try it instead:
  5803.  
  5804.   kermit/test/bin/cku190.tar.Z (or .gz for gunzip)
  5805.  
  5806. It has a full-blown script programming language that does exactly what
  5807. you want, and also includes control structures (IF, WHILE, etc), variables,
  5808. arrays, built-in functions for string manipulation, access to all kinds
  5809. of system information (hostname, date, time, etc etc), and so on.
  5810.  
  5811. Since C-Kermit works not only on TCP/IP TELNET connections, but also
  5812. serial connections and (in certain implementations) also X.25, DECnet,
  5813. NETBIOS, and other types of connections, you have a single communication
  5814. software package that lets you automate all of your communications tasks
  5815. in a consistent way.
  5816.  
  5817. Furthermore, the script programs you write for C-Kermit on SunOS are
  5818. portable to any other UNIX variety as well as to all the other operating
  5819. systems where C-Kermit runs: VMS, OS/2, AOS/VS, etc etc.
  5820.  
  5821. Furthermore, C-Kermit's script programming language is highly (though
  5822. not totally) compatible with MS-DOS Kermit's language, and so the same
  5823. script programs are also portable to DOS and Windows and to the many
  5824. and varied networking methods supported by MS-DOS Kermit.
  5825.  
  5826. C-Kermit's script programming language is fully documented in Chapters
  5827. 11-13 of "Using C-Kermit".  MS-DOS Kermit's script programming language is
  5828. fully documented in Chapter 14 of "Using MS-DOS Kermit".
  5829.  
  5830. - Frank
  5831.  
  5832. From news@columbia.edu Sat Sep 24 12:55:58 1994
  5833. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA22743
  5834.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 24 Sep 1994 17:08:00 -0400
  5835. Received: by apakabar.cc.columbia.edu id AA14028
  5836.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 24 Sep 1994 17:07:54 -0400
  5837. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!news.cac.psu.edu!psuvm!news.cuny.edu!wilhc
  5838. From: <WILHC@CUNYVM.CUNY.EDU>
  5839. Newsgroups: comp.protocols.kermit.misc
  5840. Subject: what is UART overrun
  5841. Date: Sat, 24 Sep 1994 16:55:58 EDT
  5842. Organization: City University of New York/University Computer Center
  5843. Lines: 2
  5844. Message-Id: <94267.165558WILHC@CUNYVM.CUNY.EDU>
  5845. Nntp-Posting-Host: cunyvm.cuny.edu
  5846. Disclaimer: Author bears full responsibility for this post
  5847. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  5848.  
  5849. Im getting this error message when I try to download from a mainframe to my ibm
  5850.  at home.
  5851.  
  5852. From news@columbia.edu Sat Sep 24 23:52:27 1994
  5853. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA28671
  5854.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 24 Sep 1994 20:06:08 -0400
  5855. Received: by apakabar.cc.columbia.edu id AA22970
  5856.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 24 Sep 1994 20:06:06 -0400
  5857. Path: news.columbia.edu!panix!MathWorks.Com!yeshua.marcam.com!charnel.ecst.csuchico.edu!nic-nac.CSU.net!news.Cerritos.edu!news.Arizona.EDU!jjr
  5858. From: jjr@mipl-gw.ece.arizona.edu (Jeffrey J. Rodriguez)
  5859. Newsgroups: comp.protocols.kermit.misc
  5860. Subject: When not "set file type binary" always?
  5861. Date: 24 Sep 1994 23:52:27 GMT
  5862. Organization: The University of Arizona, Dept. of ECE
  5863. Lines: 12
  5864. Message-Id: <362e3r$jef@news.CCIT.Arizona.EDU>
  5865. Nntp-Posting-Host: mipl-gw.ece.arizona.edu
  5866. X-Newsreader: TIN [version 1.2 PL2]
  5867. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  5868.  
  5869. Why not always do "set file type binary"?
  5870. Is there any reason to use text mode?
  5871. Binary mode seems to work fine for all types of files.
  5872. (I have the same question regarding ftp.)
  5873. Why is there a text mode at all?
  5874.  
  5875. --
  5876. Jeff Rodriguez
  5877.  
  5878. Electrical & Computer Engineering       rodriguez@ece.arizona.edu
  5879. The University of Arizona               Tel: (602) 621-8732 or 8963
  5880. Tucson, AZ 85721                        FAX: (602) 621-8076
  5881.  
  5882. From news@columbia.edu Sat Sep 24 12:38:34 1994
  5883. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA00926
  5884.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 24 Sep 1994 21:13:33 -0400
  5885. Received: by apakabar.cc.columbia.edu id AA26016
  5886.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 24 Sep 1994 21:13:32 -0400
  5887. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  5888. From: jrd@cc.usu.edu (Joe Doupnik)
  5889. Newsgroups: comp.protocols.kermit.misc
  5890. Subject: Re: what is UART overrun
  5891. Message-Id: <1994Sep24.183834.27767@cc.usu.edu>
  5892. Date: 24 Sep 94 18:38:34 MDT
  5893. References: <94267.165558WILHC@CUNYVM.CUNY.EDU>
  5894. Organization: Utah State University
  5895. Lines: 10
  5896. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  5897.  
  5898. In article <94267.165558WILHC@CUNYVM.CUNY.EDU>, <WILHC@CUNYVM.CUNY.EDU> writes:
  5899. > Im getting this error message when I try to download from a mainframe to my ibm
  5900. >  at home.
  5901. ---------
  5902.     What program is showing you that message? MS-DOS Kermit does not
  5903. display it.
  5904.     It means a second byte arrived at the serial port from the outside
  5905. before the first byte could be read from the hardware. Flow control is
  5906. the solution.
  5907.     Joe D.
  5908.  
  5909. From news@columbia.edu Sat Sep 24 14:50:42 1994
  5910. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA05235
  5911.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 24 Sep 1994 23:22:51 -0400
  5912. Received: by apakabar.cc.columbia.edu id AA01815
  5913.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 24 Sep 1994 23:22:50 -0400
  5914. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  5915. From: jrd@cc.usu.edu (Joe Doupnik)
  5916. Newsgroups: comp.protocols.kermit.misc
  5917. Subject: Re: When not "set file type binary" always?
  5918. Message-Id: <1994Sep24.205043.27777@cc.usu.edu>
  5919. Date: 24 Sep 94 20:50:42 MDT
  5920. References: <362e3r$jef@news.CCIT.Arizona.EDU>
  5921. Organization: Utah State University
  5922. Lines: 17
  5923. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  5924.  
  5925. In article <362e3r$jef@news.CCIT.Arizona.EDU>, jjr@mipl.ece.arizona.edu (Jeffrey J. Rodriguez) writes:
  5926. > Why not always do "set file type binary"?
  5927. > Is there any reason to use text mode?
  5928. > Binary mode seems to work fine for all types of files.
  5929. > (I have the same question regarding ftp.)
  5930. > Why is there a text mode at all?
  5931. > --
  5932. > Jeff Rodriguez
  5933. > Electrical & Computer Engineering       rodriguez@ece.arizona.edu
  5934. > The University of Arizona               Tel: (602) 621-8732 or 8963
  5935. > Tucson, AZ 85721                        FAX: (602) 621-8076
  5936. -----------
  5937.     Simple example: DOS ends lines in CR/LF, Unix ends text lines in LF,
  5938. Macs end lines in CR, and so on.
  5939.     Joe D.
  5940.  
  5941. From news@columbia.edu Sun Sep 25 04:24:52 1994
  5942. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA07781
  5943.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 25 Sep 1994 00:23:03 -0400
  5944. Received: by apakabar.cc.columbia.edu id AA04590
  5945.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 25 Sep 1994 00:23:02 -0400
  5946. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!gatech!swrinde!sgiblab!sisters.cs.uoregon.edu!cs.uoregon.edu!usenet.ee.pdx.edu!not-for-mail
  5947. From: rkwee@ee.pdx.edu (Roland Kwee)
  5948. Newsgroups: comp.protocols.kermit.misc
  5949. Subject: Re: Just Say "RTFM" To Documented Kermit Questions
  5950. Date: 24 Sep 1994 21:24:52 -0700
  5951. Lines: 47
  5952. Distribution: World
  5953. Message-Id: <362u2k$70d@cruella.ee.pdx.edu>
  5954. References: <35scpt$lki@agate.berkeley.edu> <361ifo$rje@apakabar.cc.columbia.edu>
  5955. Nntp-Posting-Host: cruella.ee.pdx.edu
  5956. X-Newsreader: NN version 6.4.19 #2
  5957. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  5958.  
  5959. fdc@fdc.cc.columbia.edu (Frank da Cruz) writes:
  5960.  
  5961. >In article <35scpt$lki@agate.berkeley.edu> forrest@toe.CS.Berkeley.EDU (Jon  
  5962. >Forrest) writes:
  5963. >> There have been an alarming number of questions in this newsgroup
  5964. >> recently that are answered in the public litterature. Instead
  5965. >> 
  5966. >Thank you, Jon.  We (Kermit developers) don't mind responding to queries
  5967. >about new stuff, items that aren't clear from the documentation, etc, but
  5968. >yes, people who use Kermit software a lot are heartily encouraged to
  5969. >purchase the documentation because:
  5970.  
  5971. (deleted a number of good reasons)
  5972.  
  5973. I like to attest to the validity of this point. While I like free software
  5974. partly because the price is right, I often feel a strong urge to buy
  5975. the accompanying books. In fact, I don't think those books are that
  5976. cheap, but spending, say, 70 dollars on the two main Kermit books is still
  5977. very cheap compared to paying for a single user license of any other
  5978. major software package. Look what you get if you buy two Kermit books:
  5979.  
  5980. Two nicely bound manuals that are very readable. They not only describe
  5981. the program, but also contain elaborate introductions to telecommunications
  5982. and data transmission, as well as to the inner workings of the
  5983. software.
  5984.  
  5985. This is typical for free software. Look at the books describing the
  5986. free TeX text formatter program. They even contain jokes, poems etc.
  5987. The books accompanying the free OS and programming language Oberon
  5988. are also much more readable than those of, say, Borland or Symantec
  5989. (no experience with Microsoft compilers). There is probably no editor
  5990. with a more rigorous manual than emacs.
  5991.  
  5992. Compare this with what you get for a couple hundred dollars spent at
  5993. such companies as Microsoft: totally boring manuals that often fail to
  5994. solve the actual problems that someone might have using the programs.
  5995. Plus diskettes with the software that you are not allowed to copy at will.
  5996.  
  5997. My motto: use free software unless you are sure the more expensive one
  5998. is better, and spend a small part of the money thus saved on those fine
  5999. books. Then, give away copies of the free software to whoever wants it,
  6000. and show those books so that they know they exist.
  6001.  
  6002. That's enough advertising for now, I guess.
  6003.  
  6004. --Roland
  6005. email: RolandKwee@ACM.org
  6006.  
  6007. From news@columbia.edu Fri Sep 23 12:49:01 1994
  6008. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA12420
  6009.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 25 Sep 1994 02:01:04 -0400
  6010. Received: by apakabar.cc.columbia.edu id AA07033
  6011.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 25 Sep 1994 02:01:03 -0400
  6012. Newsgroups: comp.protocols.kermit.misc
  6013. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!library.ucla.edu!agate!msuinfo!netnews.upenn.edu!news.drexel.edu!news.ge.com!knight.vf.ge.com!not-for-mail
  6014. From: tcmayo@eng106.PSF.GE.COM (tom mayo)
  6015. Subject: Re: Kermit under Telix terminal program
  6016. Message-Id: <35uirt$gsb@eng106.PSF.GE.COM>
  6017. Lines: 43
  6018. Sender: news@knight.vf.ge.com
  6019. Nntp-Posting-Host: eng106.psf.ge.com
  6020. Organization: Martin Marietta Defense Systems
  6021. References: <CwJDzp.7C4@credit.erin.utoronto.ca> <1994Sep22.211430.27654@cc.usu.edu>
  6022. Date: Fri, 23 Sep 1994 12:49:01 GMT
  6023. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  6024.  
  6025. In article <1994Sep22.211430.27654@cc.usu.edu>,
  6026. Joe Doupnik <jrd@cc.usu.edu> wrote:
  6027. >In article <CwJDzp.7C4@credit.erin.utoronto.ca>, aveglio@tuzo.erin (Andrew Veglio) writes:
  6028. >>   I have been having no luck in transfering files using the Kermit protocol 
  6029. >> as implemented under Telix V3.15.  This program works well with my system
  6030. >> using the other protocols (eg. Zmodem,Xmodem,etc.) but with kermit it 
  6031. >> does not seem to be abel to talk to the Sun Unix box at work.
  6032. >>   I can connect and use Telix terminal mode quite well to operate the 7E1 
  6033. >> Unix connection, but when I initiate a Kermit transfer Telix times-out 
  6034. >> without transfering anything.
  6035. >>   All help would be appreciated as Telix is quite popular here and Kermit 
  6036. >> is the only protocal supported on the Unix server.  
  6037. >> 
  6038. >> Many Thanks
  6039. >> Andrew
  6040. >------------
  6041. >    Have to guess again. Here goes...
  6042. >    Might you have set Even parity just in the modem without telling
  6043. >Telix Kermit about it? If so there is a good chance that Telix and the
  6044. >remote Kermit negotiate an 8-bit connection and of course your modem chops
  6045. >the high bit without informing anyone. If this were true then it would be
  6046. >a classical case of "hidden comms boxes" nibbling at the data.
  6047. >    MS-DOS Kermit and C Kermit both try to unravel these cases as much
  6048. >as possible and may switch to using Even parity during the first packet
  6049. >exchange. It's clever. MSK expects the modem to stay out of the useless
  6050. >parity game and let Kermit do parity work in software (where there is
  6051. >full control and most importantly full knowledge to negotiate the proper
  6052. >bit-width during file transfers).
  6053. >    My suggestions are to look into these details, tell Telix about
  6054. >Even parity, and if things still don't work then also try MS-DOS Kermit 
  6055. >(it's faster and ...).
  6056. >    Joe D.
  6057.  
  6058. I have had similar trouble.  I am not fully satisfied that I explored
  6059. all avenues, but I did call the Telix support number and from what I
  6060. remember, they said that Telix does not support Kermit transfers over
  6061. 7-bit connections.
  6062.  
  6063. I have since switched to MS-DOS Kermit, and have been VERY happy with
  6064. it.  It is somewhat of a pain to get running at first, but it is at
  6065. least flexible and well-documented.
  6066.  
  6067. -Tom
  6068.  
  6069. From news@columbia.edu Sun Sep 25 06:33:57 1994
  6070. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA13422
  6071.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 25 Sep 1994 02:34:46 -0400
  6072. Received: by apakabar.cc.columbia.edu id AA07896
  6073.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 25 Sep 1994 02:34:45 -0400
  6074. Path: news.columbia.edu!panix!MathWorks.Com!news2.near.net!bloom-beacon.mit.edu!senator-bedfellow.mit.edu!athena.mit.edu!raoul
  6075. From: raoul@athena.mit.edu (Nico Garcia)
  6076. Newsgroups: comp.protocols.kermit.misc
  6077. Subject: Re: When not "set file type binary" always?
  6078. Date: 25 Sep 1994 06:33:57 GMT
  6079. Organization: Massachusetts Institute of Technology
  6080. Lines: 18
  6081. Message-Id: <RAOUL.94Sep25023419@m4-167-7.mit.edu>
  6082. References: <362e3r$jef@news.CCIT.Arizona.EDU>
  6083. Nntp-Posting-Host: m4-167-7.mit.edu
  6084. In-Reply-To: jjr@mipl.ece.arizona.edu's message of 24 Sep 1994 23:52:27 GMT
  6085. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  6086.  
  6087. In article <362e3r$jef@news.CCIT.Arizona.EDU> jjr@mipl.ece.arizona.edu (Jeffrey J. Rodriguez) writes:
  6088.  
  6089.    Why not always do "set file type binary"?
  6090.    Is there any reason to use text mode?
  6091.    Binary mode seems to work fine for all types of files.
  6092.    (I have the same question regarding ftp.)
  6093.    Why is there a text mode at all?
  6094.  
  6095. That is an *excellent* question. The answer, for UNIX sys-admins like
  6096. me, is that when downloading lengthy text bug-patches and specifically
  6097. in downloading .bin files from certain Mac sites, they get corrupted
  6098. when downloaded in binary mode where they come over file where they
  6099. are fine in test mode.
  6100.  
  6101. This is the voice of embarassed experience.
  6102.  
  6103.                 Nico Garcia
  6104.                 raoul@athena.mit.edu
  6105.  
  6106. From news@columbia.edu Sun Sep 25 05:55:35 1994
  6107. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA29240
  6108.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 25 Sep 1994 06:40:48 -0400
  6109. Received: by apakabar.cc.columbia.edu id AA12946
  6110.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 25 Sep 1994 06:40:47 -0400
  6111. Newsgroups: comp.protocols.kermit.misc
  6112. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!math.ohio-state.edu!news.acns.nwu.edu!raven.alaska.edu!orion.alaska.edu!fsbem
  6113. From: fsbem@orion.alaska.edu
  6114. Subject: Wtd: "Kermit, a file transfer protocol"
  6115. Message-Id: <1994Sep25.015535.1@orion.alaska.edu>
  6116. Lines: 7
  6117. Sender: news@raven.alaska.edu (USENET News System)
  6118. Organization: University of Alaska
  6119. Date: Sun, 25 Sep 1994 05:55:35 GMT
  6120. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  6121.  
  6122. Hi,
  6123. Looking for a copy of fdc's book "Kermit, a file transfer protocol"
  6124. If anybody has a copy they are not using anymore, drop me a line,
  6125.  
  6126. Thanks
  6127.  
  6128. blake
  6129.  
  6130. From news@columbia.edu Sun Sep 25 16:21:02 1994
  6131. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA01286
  6132.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 25 Sep 1994 13:57:40 -0400
  6133. Received: by apakabar.cc.columbia.edu id AA10209
  6134.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 25 Sep 1994 13:57:38 -0400
  6135. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!pipex!sunic!trane.uninett.no!eunet.no!nuug!EU.net!uunet!gwu.edu!not-for-mail
  6136. From: pww@gwis2.circ.gwu.edu (Philip Wirtz)
  6137. Newsgroups: comp.protocols.kermit.misc
  6138. Subject: Kermit via tn3270
  6139. Date: 25 Sep 1994 12:21:02 -0400
  6140. Organization: The George Washington University
  6141. Lines: 17
  6142. Message-Id: <36481e$3bv@gwis2.circ.gwu.edu>
  6143. Nntp-Posting-Host: 128.164.127.252
  6144. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  6145.  
  6146. I use MSDOS Kermit on a PC-compatible machine to emulate a VT100 when
  6147. connecting (over a modem) to a Sun running Solaris.  I can upload,
  6148. download, and "transparent print" without problem.  When logged on to the
  6149. Sun, I use tn3270 to connect to an IBM mainframe running VM/CMS.  As an
  6150. alternative route to the IBM mainframe, I can use MSDOS Kermit to dial up
  6151. through a 7171 protocol emulator.  I have no problem using Kermit to
  6152. upload, download, or transparent print when I use the ALTERNATIVE route to
  6153. the IBM mainframe (i.e., dialing up through the 7171).  However, when
  6154. using the tn3270 route (which of course bypasses the 7171), I cannot
  6155. upload, download or transparent print.  Speculatively, it appears that
  6156. escape sequences are not being properly passed to the Sun (and therefore
  6157. to my PC), so (for example) the PC Kermit does not know that it needs to
  6158. pass subsequent characters through to the printer.  Does anyone have a
  6159. suggestion about how I can remediate this problem (...or, if this is the
  6160. incorrect forum for such a question, where it might be properly
  6161. raised...)?  Thanks. 
  6162.  
  6163.  
  6164. From news@columbia.edu Sun Sep 25 18:01:41 1994
  6165. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA01543
  6166.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 25 Sep 1994 14:01:43 -0400
  6167. Received: by apakabar.cc.columbia.edu id AA10365
  6168.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 25 Sep 1994 14:01:42 -0400
  6169. Path: news.columbia.edu!watsun.cc.columbia.edu!jaltman
  6170. From: jaltman@watsun.cc.columbia.edu (Jeffrey Altman)
  6171. Newsgroups: comp.protocols.kermit.misc
  6172. Subject: Re: HELP: kermit stops upload binary files over two telnet connections
  6173. Date: 25 Sep 1994 18:01:41 GMT
  6174. Organization: Columbia University
  6175. Lines: 30
  6176. Message-Id: <364du5$a3r@apakabar.cc.columbia.edu>
  6177. References: <361ipm$6bj@wega.rz.uni-ulm.de>
  6178. Nntp-Posting-Host: watsun.cc.columbia.edu
  6179. Keywords: kermit, telnet, download, retransmissions
  6180. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  6181.  
  6182. In article <361ipm$6bj@wega.rz.uni-ulm.de>,
  6183. Karl Gaissmaier <karl.gaissmaier@rz.uni-ulm.de> wrote:
  6184. >-- 
  6185. >
  6186. >Hello kermit wizards,
  6187. >
  6188. >kermit hangs if i try do upload binary files over two telnet connections:
  6189. >
  6190. >(kermit) host1 --(telnet)--> host2 -- (telnet) --> host3 (kermit server)
  6191. >
  6192. >if i try to UPLOAD a BINARY file from host1 to host3, kermit stops with
  6193. >to much retransmissions. I have no problems with ascii files or
  6194. >DOWNLOADING binary files.
  6195. >
  6196. >Any hints?
  6197.  
  6198.  
  6199. Try using small packets and no sliding windows.  If that works, then it is
  6200. a flow control problem somewhere between host1 and host3.
  6201.  
  6202. If it doesn't work, see where you are after the timeout errors.  Are you
  6203. still logged into host3, or are you on host2?  Make sure that all control
  6204. characters with special meanings are prefixed.  
  6205.  
  6206. What version of Kermit are you using on the PC?
  6207.  
  6208. Jeffrey Altman * PO Box 220415 * Great Neck, NY * 11022-0415 * (516) 466-5495
  6209. "C-Kermit: available on more platforms than any other communications software."
  6210. "Kermit FTP: sending files whenever and wherever they are needed."
  6211. OS/2 version 189 via ftp from watsun.cc.columbia.edu /kermit/bin/ckoker.zip 
  6212.  
  6213. From news@columbia.edu Sun Sep 25 18:15:21 1994
  6214. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA01985
  6215.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 25 Sep 1994 14:15:23 -0400
  6216. Received: by apakabar.cc.columbia.edu id AA11073
  6217.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 25 Sep 1994 14:15:22 -0400
  6218. Path: news.columbia.edu!watsun.cc.columbia.edu!jaltman
  6219. From: jaltman@watsun.cc.columbia.edu (Jeffrey Altman)
  6220. Newsgroups: comp.protocols.kermit.misc
  6221. Subject: MS-DOS Kermit hangs on newer machines - what is loaded high?
  6222. Date: 25 Sep 1994 18:15:21 GMT
  6223. Organization: Columbia University
  6224. Lines: 28
  6225. Message-Id: <364enp$apu@apakabar.cc.columbia.edu>
  6226. References: <35pesr$sun@liberator.et.tudelft.nl> <35rc73$l8s@archsrv.rz.unibw-muenchen.de> <1994Sep22.143039.22376@iitmax.iit.edu> <35u9p2$dej@liberator.et.tudelft.nl>
  6227. Nntp-Posting-Host: watsun.cc.columbia.edu
  6228. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  6229.  
  6230.  
  6231.  
  6232. For those of you who have benn reporting problems with MS-DOS Kermit on 
  6233. newer machines, I have one important question:  
  6234.  
  6235. What software do you have loaded high and what version of DOS are you using?
  6236.  
  6237. I have noticed significant problems with MS-DOS and IBM PC-DOS versions
  6238. 6.x which loading EMM386.EXE.  And then loading programs which affect timers
  6239. into high memory.  Example programs include MOUSE.COM and SMARTDRV.EXE.
  6240.  
  6241. The problems affect Token ring drivers, and serial devices which rely on
  6242. timers and interrupt driven I/O.
  6243.  
  6244. I believe the problems are causes by the need to switch from Real mode to 
  6245. protected mode in order to access the high memory safely.
  6246.  
  6247. For a simple test, boot off of a DOS diskette without EMM386 being loaded
  6248. and try out MS-DOS Kermit.  And then report back the results, it would not
  6249. surprise me if MS-DOS Kermit works fine under these conditions.
  6250.  
  6251. But until we discover the cause, there is not much that Joe can do the 
  6252. replicate it since he doesn't have access to the necessary hardware.
  6253.  
  6254. Jeffrey Altman * PO Box 220415 * Great Neck, NY * 11022-0415 * (516) 466-5495
  6255. "C-Kermit: available on more platforms than any other communications software."
  6256. "Kermit FTP: sending files whenever and wherever they are needed."
  6257. OS/2 version 189 via ftp from watsun.cc.columbia.edu /kermit/bin/ckoker.zip 
  6258.  
  6259. From news@columbia.edu Sun Sep 25 19:26:16 1994
  6260. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA04805
  6261.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 25 Sep 1994 15:31:26 -0400
  6262. Received: by apakabar.cc.columbia.edu id AA14977
  6263.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 25 Sep 1994 15:31:25 -0400
  6264. Path: news.columbia.edu!panix!MathWorks.Com!solaris.cc.vt.edu!uunet!syko.cosmic.com!not-for-mail
  6265. From: marc@debris.cosmic.com (Marc Spitzer)
  6266. Newsgroups: comp.protocols.kermit.misc
  6267. Subject: where to get kermit and how to useit it?
  6268. Date: 25 Sep 1994 15:26:16 -0400
  6269. Organization: Cosmic Communications, Long Island, NY
  6270. Lines: 9
  6271. Message-Id: <364iso$gdl@debris.cosmic.com>
  6272. Nntp-Posting-Host: debris.cosmic.com
  6273. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  6274.  
  6275.  
  6276. Hello,
  6277.  
  6278. Where is kermit and how do you use it?  Pointers to ascii docs that i can 
  6279. ftp are what i would realy like. 
  6280.  
  6281. System 286 with 640 k herc moniter and st225 hd.
  6282.  
  6283. Thanks marc
  6284.  
  6285. From news@columbia.edu Sun Sep 25 21:28:29 1994
  6286. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA09095
  6287.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 25 Sep 1994 17:28:37 -0400
  6288. Received: by apakabar.cc.columbia.edu id AA20901
  6289.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 25 Sep 1994 17:28:36 -0400
  6290. Path: news.columbia.edu!panix!ddsw1!not-for-mail
  6291. From: doug@MCS.COM (Douglas Harvey)
  6292. Newsgroups: comp.protocols.kermit.misc
  6293. Subject: a nice kermit icon?
  6294. Date: 25 Sep 1994 16:28:29 -0500
  6295. Organization: /usr/lib/news/organi[sz]ation
  6296. Lines: 13
  6297. Message-Id: <364q1t$f7d@Mercury.mcs.com>
  6298. Nntp-Posting-Host: mercury.mcs.com
  6299. Summary: where can I find one?
  6300. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  6301.  
  6302. I am looking for a nice Windows-format icon to use with Kermit.  I've looked
  6303. around and found only one (which I didn't like).  Don't you all agree that 
  6304. the kermit distribution should have an "official" kermit icon?
  6305.  
  6306. This is partially in fun, but who <does> have a nice kermit icon?
  6307.  
  6308. Doug
  6309. --
  6310. doug@mcs.com
  6311.  
  6312.  
  6313.  
  6314.  
  6315.  
  6316. From news@columbia.edu Sun Sep 25 23:06:05 1994
  6317. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA15724
  6318.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 25 Sep 1994 19:52:06 -0400
  6319. Received: by apakabar.cc.columbia.edu id AA28076
  6320.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 25 Sep 1994 19:52:05 -0400
  6321. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!EU.net!sun4nl!news.nic.surfnet.nl!tudelft.nl!liberator.et.tudelft.nl!dutepp6.et.tudelft.nl!richard
  6322. From: richard@dutepp6.et.tudelft.nl (Richard Kooijman)
  6323. Newsgroups: comp.protocols.kermit.misc
  6324. Subject: Re: 16550A, PCI (Was: Computer hangs when line is dropped)
  6325. Date: 25 Sep 1994 23:06:05 GMT
  6326. Organization: Delft University of Technology, Dept. of Electrical Engineering
  6327. Lines: 45
  6328. Message-Id: <364vot$b3m@liberator.et.tudelft.nl>
  6329. References: <35pesr$sun@liberator.et.tudelft.nl> <35rc73$l8s@archsrv.rz.unibw-muenchen.de> <1994Sep22.143039.22376@iitmax.iit.edu> <35u9p2$dej@liberator.et.tudelft.nl> <1994Sep23.104605.27691@cc.usu.edu>
  6330. Nntp-Posting-Host: dutepp6.et.tudelft.nl
  6331. X-Newsreader: NN version 6.5.0 #1 (NOV)
  6332. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  6333.  
  6334. jrd@cc.usu.edu (Joe Doupnik) writes:
  6335.  
  6336. >> Kermit, however, fails using a single COM port.
  6337. >> What I didn't try yet was dialing and handling the callback by hand
  6338. >> so circumventing my automatic script. Any know problems in that area?
  6339. >> Richard.
  6340. >---------
  6341. >    Kermit's handling of the 16550A chip is fine, has been ever since
  6342. >the chips came out. But... motherboards and peripherals differ considerably,
  6343. >and the single word "fail" is too general for me to do much with.
  6344. >    Please note that Kermit actually safely tests your hardware before
  6345. >using it, contrary to the "shoot first, ask questions later" technique of many
  6346. >comms programs. If the test fails then the odds are in favor of something
  6347. >being peculiar in your machine.
  6348.  
  6349. Yeah right, I have seen this answer before, but Linux and Terminate
  6350. have zero, zilch, nada problems dealing with the hardware while Kermit
  6351. does have problems dealing with the chips. Maybe, just maybe I should
  6352. have said 'my chips' there, since you seem to think Kermit works flawless
  6353. with real 16550A's.
  6354. Other postings have proved otherwise, however.
  6355.  
  6356. >    I ask people to review the extensive material in text file MSKERM.BWR
  6357. >and open the covers of their machine to ensure things are the way one thinks
  6358. >they might be (check those jumpers). Watch out for TSRs hitting the ports,
  6359. >mouse drivers and fax programs included. While I enjoy tinkering with hardware 
  6360. >as much as the next person my crystal ball has a finite range; hence, I can't 
  6361. >diagnose the machine by remote control. That has to be your concern.
  6362.  
  6363. Sure, but the same (SAME as in equal) setup is OK with Terminate and Linux.
  6364. I don't need a crystal ball to tell me that apparently Kermit has a tinsy
  6365. little problem and not those other programs.
  6366. I have removed all TSR's and such, thank you, I am not a complete newbee.
  6367.  
  6368. >        As in all complex situations the path to solutions is simplify
  6369. >and isolate carefully. Divide and conquer (except when divide overflows).
  6370. >Ask a friend to be a cross examiner during the process, and don't forget those
  6371. >sacrifical chickens.
  6372.  
  6373. I have found the problem a while ago: MS-Kermit. Sorry, but that is just the
  6374. way it is.
  6375.  
  6376.  
  6377.  
  6378. Richard.
  6379.  
  6380. From news@columbia.edu Mon Sep 26 00:50:01 1994
  6381. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA21360
  6382.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 25 Sep 1994 20:51:38 -0400
  6383. Received: by apakabar.cc.columbia.edu id AA01430
  6384.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 25 Sep 1994 20:51:31 -0400
  6385. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!vixen.cso.uiuc.edu!newsrelay.iastate.edu!news.iastate.edu!tflynn
  6386. From: tflynn@iastate.edu (Timothy John Flynn)
  6387. Newsgroups: comp.protocols.kermit.misc
  6388. Subject: Problems with Kermit and Windows for Workgroups
  6389. Date: 26 Sep 1994 00:50:01 GMT
  6390. Organization: Iowa State University, Ames, IA
  6391. Lines: 28
  6392. Message-Id: <3655rp$blv@news.iastate.edu>
  6393. Nntp-Posting-Host: des1.iastate.edu
  6394. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  6395.  
  6396.  
  6397.     I am using kermit with windows for workgroups.  I seem to get
  6398. alot of retry errors when I download files while running under windows,
  6399. but when I run kermit straight out of dos I hardly get any.  I prefer to
  6400. work under windows so I can work on other programs while downloading..is
  6401. there any way I can set some options either in the emm386 area for
  6402. windows or does kermit require special comm drivers to communicate with
  6403. windows? My connection runs at 19200 and consists of a basic null modem
  6404. serial link with Iowa States Prject Vincent.
  6405.     Any help as always is greatly appreciated!
  6406. email please!
  6407.  
  6408.  
  6409.  
  6410.  
  6411.  
  6412.  
  6413.  
  6414.  
  6415.  
  6416.  
  6417.  
  6418. -- 
  6419. Timothy J Flynn                         
  6420. (tflynn@iastate.edu)                  
  6421. Fine Arts &                                        
  6422. Computer Science                     
  6423. Larch 1349 Cunningham, Ames, Iowa 50013-0008    phone (515)-294-9022
  6424.  
  6425. From news@columbia.edu Sun Sep 25 12:59:40 1994
  6426. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA25555
  6427.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 25 Sep 1994 21:13:38 -0400
  6428. Received: by apakabar.cc.columbia.edu id AA02424
  6429.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 25 Sep 1994 21:13:36 -0400
  6430. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  6431. From: jrd@cc.usu.edu (Joe Doupnik)
  6432. Newsgroups: comp.protocols.kermit.misc
  6433. Subject: Re: 16550A, PCI (Was: Computer hangs when line is dropped)
  6434. Message-Id: <1994Sep25.185940.27798@cc.usu.edu>
  6435. Date: 25 Sep 94 18:59:40 MDT
  6436. References: <35pesr$sun@liberator.et.tudelft.nl>  <364vot$b3m@liberator.et.tudelft.nl>
  6437. Organization: Utah State University
  6438. Lines: 32
  6439. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  6440.  
  6441. In article <364vot$b3m@liberator.et.tudelft.nl>, richard@dutepp6.et.tudelft.nl (Richard Kooijman) writes:
  6442. > jrd@cc.usu.edu (Joe Doupnik) writes:
  6443. >>> Kermit, however, fails using a single COM port.
  6444. >>> What I didn't try yet was dialing and handling the callback by hand
  6445. >>> so circumventing my automatic script. Any know problems in that area?
  6446. >>> Richard.
  6447. >>---------
  6448. >>    Kermit's handling of the 16550A chip is fine, has been ever since
  6449. >>the chips came out. But... motherboards and peripherals differ considerably,
  6450. >>and the single word "fail" is too general for me to do much with.
  6451. >>    Please note that Kermit actually safely tests your hardware before
  6452. >>using it, contrary to the "shoot first, ask questions later" technique of many
  6453. >>comms programs. If the test fails then the odds are in favor of something
  6454. >>being peculiar in your machine.
  6455. > Yeah right, I have seen this answer before, but Linux and Terminate
  6456. > have zero, zilch, nada problems dealing with the hardware while Kermit
  6457. > does have problems dealing with the chips. Maybe, just maybe I should
  6458. > have said 'my chips' there, since you seem to think Kermit works flawless
  6459. > with real 16550A's.
  6460. > Other postings have proved otherwise, however.
  6461.     Not to argue about it but they haven't shown that. May I refresh
  6462. the minds of the readership on the "emulated 16550A" chip problem: it is
  6463. a chip problem and the cure seems to be to hit the chip with a 2x4. Some
  6464. software may think that's a good thing to do and fooey on the rest of
  6465. the world; Kermit does not. In any case, as I said previously, MSK 3.14
  6466. has code to workaround this chip problem. The release MSKs for many years
  6467. have worked perfectly with real 16550As, at my place and from no reports
  6468. of troubles with the real chips.
  6469.     Joe D.
  6470.  
  6471.  
  6472. From news@columbia.edu Sun Sep 25 13:58:28 1994
  6473. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA06396
  6474.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 25 Sep 1994 22:13:55 -0400
  6475. Received: by apakabar.cc.columbia.edu id AA05890
  6476.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 25 Sep 1994 22:13:53 -0400
  6477. Path: news.columbia.edu!panix!MathWorks.Com!news.duke.edu!convex!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  6478. From: jrd@cc.usu.edu (Joe Doupnik)
  6479. Newsgroups: comp.protocols.kermit.misc
  6480. Subject: Re: Problems with Kermit and Windows for Workgroups
  6481. Message-Id: <1994Sep25.195828.27801@cc.usu.edu>
  6482. Date: 25 Sep 94 19:58:28 MDT
  6483. References: <3655rp$blv@news.iastate.edu>
  6484. Organization: Utah State University
  6485. Lines: 34
  6486. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  6487.  
  6488. In article <3655rp$blv@news.iastate.edu>, tflynn@iastate.edu (Timothy John Flynn) writes:
  6489. >     I am using kermit with windows for workgroups.  I seem to get
  6490. > alot of retry errors when I download files while running under windows,
  6491. > but when I run kermit straight out of dos I hardly get any.  I prefer to
  6492. > work under windows so I can work on other programs while downloading..is
  6493. > there any way I can set some options either in the emm386 area for
  6494. > windows or does kermit require special comm drivers to communicate with
  6495. > windows? My connection runs at 19200 and consists of a basic null modem
  6496. > serial link with Iowa States Prject Vincent.
  6497. >     Any help as always is greatly appreciated!
  6498. > email please!
  6499. ------------
  6500.     A very common complaint with all serial port comms programs under
  6501. Windows; you have company.
  6502.     It's Windows. If you scan the PC News groups notice how many msgs
  6503. there are on this topic. The cures fall into two main categories: if you
  6504. continue to run at 19,200 or higher then by all means acquire a buffered
  6505. UART (the 16550A flavor), and look for a better Windows serial port driver
  6506. than that shipped with Windows. Of course slowing down is also a solution.
  6507.     Windows grabs the real serial port and simulates it to DOS box
  6508. programs, so the fault is between Windows and its hardware. You can try
  6509. to give the DOS box greater cpu resources by fiddling with the program
  6510. parameters in Windows but much of this has to be done locally to match
  6511. the particular setup on the machine.
  6512.     Two replacment items I have come across are the Delrina Windows
  6513. Fax com item, wfxcom.zip (copy on netlab2.usu.edu, cd apps), and a decent
  6514. buffered UART serial board. I'm using a Hayes ESP board this week which
  6515. looks like a 16550A to programs and which has its own Windows driver.
  6516. There are many other drivers and boards available so you may wish to
  6517. ask around in the Windows News groups for shared experiences.
  6518.     Try to use hardware flow control (RTS/CTS) if your cable has 
  6519. enough wires. It's faster acting than XON/XOFF.
  6520.     Joe D.
  6521.  
  6522. From news@columbia.edu Sun Sep 25 14:05:33 1994
  6523. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA06402
  6524.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 25 Sep 1994 22:13:57 -0400
  6525. Received: by apakabar.cc.columbia.edu id AA05894
  6526.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 25 Sep 1994 22:13:56 -0400
  6527. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  6528. From: jrd@cc.usu.edu (Joe Doupnik)
  6529. Newsgroups: comp.protocols.kermit.misc
  6530. Subject: Re: a nice kermit icon?SKIP/NEWSGROUP
  6531. Message-Id: <1994Sep25.200533.27802@cc.usu.edu>
  6532. Date: 25 Sep 94 20:05:33 MDT
  6533. References: <364q1t$f7d@Mercury.mcs.com>
  6534. Organization: Utah State University
  6535. Lines: 38
  6536. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  6537.  
  6538. In article <364q1t$f7d@Mercury.mcs.com>, doug@MCS.COM (Douglas Harvey) writes:
  6539. > I am looking for a nice Windows-format icon to use with Kermit.  I've looked
  6540. > around and found only one (which I didn't like).  Don't you all agree that 
  6541. > the kermit distribution should have an "official" kermit icon?
  6542. > This is partially in fun, but who <does> have a nice kermit icon?
  6543. ------------
  6544.     I make one for the MSK 3.14 release. However, folks may have
  6545. a grain of artistic sense and discard my feeble attempt. Here is my
  6546. attempt, and please don't snicker to my face...
  6547.     Joe D.
  6548. -------------
  6549. section 1 of uuencode 4.13 of file KERMIT.ICO    by R.E.M.
  6550.  
  6551. begin 644 KERMIT.ICO
  6552. M```!``$`("`0``````#H`@``%@```"@````@````0`````$`!```````@`(`.
  6553. M``````````````````````````````"```"`````@(``@````(``@`"`@```6
  6554. M@("``,#`P````/\``/\```#__P#_````_P#_`/__``#___\`____________@
  6555. M____________________________________________________________$
  6556. M______________F9F9F9F9_____________Y\/#P\/"0```````/____^0\/9
  6557. M#P\/G_______`/____GP\/#P\)________`/___YF9F9F9F?________#___Z
  6558. M___Y_Y__________\`____^9F9F9F?_______P#____Y______^?______`/W
  6559. M____^?______G_____\`______GW=W=W_Y______#______Y______^?____L
  6560. M``#_____^?=W=W?_G____P``______G______Y____S,S,_____Y]W=W=_^?W
  6561. M__S,XN[LS___^?______G__,[B(N[LS___^9F9F9F?_\SN(B(N[NS/______G
  6562. M____S.[B(B+N[NS/_________\[NXB(B[N[NSP________S.[NXB+N[N[L_PQ
  6563. M_______\[N[N+NXN[N[L_P\`_____.[NXB+B[N[N[/_P#P____SN[B(B(N[N;
  6564. M[NS__P_P\`__SNXB(B+N[N[/_____P#P_\SN(B(B+N[LS______P_P_\XB(B]
  6565. M(N[N[/_________P_,XB(B(N[,S__________P_\[N[N[LS____________P`
  6566. M_\S,S,S/__\`````````````````````````````````````````````````U
  6567. M`````````````````````````````````````````````````````````````
  6568. M`````````````````````````````````````````````````````````````
  6569. !`````
  6570. ``
  6571. end
  6572. sum -r/size 57357/1106 section (from "begin" to "end")
  6573. sum -r/size 40329/766 entire input file
  6574.  
  6575.  
  6576. From news@columbia.edu Mon Sep 26 02:52:34 1994
  6577. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA12756
  6578.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 25 Sep 1994 22:58:32 -0400
  6579. Received: by apakabar.cc.columbia.edu id AA08046
  6580.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 25 Sep 1994 22:58:31 -0400
  6581. Newsgroups: comp.protocols.kermit.misc
  6582. Path: news.columbia.edu!panix!MathWorks.Com!news.kei.com!ub!acsu.buffalo.edu!ubvms.cc.buffalo.edu!RINGLAND
  6583. From: ringland@ubvms.cc.buffalo.edu
  6584. Subject: Kermit can't access modem under Windows
  6585. Message-Id: <Cwpunn.CG7@acsu.buffalo.edu>
  6586. Sender: nntp@acsu.buffalo.edu
  6587. Nntp-Posting-Host: ubvmsa.cc.buffalo.edu
  6588. Reply-To: ringland@ubvms.cc.buffalo.edu
  6589. Organization: University at Buffalo
  6590. Date: Mon, 26 Sep 1994 02:52:34 GMT
  6591. Lines: 15
  6592. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  6593.  
  6594. Hello.  I'm hoping that someone will indulge my ignorance and help
  6595. with what might be a common problem.  Kermit works fine in DOS on
  6596. my 386 with a USRobotics Sportster modem on Com 4, IRQ 5.  In windows
  6597. it seems that Kermit can't access the modem.  After trying the computer
  6598. hangs.  Cntl Alt. Del. sometimes quits Kermit and sometimes not, which
  6599. seems to be connected to whether the mouse is moving (mouse is on Com1,
  6600. IRQ 4).  I use other windows communications programs without problem,
  6601. except that they don't include full implementations of Kermit, and 
  6602. the protocols they do include often don't work, which is why I want
  6603. to run Kermit.  I *think* I've tried just about everything.  The modem
  6604. is a 14,400 model, and I'm fairly sure I've got all the Kermit settings
  6605. right, including, of course, the Com and Interrupt settings -- as I
  6606. said, works fine in DOS.  Help!
  6607.  
  6608. Thanks!  (BTW this is the latest Kermit MS-DOS 3.13)
  6609.  
  6610. From news@columbia.edu Mon Sep 26 06:43:43 1994
  6611. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA07230
  6612.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 02:43:49 -0400
  6613. Received: by apakabar.cc.columbia.edu id AA17243
  6614.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 02:43:47 -0400
  6615. Path: news.columbia.edu!panix!not-for-mail
  6616. From: ami@panix.com (Ami Bar-Yadin)
  6617. Newsgroups: comp.protocols.kermit.misc
  6618. Subject: non-erasable characters in VT220 emulation
  6619. Date: 26 Sep 1994 02:43:43 -0400
  6620. Organization: PANIX Public Access Internet and Unix, NYC
  6621. Lines: 35
  6622. Message-Id: <2kaXkSng1uNR071yn@panix.com>
  6623. Nntp-Posting-Host: panix.com
  6624. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  6625.  
  6626. The DEC VT220 has some command sequences that deal with
  6627. non-erasable characters.  I think Kermit's emulation of a VT220
  6628. does not handle these properly.
  6629.  
  6630. Is Kermit suppose to support these command sequences?
  6631.  
  6632. If not, are there any plans to add this support in the future?
  6633.  
  6634.  
  6635. From the DEC VT220 pocket reference guide:
  6636.  
  6637. Select Char Attributes (DECSCA):  Applies to subsequent characters
  6638.    CSI Ps " q
  6639.    where Ps is
  6640.         0: All attributes off (does not apply to Graphic Rendition)
  6641.         1: designate chars as "not erasable" by DECSEL/DECSED
  6642.         2: designate chars as "erasable" by DECSEL/DECSED
  6643.  
  6644. Selective Erase in Line (DECSEL):
  6645.    CSI ? Ps K
  6646.    where Ps is
  6647.      null:  Erase all "erasable" chars from cursor to EOL
  6648.         0:  Same as null
  6649.         1:  Erase all "erasable" chars from BOL to cursor
  6650.         2:  Erase all "erasable" chars on the line
  6651.  
  6652. Selective Erase in Display (DECSED):
  6653.    CSI ? Ps J
  6654.    where Ps is
  6655.      null:  Erase all "erasable" chars from cursor to EOS
  6656.         0:  same as null
  6657.         1:  Erase all "erasable" chars from BOS to cursor
  6658.         2:  Erase all "erasable" chars on the screen
  6659. --
  6660. Ami Bar-Yadin (ami@panix.com)
  6661.  
  6662. From news@columbia.edu Mon Sep 26 13:00:17 1994
  6663. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA16809
  6664.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 09:00:19 -0400
  6665. Received: by apakabar.cc.columbia.edu id AA09236
  6666.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 09:00:18 -0400
  6667. Path: news.columbia.edu!usenet
  6668. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  6669. Newsgroups: comp.protocols.kermit.misc
  6670. Subject: Re: non-erasable characters in VT220 emulation
  6671. Date: 26 Sep 1994 13:00:17 GMT
  6672. Organization: Columbia University
  6673. Lines: 16
  6674. Distribution: World
  6675. Message-Id: <366gl1$90i@apakabar.cc.columbia.edu>
  6676. References: <2kaXkSng1uNR071yn@panix.com>
  6677. Nntp-Posting-Host: fdc.cc.columbia.edu
  6678. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  6679.  
  6680. In article <2kaXkSng1uNR071yn@panix.com> ami@panix.com (Ami Bar-Yadin)  
  6681. writes:
  6682. > The DEC VT220 has some command sequences that deal with
  6683. > non-erasable characters.  I think Kermit's emulation of a VT220
  6684. > does not handle these properly.
  6685. > Is Kermit suppose to support these command sequences?
  6686. Support for "protected fields" has been added to version 3.14, which
  6687. will be announced for testing shortly.
  6688.  
  6689. - Frank
  6690. x
  6691. x
  6692. x
  6693. x
  6694. x
  6695.  
  6696. From news@columbia.edu Mon Sep 26 13:04:26 1994
  6697. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA17324
  6698.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 09:04:29 -0400
  6699. Received: by apakabar.cc.columbia.edu id AA09534
  6700.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 09:04:28 -0400
  6701. Path: news.columbia.edu!usenet
  6702. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  6703. Newsgroups: comp.protocols.kermit.misc
  6704. Subject: Re: Wtd: "Kermit, a file transfer protocol"
  6705. Date: 26 Sep 1994 13:04:26 GMT
  6706. Organization: Columbia University
  6707. Lines: 12
  6708. Distribution: World
  6709. Message-Id: <366gsq$99q@apakabar.cc.columbia.edu>
  6710. References: <1994Sep25.015535.1@orion.alaska.edu>
  6711. Nntp-Posting-Host: fdc.cc.columbia.edu
  6712. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  6713.  
  6714. In article <1994Sep25.015535.1@orion.alaska.edu> fsbem@orion.alaska.edu  
  6715. writes:
  6716. > Looking for a copy of fdc's book "Kermit, a file transfer protocol"
  6717. > If anybody has a copy they are not using anymore, drop me a line,
  6718. It's still in print, believe it or not.  Although the types of
  6719. computers it talks about have mostly faded into history (DEC-20s, etc),
  6720. the specification of the Kermit protocol is still the definitive one.
  6721. If you can't find it at your local computer bookstore, you can call
  6722. +1 212 854-3703 or +1 800 366-2665 to order it.
  6723.  
  6724. - Frank
  6725.  
  6726. From news@columbia.edu Mon Sep 26 13:28:36 1994
  6727. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA19508
  6728.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 09:28:42 -0400
  6729. Received: by apakabar.cc.columbia.edu id AA11221
  6730.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 09:28:40 -0400
  6731. Path: news.columbia.edu!usenet
  6732. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  6733. Newsgroups: comp.protocols.kermit.misc
  6734. Subject: Re: When not "set file type binary" always?
  6735. Date: 26 Sep 1994 13:28:36 GMT
  6736. Organization: Columbia University
  6737. Lines: 61
  6738. Distribution: World
  6739. Message-Id: <366ia4$aui@apakabar.cc.columbia.edu>
  6740. References: <362e3r$jef@news.CCIT.Arizona.EDU>
  6741. Nntp-Posting-Host: fdc.cc.columbia.edu
  6742. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  6743.  
  6744. In article <362e3r$jef@news.CCIT.Arizona.EDU>
  6745. jjr@mipl.ece.arizona.edu (Jeffrey J. Rodriguez) writes:
  6746. > Why not always do "set file type binary"?
  6747. > Is there any reason to use text mode?
  6748. > Binary mode seems to work fine for all types of files.
  6749. > (I have the same question regarding ftp.)
  6750. > Why is there a text mode at all?
  6751. Three reasons:
  6752.  
  6753. (1) Record format: As most people know, different file systems represent
  6754. lines of plain text in different ways:
  6755.  
  6756.  . A stream of characters terminated by CRLF (e.g. DOS)
  6757.  . A stream of characters terminated by LF (e.g. UNIX)
  6758.  . A stream of characters terminated by CR (e.g. Mac or OS-9)
  6759.  . A LF followed by a stream of charcters followed by CR (VMS)
  6760.  . A count word followed by a stream of characters (mainframes)
  6761.  . A fixed-length field with trailing blanks or NULs (mainframes)
  6762.  . etc etc etc
  6763.  
  6764. If you transfer a text file from one type of system to another, the
  6765. presumption is that you want it to be in useful format when it arrives.
  6766. For example, if you transferred a Macintosh text file to, say, a UNIX or
  6767. VMS system without conversion, you would probably wind up with all the
  6768. lines overstriking each other.  If you transferred C program source from
  6769. DOS to UNIX in binary mode, you couldn't compile it.  If you transferred
  6770. UNIX text to DOS in binary mode, it would print in "stairstep" fashion.
  6771. And so on.
  6772.  
  6773. (2) File Format.  Different file systems have different ways of
  6774. representing the end of a file:
  6775.  
  6776.  . An exact byte count (e.g. UNIX)
  6777.  . An approximately byte count (e.g. Prime)
  6778.  . A block count
  6779.  . A record count
  6780.  . An internal in-band marker, like Ctrl-Z
  6781.  . etc etc
  6782.  
  6783. When you transfer text files in binary mode, and the end of file is not
  6784. represented in an exact fashion, you are likely to get junk at the end
  6785. of the transferred file.
  6786.  
  6787. (3) Character set.  I realize Americans could not care less about this
  6788. issue, but there are places in the world where people speak other
  6789. languages than English, in which accented and/or non-Roman letters or
  6790. other glyphs are needed, and want to be able to use them when writing
  6791. text on their computers.  Unfortunately, each computer and OS is likely
  6792. to use completely different encodings for the same characters.
  6793. Binary-mode transfers would skip any needed conversions whereas
  6794. text-mode transfers -- at least when done by Kermit -- will take care of
  6795. them.
  6796.  
  6797. Bottom line: Use text mode when transferring plain text and you want it
  6798. to arrive on the destination system in useful format.  Use binary mode
  6799. when you don't want any conversions to be done.  You can also use binary
  6800. mode when transferring text between two computers that have the same
  6801. kind of file system -- record format, file format, and character set.
  6802.  
  6803. - Frank
  6804.  
  6805. From news@columbia.edu Mon Sep 26 12:56:30 1994
  6806. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA19544
  6807.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 09:29:23 -0400
  6808. Received: by apakabar.cc.columbia.edu id AA11267
  6809.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 09:29:22 -0400
  6810. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!agate!doc.ic.ac.uk!susx.ac.uk!leilabd
  6811. From: leilabd@central.susx.ac.uk (Leila Burrell-Davis)
  6812. Newsgroups: comp.protocols.kermit.misc
  6813. Subject: Re: a nice kermit icon?SKIP/NEWSGROUP
  6814. Date: 26 Sep 1994 12:56:30 GMT
  6815. Organization: Computing Service, University of Sussex, UK
  6816. Lines: 48
  6817. Message-Id: <366gdu$nst@infa.central.susx.ac.uk>
  6818. References: <364q1t$f7d@Mercury.mcs.com> <1994Sep25.200533.27802@cc.usu.edu>
  6819. Nntp-Posting-Host: solx1.central.susx.ac.uk
  6820. X-Newsreader: TIN [version 1.2 PL2]
  6821. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  6822.  
  6823. Joe Doupnik (jrd@cc.usu.edu) wrote:
  6824. % In article <364q1t$f7d@Mercury.mcs.com>, doug@MCS.COM (Douglas Harvey) writes:
  6825. % > I am looking for a nice Windows-format icon to use with Kermit.  I've looked
  6826. % > around and found only one (which I didn't like).  Don't you all agree that 
  6827. % > the kermit distribution should have an "official" kermit icon?
  6828. % > 
  6829. % > This is partially in fun, but who <does> have a nice kermit icon?
  6830. % ------------
  6831. %     I make one for the MSK 3.14 release. However, folks may have
  6832. % a grain of artistic sense and discard my feeble attempt. Here is my
  6833. % attempt, and please don't snicker to my face...
  6834. %     Joe D.
  6835. % -------------
  6836.  
  6837. Designing icons is clearly an art :-). Here's the one we use here.
  6838. Feel free to snicker or to use it.
  6839.  
  6840. Leila
  6841. --
  6842. table
  6843.  !"#$%&'()*+,-./0123456789:;<=>?
  6844. @ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_
  6845. begin 644 kermit.ico
  6846. M   !  $ (" 0      #H @  %@   "@    @    0     $ !       @ ( z
  6847. M                              "   "     @(  @    (  @ " @   y
  6848. M@("  ,# P    /\  /\   #__P#_    _P#_ /__  #___\ ____/______Px
  6849. M,S,S,S,S,___________\#,S,S,S,S/___/_____]5 S,S,S,S,S________w
  6850. M]5 #,S,S,S,S,_____55554P,S,S,S,S,S/__S9:JJJJH#,S,S,S,S,S__55v
  6851. M6J.JJJ S,S,S,S,S,_\%JJJJJJJ@ S,S,S,S,S-0"JJJJJJJJ@,S,S,S,S,Su
  6852. MX JJJJJJJJJJ#N[N[N[N[NX*JJJJJJJJJ@#N[N[N[N[N"JJJJJJJJJJJH   t
  6853. M#N[N[@JJJJJJJJJJJJ  "@  [NX*JJJJJJJJH   JJ *H [N"JJJJJJJH "Js
  6854. MJJJJJJH.[@JJJJJJJJ"JJJJJJJJJ#NX*JJJJJJ *JJJJJJJJH [NX*JJJJJ@r
  6855. MJJJJJJJJJJ#N[N"JJJJJJJJJJJJJJJH.[N[@JJJJJJJJJJJJJJH #N[NX JJq
  6856. MH "JJJJJJJJ@#N[N[NX H _P  JJJJJJH.[N[N[NX*#___\ JJJJH [N[N[Np
  6857. M[NX __  \*JJH [N[N[N[N[NX/\  /"J   .[N[N[N[N[N#_  \   \/#N[No
  6858. M[N[N[N[N#___#N#P#P[N[N[N[N[N[@#_\ [@#_ .[N[N[N[N[N[N  [N[@  n
  6859. M[N[N[N[N[N[N[N[N[N[N[N[N[N[N[N[N[N[N[N[N[N[N[N[N[N[N[N[N[N[Nm
  6860. M[N[N[N[N[NX                                                 l
  6861. M                                                            k
  6862. M                                                            j
  6863. !    i
  6864.  h
  6865. end
  6866. -- 
  6867. Leila Burrell-Davis, Computing Service, University of Sussex, Brighton, UK
  6868. Tel:  +44 (0) 1273 678390            Fax:  +44 (0) 1273 678470
  6869. Email: L.Burrell-Davis@susx.ac.uk
  6870. PGP Public Key fingerprint: 18 A3 45 D6 40 6D 62 00  E9 71 AD 18 E8 E2 9F 7D 
  6871.  
  6872. From news@columbia.edu Mon Sep 26 01:47:46 1994
  6873. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA22725
  6874.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 10:18:03 -0400
  6875. Received: by apakabar.cc.columbia.edu id AA14434
  6876.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 10:18:02 -0400
  6877. Path: news.columbia.edu!panix!MathWorks.Com!news.duke.edu!convex!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  6878. From: jrd@cc.usu.edu (Joe Doupnik)
  6879. Newsgroups: comp.protocols.kermit.misc
  6880. Subject: Re: Kermit can't access modem under Windows
  6881. Message-Id: <1994Sep26.074746.27819@cc.usu.edu>
  6882. Date: 26 Sep 94 07:47:46 MDT
  6883. References: <Cwpunn.CG7@acsu.buffalo.edu>
  6884. Organization: Utah State University
  6885. Lines: 14
  6886. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  6887.  
  6888. In article <Cwpunn.CG7@acsu.buffalo.edu>, ringland@ubvms.cc.buffalo.edu writes:
  6889. > Hello.  I'm hoping that someone will indulge my ignorance and help
  6890. > with what might be a common problem.  Kermit works fine in DOS on
  6891. > my 386 with a USRobotics Sportster modem on Com 4, IRQ 5.  In windows
  6892. > it seems that Kermit can't access the modem.  After trying the computer
  6893. > hangs.  Cntl Alt. Del. sometimes quits Kermit and sometimes not, which
  6894. > seems to be connected to whether the mouse is moving (mouse is on Com1,
  6895. > IRQ 4).
  6896.  
  6897.     Did you tell Kermit about the port and IRQ for COM4 via the
  6898. Kermit command SET COM4 port irq? The reason you have to for this port
  6899. and for IRQ not 4 or 3 is there is no way to acquire that information
  6900. from the hardware. 
  6901.     Joe D.
  6902.  
  6903. EL):
  6904. >    CSI ? Ps K
  6905. >    where Ps is
  6906. >      null:  Erase all "erasable" chars from cursor to EOL
  6907. >         0:  Same as null
  6908. >         1:  Erase all "erasable" chars from BOL to cursor
  6909. >         2:  Erase all "erasable" chars on the line
  6910. > Selective Erase in Display (DECSED):
  6911. >    CSI ? Ps J
  6912. >    where Ps is
  6913. >      null:  Erase all "erasable" chars from cursor to EOS
  6914. >         0:  same as null
  6915. >         1:  Erase all "erasable" chars from BOS to cursor
  6916. >         2:  Erase all "erasable" chars on the screen
  6917. > --
  6918. ---------------
  6919.     As detailed in the release doc msvibm.vt which is part of the
  6920. MS-DOS Kermit distribution suite, these commands are not supported in
  6921. MSK up to v3.13. They are very rarely used. But version 3.14 (to come
  6922. out) does implement them.
  6923.     Joe D.
  6924.  
  6925. From news@columbia.edu Mon Sep 19 20:59:00 1994
  6926. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA20731
  6927.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 16:16:36 -0400
  6928. Received: by apakabar.cc.columbia.edu id AA09939
  6929.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 16:16:33 -0400
  6930. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!ee.und.ac.za!csir.co.za!proxima.alt.za!aecibbs!sigurd.andersen
  6931. From: sigurd.andersen@aecibbs.proxima.alt.za (Sigurd Andersen)
  6932. Newsgroups: comp.protocols.kermit.misc
  6933. Subject: Re: A little bit of reverse engineering.
  6934. Message-Id: <12.335.uupcb@aecibbs.proxima.alt.za>
  6935. Date: 19 Sep 94 20:59:00 GMT
  6936. Distribution: world
  6937. Organization: AECI BBS  +27 11 608-1516
  6938. Reply-To: sigurd.andersen@aecibbs.proxima.alt.za (Sigurd Andersen)
  6939. Lines: 8
  6940. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  6941.  
  6942. From: sigurd@chopin.udel.edu (Sigurd Andersen)
  6943. Date: 16 Sep 1994 18:30:14 -0400
  6944. Organization: University of Delaware
  6945. Message-ID: <35d69m$7fs@chopin.udel.edu>
  6946.  
  6947. In article <35bbuh$7h4@sunserver.lrz-muenchen.de>,
  6948. <s3e0101@sun2.lrz-muenchen.de> wrote:
  6949. :
  6950.  
  6951. From news@columbia.edu Mon Sep 19 20:59:00 1994
  6952. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA20750
  6953.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 16:16:59 -0400
  6954. Received: by apakabar.cc.columbia.edu id AA09984
  6955.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 16:16:57 -0400
  6956. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!ee.und.ac.za!csir.co.za!proxima.alt.za!aecibbs!cliff.stamp
  6957. From: cliff.stamp@aecibbs.proxima.alt.za (Cliff Stamp)
  6958. Newsgroups: comp.protocols.kermit.misc
  6959. Subject: kermit dialing help (3.1.3 on PC)
  6960. Message-Id: <13.335.uupcb@aecibbs.proxima.alt.za>
  6961. Date: 19 Sep 94 20:59:00 GMT
  6962. Distribution: world
  6963. Organization: AECI BBS  +27 11 608-1516
  6964. Reply-To: cliff.stamp@aecibbs.proxima.alt.za (Cliff Stamp)
  6965. Lines: 11
  6966. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  6967.  
  6968. From: cstamp@morgan.ucs.mun.ca (Cliff Stamp)
  6969. Date: 16 Sep 1994 17:32:24 GMT
  6970. Organization: Memorial University of Newfoundland
  6971. Message-ID: <35ckr8$s2s@coranto.ucs.mun.ca>
  6972.  
  6973. Does anyone know how to tell kermit to redial after a set number
  6974. of rings/busy signals. Right now it is set to around 25 and I would
  6975. like to lower it to 2.
  6976.  
  6977. Thanks for your time.
  6978. --
  6979.  
  6980. From news@columbia.edu Mon Sep 19 20:59:00 1994
  6981. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA20810
  6982.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 16:17:16 -0400
  6983. Received: by apakabar.cc.columbia.edu id AA10012
  6984.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 16:17:15 -0400
  6985. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!ee.und.ac.za!csir.co.za!proxima.alt.za!aecibbs!hutsel.barry.e
  6986. From: hutsel.barry.e@aecibbs.proxima.alt.za (Hutsel Barry E)
  6987. Newsgroups: comp.protocols.kermit.misc
  6988. Subject: FTP - KERMIT ==>Problems
  6989. Message-Id: <14.335.uupcb@aecibbs.proxima.alt.za>
  6990. Date: 19 Sep 94 20:59:00 GMT
  6991. Distribution: world
  6992. Organization: AECI BBS  +27 11 608-1516
  6993. Reply-To: hutsel.barry.e@aecibbs.proxima.alt.za (Hutsel Barry E)
  6994. Lines: 10
  6995. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  6996.  
  6997. From: 3beh5@qlink (Hutsel Barry E)
  6998. Date: 17 Sep 1994 02:37:30 GMT
  6999. Organization: Queen's University, Kingston
  7000. Message-ID: <35dkpa$jud@knot.queensu.ca>
  7001.  
  7002. I'm just new at this, but am I doing something wrong:
  7003.  
  7004. 1.  I am attempting to FTP a binary file (ie.  .ZIP)
  7005. 2.  I set FTP to bin and get the file to my home directory
  7006. 3.  Then I run kermit on the remote computer and escape (alt-x) to the
  7007.  
  7008. From news@columbia.edu Mon Sep 19 20:59:00 1994
  7009. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA20827
  7010.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 16:17:31 -0400
  7011. Received: by apakabar.cc.columbia.edu id AA10033
  7012.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 16:17:30 -0400
  7013. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!newsxfer.itd.umich.edu!gatech!howland.reston.ans.net!ee.und.ac.za!csir.co.za!proxima.alt.za!aecibbs!roland.kwee
  7014. From: roland.kwee@aecibbs.proxima.alt.za (Roland Kwee)
  7015. Newsgroups: comp.protocols.kermit.misc
  7016. Subject: Re: FTP - KERMIT ==>Problems
  7017. Message-Id: <15.335.uupcb@aecibbs.proxima.alt.za>
  7018. Date: 19 Sep 94 20:59:00 GMT
  7019. Distribution: world
  7020. Organization: AECI BBS  +27 11 608-1516
  7021. Reply-To: roland.kwee@aecibbs.proxima.alt.za (Roland Kwee)
  7022. Lines: 8
  7023. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  7024.  
  7025. From: rkwee@ee.pdx.edu (Roland Kwee)
  7026. Date: 17 Sep 1994 21:54:24 -0700
  7027. Message-ID: <35gh60$3r1@cruella.ee.pdx.edu>
  7028.  
  7029. 3beh5@qlink (Hutsel Barry E) writes:
  7030.  
  7031. >4.  Next I "set file type binary" on the local kermit
  7032. >Problem:  The file is useless when I get it to my local machine.  It's
  7033.  
  7034. From news@columbia.edu Mon Sep 19 20:59:00 1994
  7035. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA20850
  7036.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 16:17:54 -0400
  7037. Received: by apakabar.cc.columbia.edu id AA10062
  7038.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 16:17:52 -0400
  7039. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!ee.und.ac.za!csir.co.za!proxima.alt.za!aecibbs!huzacec@telerama.lm.com
  7040. From: huzacec@telerama.lm.com (Huzacec@Telerama.Lm.Com)
  7041. Newsgroups: comp.protocols.kermit.misc
  7042. Subject: Dumb question...
  7043. Message-Id: <17.335.uupcb@aecibbs.proxima.alt.za>
  7044. Date: 19 Sep 94 20:59:00 GMT
  7045. Distribution: world
  7046. Organization: AECI BBS  +27 11 608-1516
  7047. Reply-To: huzacec@telerama.lm.com (Huzacec@Telerama.Lm.Com)
  7048. Lines: 14
  7049. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  7050.  
  7051. From: huzacec@telerama.lm.com
  7052. Date: 18 Sep 1994 00:56:48 -0400
  7053. Organization: Telerama Public Access Internet, Pittsburgh, PA
  7054. Message-ID: <35ghag$274@telerama.lm.com>
  7055.  
  7056.  
  7057. Can someone please tell me where I can FTP C-Kermit for DOS?
  7058.  
  7059. Thanks.
  7060. Mike
  7061.  
  7062. (please e-mail me)
  7063. huzacec@telerama.lm.com
  7064.  
  7065.  
  7066. otely execute commands, etc. but I am having problems getting kermit
  7067. to 'pipe' results back to a local machine; ie. I want to run a command
  7068. on a remote machine, and pipe its results into Kermit (in eg. a
  7069.  
  7070. From news@columbia.edu Tue Sep 20 00:41:00 1994
  7071. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA20877
  7072.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 16:18:09 -0400
  7073. Received: by apakabar.cc.columbia.edu id AA10081
  7074.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 16:18:08 -0400
  7075. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!quagga.ru.ac.za!ee.und.ac.za!csir.co.za!proxima.alt.za!aecibbs!xander.jansen@surfnet.nl
  7076. From: xander.jansen@surfnet.nl (Xander.Jansen@Surfnet.Nl)
  7077. Newsgroups: comp.protocols.kermit.misc
  7078. Subject: Re: A little bit of reverse engineering.
  7079. Message-Id: <18.335.uupcb@aecibbs.proxima.alt.za>
  7080. Date: 20 Sep 94 00:41:00 GMT
  7081. Distribution: world
  7082. Organization: AECI BBS  +27 11 608-1516
  7083. Reply-To: xander.jansen@surfnet.nl (Xander.Jansen@Surfnet.Nl)
  7084. Lines: 8
  7085. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  7086.  
  7087. From: Xander.Jansen@SURFnet.nl
  7088. Message-ID: <Pine.SUN.3.90a.940918142439.28543D-100000@survis.surfnet.nl>
  7089. Organization: SURFnet bv
  7090. Date: Sun, 18 Sep 1994 12:32:01 GMT
  7091.  
  7092. On 16 Sep 1994 s3e0101@sun2.lrz-muenchen.de wrote:
  7093.  
  7094. > For a certain opac I have been give a version of kermit with "key settings", 
  7095.  
  7096. From news@columbia.edu Wed Sep 21 08:41:00 1994
  7097. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA20906
  7098.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 16:18:37 -0400
  7099. Received: by apakabar.cc.columbia.edu id AA10098
  7100.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 16:18:35 -0400
  7101. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!quagga.ru.ac.za!ee.und.ac.za!csir.co.za!proxima.alt.za!aecibbs!mdesouza
  7102. From: mdesouza@aecibbs.proxima.alt.za (Mdesouza)
  7103. Newsgroups: comp.protocols.kermit.misc
  7104. Subject: Kermit Access/Availability
  7105. Message-Id: <19.335.uupcb@aecibbs.proxima.alt.za>
  7106. Date: 21 Sep 94 08:41:00 GMT
  7107. Distribution: world
  7108. Organization: AECI BBS  +27 11 608-1516
  7109. Reply-To: mdesouza@aecibbs.proxima.alt.za (Mdesouza)
  7110. Lines: 8
  7111. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  7112.  
  7113. From: mdesouza@wam.umd.edu (MDESOUZA)
  7114. Date: 18 Sep 1994 18:26:12 GMT
  7115. Organization: University of Maryland, College Park
  7116. Message-ID: <35i0o4$6s@cville-srv.wam.umd.edu>
  7117.  
  7118. Hello All,
  7119. I want to use download files from my host (umd) to my home pc.
  7120. At the momnet I use procomm plus as my comm software to dial out of my
  7121.  
  7122. From news@columbia.edu Wed Sep 21 08:42:00 1994
  7123. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA20930
  7124.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 16:18:57 -0400
  7125. Received: by apakabar.cc.columbia.edu id AA10111
  7126.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 16:18:55 -0400
  7127. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!ee.und.ac.za!csir.co.za!proxima.alt.za!aecibbs!j..wakeley.purple
  7128. From: j..wakeley.purple@aecibbs.proxima.alt.za (J. Wakeley Purple)
  7129. Newsgroups: comp.protocols.kermit.misc
  7130. Subject: Re: kermit dialing help (3.1.3 on PC)
  7131. Message-Id: <20.335.uupcb@aecibbs.proxima.alt.za>
  7132. Date: 21 Sep 94 08:42:00 GMT
  7133. Distribution: world
  7134. Organization: AECI BBS  +27 11 608-1516
  7135. Reply-To: j..wakeley.purple@aecibbs.proxima.alt.za (J. Wakeley Purple)
  7136. Lines: 15
  7137. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  7138.  
  7139. From: wakep@iglou.iglou.com (J. Wakeley Purple)
  7140. Message-ID: <1994Sep18.184813.25965@iglou.com>
  7141. Organization: The Internet Gateway of Louisville, KY
  7142. Date: Sun, 18 Sep 1994 18:48:13 GMT
  7143.  
  7144. Cliff Stamp (cstamp@morgan.ucs.mun.ca) wrote:
  7145. : Does anyone know how to tell kermit to redial after a set number
  7146. : of rings/busy signals. Right now it is set to around 25 and I would
  7147. : like to lower it to 2.
  7148.  
  7149. I don't think kermit has any default redial.
  7150.  
  7151. It does have a timeout until connect.
  7152.  
  7153. You're probably using kermit running with a script which has a loop in
  7154.  
  7155. From news@columbia.edu Wed Sep 21 08:42:00 1994
  7156. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA20949
  7157.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 16:19:14 -0400
  7158. Received: by apakabar.cc.columbia.edu id AA10128
  7159.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 16:19:13 -0400
  7160. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!ee.und.ac.za!csir.co.za!proxima.alt.za!aecibbs!harry.h.conover
  7161. From: harry.h.conover@aecibbs.proxima.alt.za (Harry H Conover)
  7162. Newsgroups: comp.protocols.kermit.misc
  7163. Subject: FTP for Current MS-DOS Kermit?
  7164. Message-Id: <21.335.uupcb@aecibbs.proxima.alt.za>
  7165. Date: 21 Sep 94 08:42:00 GMT
  7166. Distribution: world
  7167. Organization: AECI BBS  +27 11 608-1516
  7168. Reply-To: harry.h.conover@aecibbs.proxima.alt.za (Harry H Conover)
  7169. Lines: 9
  7170. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  7171.  
  7172. From: conover@max.tiac.net (Harry H Conover)
  7173. Date: 18 Sep 1994 19:03:06 GMT
  7174. Organization: The Internet Access Company
  7175. Message-ID: <35i2ta$qgp@sundog.tiac.net>
  7176.  
  7177.  
  7178. I'm current using Kermit as my primary communications package, as
  7179. I have for the past 10 years or so.  So far, the program has survived
  7180. an IBM XT, '286, '386' and '486, and is now going strong on the
  7181.  
  7182. From news@columbia.edu Wed Sep 21 08:42:00 1994
  7183. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA20964
  7184.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 16:19:36 -0400
  7185. Received: by apakabar.cc.columbia.edu id AA10135
  7186.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 16:19:20 -0400
  7187. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!ee.und.ac.za!csir.co.za!proxima.alt.za!aecibbs!j..wakeley.purple
  7188. From: j..wakeley.purple@aecibbs.proxima.alt.za (J. Wakeley Purple)
  7189. Newsgroups: comp.protocols.kermit.misc
  7190. Subject: Re: Kermit Access/Availability
  7191. Message-Id: <22.335.uupcb@aecibbs.proxima.alt.za>
  7192. Date: 21 Sep 94 08:42:00 GMT
  7193. Distribution: world
  7194. Organization: AECI BBS  +27 11 608-1516
  7195. Reply-To: j..wakeley.purple@aecibbs.proxima.alt.za (J. Wakeley Purple)
  7196. Lines: 11
  7197. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  7198.  
  7199. From: wakep@iglou.iglou.com (J. Wakeley Purple)
  7200. Message-ID: <1994Sep18.190019.26900@iglou.com>
  7201. Organization: The Internet Gateway of Louisville, KY
  7202. Date: Sun, 18 Sep 1994 19:00:19 GMT
  7203.  
  7204. MDESOUZA (mdesouza@wam.umd.edu) wrote:
  7205. : Hello All,
  7206. :     I want to use download files from my host (umd) to my home pc.
  7207.  
  7208. : home, but the computer center guys say Kermit is way better.  they have
  7209. : a disk, but i remember that one could download the "latest" kermit
  7210.  
  7211. From news@columbia.edu Wed Sep 21 08:42:00 1994
  7212. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA20972
  7213.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 16:19:45 -0400
  7214. Received: by apakabar.cc.columbia.edu id AA10151
  7215.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 16:19:44 -0400
  7216. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!ee.und.ac.za!csir.co.za!proxima.alt.za!aecibbs!steven.patrick.iltis
  7217. From: steven.patrick.iltis@aecibbs.proxima.alt.za (Steven Patrick Iltis)
  7218. Newsgroups: comp.protocols.kermit.misc
  7219. Subject: Kermit and Zmodem?
  7220. Message-Id: <23.335.uupcb@aecibbs.proxima.alt.za>
  7221. Date: 21 Sep 94 08:42:00 GMT
  7222. Distribution: world
  7223. Organization: AECI BBS  +27 11 608-1516
  7224. Reply-To: steven.patrick.iltis@aecibbs.proxima.alt.za (Steven Patrick Iltis)
  7225. Lines: 13
  7226. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  7227.  
  7228. From: iltiss@rice.edu (Steven Patrick Iltis)
  7229. Date: 18 Sep 1994 19:51:08 GMT
  7230. Organization: Rice University, Houston, Texas
  7231. Message-ID: <35i5nc$eq9@larry.rice.edu>
  7232.  
  7233.  
  7234. Is it possible to use zmodem (or rz and sz) with kermit? I use Kermit
  7235. on Linux to log on to systems, and would like to use zmodem with
  7236. Kermit.
  7237.  
  7238. If I can't get these to work together, how can I get the fastest
  7239. transfers with Kermit? Currently, I can only get about 1200 cps on a
  7240. 14.4 modem.
  7241.  
  7242. From news@columbia.edu Wed Sep 21 08:44:00 1994
  7243. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA21120
  7244.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 16:21:06 -0400
  7245. Received: by apakabar.cc.columbia.edu id AA10406
  7246.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 16:21:04 -0400
  7247. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!ee.und.ac.za!csir.co.za!proxima.alt.za!aecibbs!keith.petersen
  7248. From: keith.petersen@aecibbs.proxima.alt.za (Keith Petersen)
  7249. Newsgroups: comp.protocols.kermit.misc
  7250. Subject: Re: FTP for Current MS-DOS Kermit?
  7251. Message-Id: <24.335.uupcb@aecibbs.proxima.alt.za>
  7252. Date: 21 Sep 94 08:44:00 GMT
  7253. Distribution: world
  7254. Organization: AECI BBS  +27 11 608-1516
  7255. Reply-To: keith.petersen@aecibbs.proxima.alt.za (Keith Petersen)
  7256. Lines: 120
  7257. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  7258.  
  7259. From: w8sdz@SimTel.Coast.NET (Keith Petersen)
  7260. Message-ID: <9409182132.AA12045@SimTel.Coast.NET>
  7261. Date: Sun, 18 Sep 1994 21:32:25 GMT
  7262. Organization: SimTel, the Coast to Coast Software Repository (tm)
  7263.  
  7264. conover@max.tiac.net (Harry H Conover) writes:
  7265. >I'm current using Kermit as my primary communications package, as
  7266. >I have for the past 10 years or so.  So far, the program has survived
  7267. >an IBM XT, '286, '386' and '486, and is now going strong on the
  7268. >Internet.  Sadly, it lacks certain features such as automatic
  7269. >re-dial, the ability to automatically log-off on completion of
  7270. >batch file transfers, etc.
  7271. >
  7272. >It identifies itself as: IBM PC KERMIT-MS V2.28....
  7273. >
  7274. >Can anyone point me to an FTP site that has a more recent MS-DOS
  7275. >version available?
  7276.  
  7277. The official ftp site for Kermit is kermit.columbia.edu, however, the
  7278. latest MS-Kermit is also available - along with many support programs
  7279. and information files - from SimTel.
  7280.  
  7281. NOTE: Type B is Binary; Type A is ASCII
  7282.  
  7283. Directory SimTel/msdos/kermit/
  7284. Filename   Type Length   Date   Description
  7285. ==============================================
  7286. ddntac.hlp    A    4112  890813  Setting TAC parameters for Kermit
  7287. easyk110.zip  B   53931  890316  Kermit made easy. EasyKermit V1.10
  7288. ep437.zip     B   11529  900125  PC Code-Page-437-to-Epson char set translation
  7289. epson.zip     B    7646  900125  Epson printer driver for EGA graphics screens
  7290. ker_scp3.zip  B   19526  881114  Useful Kermit (v2.29 or above) script files
  7291. msicyr.zip    B    5079  910521  Kermit term init: send/rec Cyrillic characters
  7292. msiem2.ini    A    4202  890731  Kermit script maps PC keyboard for GNU Emacs
  7293. msiibm.zip    B   29843  890120  Kermit 2.32/A Script, tutorial, init files
  7294. msivt3.zip    B    5354  910521  MS-Kermit DEC keybd setups for IBM-compatibles
  7295. msivt321.zip  B    5688  910705  MS-Kermit keybd setup for DEC VT200-300 series
  7296. msk-rcv.bas   A    6495  910320  Easy bootstrap: Rcve-only Kermit pgm in BASIC
  7297. msker313.zip  B  336282  931004  MS-Kermit v3.13 comm pgm for IBM-compatibles
  7298. mskerdoc.zip  B  144524  890630  Kermit 2.32/A User's guide and other files
  7299. mskr-em2.zip  B   30433  910320  MS-Kermit v3.1 term emulation & graphics info
  7300. msr313.ann    A   18246  930719  Official announcement of MS-Kermit vers. 3.13
  7301. msr31321.pch  A    4218  940604  Patch file for MS-Kermit v3.13 (patches 1-21)
  7302. msulk2.zip    B   11684  910521  Driver allows use of DEC LK250 kbd w/MS-Kermit
  7303. msvgen.zip    B   60556  930719  MS-Kermit v3.13 executable for Generic MS-DOS
  7304. msvhp1.zip    B   45098  890130  Kermit 2.32/A Hewlett Packard specific
  7305. msvrb1.zip    B   48899  890130  Kermit 2.32/A Rainbow specific
  7306. msvv90.zip    B   67364  930719  MS-Kermit v3.13 executable for Victor 9000
  7307. msvz10.zip    B   69272  930719  MS-Kermit 3.13 executable for Heath/Zenith 100
  7308. pcbdker.zip   B    5218  890311  Collection of MS-Kermit scripts
  7309. pcprint.c     A    5190  890504  Print Unix host text files on PC (req. Kermit)
  7310. pcprint.nr    A    2994  890504  Unix man page for PCPRINT.C
  7311. scanch41.zip  B   14157  900106  Keyboard scan code check/display for MS-Kermit
  7312. tskerm25.zip  B   46838  940214  Keypads, bats, & logging scripts for MS-Kermit
  7313. xsend051.zip  B   11210  910320  Makes Kermit script files to send entire disk
  7314. yogiutil.zip  B   27954  910324  Chg blue color to underscore w/MS-Kermit v3.0x
  7315.  
  7316. Download msker313.zip and msr31321.pch.  That's all you need to get started.
  7317.  
  7318. For security reasons SimTel, the Coast to Coast Software Repository (tm),
  7319. is located on a host that is not accessible by anonymous ftp users, however
  7320. its files are available by anonymous ftp in directory /SimTel/msdos from
  7321. the primary mirror site OAK.Oakland.Edu (141.210.10.117) located in
  7322. Rochester, Michigan, and from the secondary mirror sites:
  7323.  
  7324. St. Louis, MO:  wuarchive.wustl.edu (128.252.135.4)
  7325. /systems/ibmpc/msdos
  7326. Corvallis, OR:  archive.orst.edu (128.193.2.13)
  7327. /pub/mirrors/simtel/msdos
  7328. Australia:  archie.au (139.130.4.6)
  7329. /micros/pc/oak
  7330. England:  src.doc.ic.ac.uk (146.169.2.10)
  7331. /pub/packages/simtel
  7332. Finland:  ftp.funet.fi (128.214.248.6)
  7333. /pub/msdos/SimTel
  7334. France:  ftp.ibp.fr (132.227.60.2)
  7335. /pub/pc/SimTel/msdos
  7336. Germany:  ftp.uni-paderborn.de (131.234.2.32)
  7337. /SimTel/msdos
  7338. Hong Kong:  ftp.cs.cuhk.hk (137.189.4.57)
  7339. /pub/simtel/msdos
  7340. Israel:  ftp.technion.ac.il (132.68.1.10)
  7341. /pub/unsupported/dos/simtel
  7342. Poland:  ftp.cyf-kr.edu.pl (149.156.1.8)
  7343. /pub/mirror/msdos
  7344. Sweden:  ftp.sunet.se (130.238.127.3)
  7345. /pub/pc/mirror/SimTel/msdos
  7346. Switzerland:  ftp.switch.ch (130.59.1.40)
  7347. /mirror/msdos
  7348. Taiwan:  NCTUCCCA.edu.tw (140.111.1.10)
  7349. /PC/simtel
  7350. Thailand:  ftp.nectec.or.th (192.150.251.33)
  7351. /pub/mirrors/SimTel/msdos
  7352.  
  7353. SimTel files may obtained by e-mail from various ftp-mail servers
  7354. or through the BITNET/EARN file servers.  For details see file
  7355. /SimTel/msdos/filedocs/mailserv.inf.  Gopher users can access the
  7356. collection through Gopher.Oakland.Edu.  World Wide Web (WWW) and
  7357. Mosaic users can connect to the URL http://www.acs.oakland.edu to
  7358. access the files on OAK.Oakland.Edu.
  7359.  
  7360. CD-ROM copies of the entire MS-DOS collection (including Windows) are
  7361. available from Coast to Coast Telecommunications, Inc., 5850 Dixie
  7362. Highway Clarkston, MI 48346, U.S.A., telephone (800) 536-3373 or (810)
  7363. 623-6700, or FAX (810) 623-1469.  A WWW Forms Interface for ordering
  7364. CD-ROMs -  http://www.coast.net/SimTel/  - is also available.  This
  7365. two CD-ROM set includes the entire collection, which is not true of
  7366. CD-ROMs offered by some other vendors.  For information send e-mail to
  7367. cdrom@Mail.Coast.NET.  To order send e-mail to order@Mail.Coast.NET.
  7368. Quarterly update subscriptions are available.  Dealer inquiries are
  7369. welcome.  Purchases of this CD-ROM set from Coast to Coast will
  7370. provide direct support to SimTel.
  7371.  
  7372. Keith
  7373. --
  7374. Keith Petersen
  7375. General Manager of SimTel, the Coast to Coast Software Repository (tm)
  7376. Internet: w8sdz@SimTel.Coast.NET    or      w8sdz@Vela.ACS.Oakland.Edu
  7377. Uucp: uunet!umich!vela!w8sdz                     BITNET: w8sdz@OAKLAND
  7378.  
  7379.  
  7380. From news@columbia.edu Wed Sep 21 08:44:00 1994
  7381. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA21131
  7382.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 16:21:20 -0400
  7383. Received: by apakabar.cc.columbia.edu id AA10434
  7384.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 16:21:18 -0400
  7385. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!ee.und.ac.za!csir.co.za!proxima.alt.za!aecibbs!erik.hatcher
  7386. From: erik.hatcher@aecibbs.proxima.alt.za (Erik Hatcher)
  7387. Newsgroups: comp.protocols.kermit.misc
  7388. Subject: C-Kermit for DOS questions
  7389. Message-Id: <25.335.uupcb@aecibbs.proxima.alt.za>
  7390. Date: 21 Sep 94 08:44:00 GMT
  7391. Distribution: world
  7392. Organization: AECI BBS  +27 11 608-1516
  7393. Reply-To: erik.hatcher@aecibbs.proxima.alt.za (Erik Hatcher)
  7394. Lines: 23
  7395. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  7396.  
  7397. From: esh6h@fulton.seas.Virginia.EDU (Erik Hatcher)
  7398. Message-ID: <CwCI2q.286@murdoch.acc.Virginia.EDU>
  7399. Organization: University of Virginia
  7400. Date: Sun, 18 Sep 1994 21:52:01 GMT
  7401.  
  7402. I've been trying to track down a version of C-Kermit for
  7403. DOS and have been unsuccessful.  In Cruz's book he has
  7404. a chart of the compatibilities of DOS kermit and C-Kermit
  7405. and their is one difference - no dynamic block sizes
  7406. on the DOS version.
  7407.  
  7408. My questions are...
  7409.  
  7410. Is their a version of Kermit for DOS that supports dynamic
  7411. blocks?  And where can that be obtained?
  7412.  
  7413. Any help is appreciated.
  7414.  
  7415. Thanks,
  7416. Erik
  7417. --
  7418. Erik Hatcher                           + "But every now and then we just have
  7419. http://fulton.seas.virginia.edu/~esh6h |  to howl with the wolves."
  7420.  
  7421. From news@columbia.edu Wed Sep 21 10:05:00 1994
  7422. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA21144
  7423.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 16:21:38 -0400
  7424. Received: by apakabar.cc.columbia.edu id AA10457
  7425.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 16:21:37 -0400
  7426. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!ee.und.ac.za!csir.co.za!proxima.alt.za!aecibbs!benjamin.ketcham
  7427. From: benjamin.ketcham@aecibbs.proxima.alt.za (Benjamin Ketcham)
  7428. Newsgroups: comp.protocols.kermit.misc
  7429. Subject: auto redial script
  7430. Message-Id: <27.335.uupcb@aecibbs.proxima.alt.za>
  7431. Date: 21 Sep 94 10:05:00 GMT
  7432. Distribution: world
  7433. Organization: AECI BBS  +27 11 608-1516
  7434. Reply-To: benjamin.ketcham@aecibbs.proxima.alt.za (Benjamin Ketcham)
  7435. Lines: 54
  7436. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  7437.  
  7438. From: bketcham@u.washington.edu (Benjamin Ketcham)
  7439. Date: 18 Sep 1994 23:03:00 GMT
  7440. Organization: University of Washington, Seattle
  7441. Message-ID: <35igv4$rf6@news.u.washington.edu>
  7442.  
  7443.  
  7444. Several people have mentioned automatic redial wrt kermit.  Here is
  7445. a little macro I kluged up to do it (to be included in .kermrc).
  7446. I present it not so much as the perfect way to do it, but rather as
  7447. *a* way.  I'd like to hear comments/criticisms on how this could be
  7448. done better or more robustly.
  7449.  
  7450. Problems I'm aware of:
  7451.  
  7452. --Only works with modems that return "BUSY" when the line is
  7453. busy.  I've used some that don't.
  7454.  
  7455. --Depends on ASCII being the character set (due to '\13').  I
  7456. think there's a better way to do this, but I couldn't
  7457. immediately find it in the kermit docs.
  7458.  
  7459. --If the line is *not* busy, must wait for the input statement
  7460. to time out.  Thus, the choice of time there is critical.
  7461. Don't want it too long, but if too short, might time out before
  7462. a slow phone connection completed (esp. long distance).  Is
  7463. there a way to wait for *any* text string, save it in a variable,
  7464. and then test it afterwards for "BUSY" or "CONNECT" -ness?
  7465.  
  7466. --ben
  7467.  
  7468. -------------
  7469.  
  7470. define demondial -
  7471. if > \v(argc) 1 assign \%p \%1, -
  7472. else ask \%p Number to dial (without atdt prefix):, -
  7473. echo \13demondial:  Trying number  (use ^C to abort)  ...\13, -
  7474. while EQUAL 1 1 { -
  7475. hangup, -
  7476. output atdt\%p\13, -
  7477. input 20 BUSY, -
  7478. xif FAILURE { -
  7479. echo \13demondial:  Looks like line's not busy.  Connecting  ...\13, -
  7480. connect, -
  7481. stop -
  7482. } -
  7483. else { -
  7484. echo \13demondial:  Line busy.  Retrying  ...\13 -
  7485. }, -
  7486. } -
  7487.  
  7488.  
  7489.  
  7490.  
  7491.  
  7492.  
  7493. From news@columbia.edu Wed Sep 21 10:07:00 1994
  7494. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA21163
  7495.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 16:21:48 -0400
  7496. Received: by apakabar.cc.columbia.edu id AA10467
  7497.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 16:21:47 -0400
  7498. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!ee.und.ac.za!csir.co.za!proxima.alt.za!aecibbs!andrew.dunstan
  7499. From: andrew.dunstan@aecibbs.proxima.alt.za (Andrew Dunstan)
  7500. Newsgroups: comp.protocols.kermit.misc
  7501. Subject: CR translation in telnet connection
  7502. Message-Id: <28.335.uupcb@aecibbs.proxima.alt.za>
  7503. Date: 21 Sep 94 10:07:00 GMT
  7504. Distribution: world
  7505. Organization: AECI BBS  +27 11 608-1516
  7506. Reply-To: andrew.dunstan@aecibbs.proxima.alt.za (Andrew Dunstan)
  7507. Lines: 17
  7508. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  7509.  
  7510. From: andrewd@seldon.apanix.apana.org.au (Andrew Dunstan)
  7511. Date: 19 Sep 1994 00:14:20 GMT
  7512. Organization: cleese.apana.org.au Public Access UNIX +61-8-3736006
  7513. Message-ID: <35il4s$4pe@cleese.apana.org.au>
  7514.  
  7515. I am connecting to a DCX Ethergate which has a modem attached, and
  7516. then dialling out on the modem. The Ethergate does no CRLF or CR-Nul
  7517. translation, so I unfortunately end up sending one of these pairs,
  7518. when all I want to send is a plain CR.
  7519.  
  7520. Is there any way to achieve this?
  7521.  
  7522. cheers
  7523.  
  7524. andrew
  7525.  
  7526.  
  7527.  
  7528. From news@columbia.edu Thu Sep 22 07:25:00 1994
  7529. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA21256
  7530.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 16:22:28 -0400
  7531. Received: by apakabar.cc.columbia.edu id AA10502
  7532.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 16:22:23 -0400
  7533. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!ee.und.ac.za!csir.co.za!proxima.alt.za!aecibbs!dwight.hugget
  7534. From: dwight.hugget@aecibbs.proxima.alt.za (Dwight Hugget)
  7535. Newsgroups: comp.protocols.kermit.misc
  7536. Subject: KERMIT & PCMCIA
  7537. Message-Id: <30.335.uupcb@aecibbs.proxima.alt.za>
  7538. Date: 22 Sep 94 07:25:00 GMT
  7539. Distribution: world
  7540. Organization: AECI BBS  +27 11 608-1516
  7541. Reply-To: dwight.hugget@aecibbs.proxima.alt.za (Dwight Hugget)
  7542. Lines: 10
  7543. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  7544.  
  7545. From: jamaican@garnet.msen.com (Dwight Hugget)
  7546. Date: 16 Sep 1994 18:12:20 GMT
  7547. Organization: Msen, Inc. -- Ann Arbor, MI (account info: +1 313 998-4562)
  7548. Message-ID: <35cn64$qp0$1@heifetz.msen.com>
  7549.  
  7550.  
  7551.  
  7552. Has anyone ever configured Intel's 14.4 fax/data PCMCIA card to work with
  7553. kermit ???
  7554. If so, how do you handle the setting of the COMn port while trying to
  7555.  
  7556.  Qmodem using Zmodem.  I was informed the problem
  7557. >lyes in SZ and systems are trying to deal with it.  But I was suggested
  7558. >trying to upload into UNIX main base and then ftr the files to armstrong.
  7559. >
  7560. >       Well if anyone else has a possible solution, please post it....
  7561.  
  7562. Have you tried  rz -a  to tell the Zmodem receive program that the file
  7563. you are about to send is text?  Zmodem defaults to binary mode.
  7564.  
  7565. Keith
  7566. --
  7567. Keith Petersen
  7568. Internet: w8sdz@SimTel.Coast.NET    or      w8sdz@Vela.ACS.Oakland.Edu
  7569. Uucp: uunet!umich!vela!w8sdz                     BITNET: w8sdz@OAKLAND
  7570.  
  7571.  
  7572. From news@columbia.edu Thu Sep 22 07:26:00 1994
  7573. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA21294
  7574.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 16:22:44 -0400
  7575. Received: by apakabar.cc.columbia.edu id AA10522
  7576.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 16:22:42 -0400
  7577. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!quagga.ru.ac.za!ee.und.ac.za!csir.co.za!proxima.alt.za!aecibbs!bill.chinn
  7578. From: bill.chinn@aecibbs.proxima.alt.za (Bill Chinn)
  7579. Newsgroups: comp.protocols.kermit.misc
  7580. Subject: Kermit for Windows/NT
  7581. Message-Id: <31.335.uupcb@aecibbs.proxima.alt.za>
  7582. Date: 22 Sep 94 07:26:00 GMT
  7583. Distribution: world
  7584. Organization: AECI BBS  +27 11 608-1516
  7585. Reply-To: bill.chinn@aecibbs.proxima.alt.za (Bill Chinn)
  7586. Lines: 9
  7587. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  7588.  
  7589. From: bill@medicus.com (Bill Chinn)
  7590. Message-ID: <1994Sep19.071445.15802@medicus.com>
  7591. Organization: Medicus Clinical Data Systems, Alameda, CA
  7592. Date: Mon, 19 Sep 1994 07:14:45 GMT
  7593.  
  7594. Hello,
  7595.  
  7596. I was wondering if anyone is working on porting Kermit to
  7597. Windows/NT?
  7598.  
  7599. From news@columbia.edu Thu Sep 22 07:29:00 1994
  7600. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA21327
  7601.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 16:23:01 -0400
  7602. Received: by apakabar.cc.columbia.edu id AA10530
  7603.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 16:22:55 -0400
  7604. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!ee.und.ac.za!csir.co.za!proxima.alt.za!aecibbs!jianqing.hu
  7605. From: jianqing.hu@aecibbs.proxima.alt.za (Jianqing Hu)
  7606. Newsgroups: comp.protocols.kermit.misc
  7607. Subject: Re: [HELP] Slow Kermit Transfer ?!
  7608. Message-Id: <32.335.uupcb@aecibbs.proxima.alt.za>
  7609. Date: 22 Sep 94 07:29:00 GMT
  7610. Distribution: world
  7611. Organization: AECI BBS  +27 11 608-1516
  7612. Reply-To: jianqing.hu@aecibbs.proxima.alt.za (Jianqing Hu)
  7613. Lines: 10
  7614. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  7615.  
  7616. From: thssjyh@iitmax.iit.edu (Jianqing Hu)
  7617. Message-ID: <1994Sep19.141901.3102@iitmax.iit.edu>
  7618. Organization: Illinois Institute of Technology, Chicago
  7619. Date: Mon, 19 Sep 94 14:19:01 GMT
  7620.  
  7621. In article <35jrgsINNdq2@newsman.csu.murdoch.edu.au> anson@csuvax1.csu.murdoch.edu.au (Binh Anson) writes:
  7622. >
  7623. >G'day,
  7624. >
  7625. >I used Kermit 3.13 for my PC, my modem has a speed of 14.4 K, but I found that
  7626.  
  7627. From news@columbia.edu Thu Sep 22 07:29:00 1994
  7628. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA21352
  7629.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 16:23:19 -0400
  7630. Received: by apakabar.cc.columbia.edu id AA10551
  7631.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 16:23:17 -0400
  7632. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!ee.und.ac.za!csir.co.za!proxima.alt.za!aecibbs!rich@dsm1.dsmnet.com
  7633. From: rich@dsm1.dsmnet.com (Rich@Dsm1.Dsmnet.Com)
  7634. Newsgroups: comp.protocols.kermit.misc
  7635. Subject: Re: Dumb question...
  7636. Message-Id: <33.335.uupcb@aecibbs.proxima.alt.za>
  7637. Date: 22 Sep 94 07:29:00 GMT
  7638. Distribution: world
  7639. Organization: AECI BBS  +27 11 608-1516
  7640. Reply-To: rich@dsm1.dsmnet.com (Rich@Dsm1.Dsmnet.Com)
  7641. Lines: 24
  7642. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  7643.  
  7644. From: rich@dsm1.dsmnet.com
  7645. Date: 19 Sep 1994 14:52:21 GMT
  7646. Organization: DES MOINES INTERNET, DES MOINES, IA
  7647. Message-ID: <35k8j5$mph@dsm6.dsmnet.com>
  7648. Reply-To: rich@dsm1.dsmnet.com
  7649.  
  7650. In article <35ghag$274@telerama.lm.com>, huzacec@telerama.lm.com writes:
  7651. >
  7652. >Can someone please tell me where I can FTP C-Kermit for DOS?
  7653. >
  7654. >Thanks.
  7655. >Mike
  7656. >
  7657. >(please e-mail me)
  7658. >huzacec@telerama.lm.com
  7659.  
  7660. Try Anonymous FTP from kermit.columbia.edu and read the file read.me
  7661. (P. 9 of "Using Ckermit" by Frank da Cruz and Christine M. Gianone)
  7662.  
  7663. Richard L. Philpott          |  E-MAIL:  rich@dsmnet.com
  7664. Des Moines Internet          |  All opinions are just that, opinions!!
  7665. 5911 Meredith Drive, Suite B |  All opinions are mine only and not
  7666. Urbandale, IA 50322          |  those of DES MOINES INTERNET
  7667.  
  7668.  
  7669. From news@columbia.edu Thu Sep 22 07:29:00 1994
  7670. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA21376
  7671.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 16:23:42 -0400
  7672. Received: by apakabar.cc.columbia.edu id AA10574
  7673.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 16:23:41 -0400
  7674. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!ee.und.ac.za!csir.co.za!proxima.alt.za!aecibbs!john.d.cederman
  7675. From: john.d.cederman@aecibbs.proxima.alt.za (John D Cederman)
  7676. Newsgroups: comp.protocols.kermit.misc
  7677. Subject: Uploading Text files
  7678. Message-Id: <34.335.uupcb@aecibbs.proxima.alt.za>
  7679. Date: 22 Sep 94 07:29:00 GMT
  7680. Distribution: world
  7681. Organization: AECI BBS  +27 11 608-1516
  7682. Reply-To: john.d.cederman@aecibbs.proxima.alt.za (John D Cederman)
  7683. Lines: 7
  7684. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  7685.  
  7686. From: cederman@cs.buffalo.edu (John D Cederman)
  7687. Message-ID: <CwDsq6.50p@acsu.buffalo.edu>
  7688. Organization: UB
  7689. Date: Mon, 19 Sep 1994 14:39:41 GMT
  7690.  
  7691. Hello,
  7692. I am using Qmodem with Zmodem protocol.  I have been able to download
  7693.  
  7694. From news@columbia.edu Thu Sep 22 07:30:00 1994
  7695. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA21392
  7696.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 16:24:00 -0400
  7697. Received: by apakabar.cc.columbia.edu id AA10588
  7698.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 16:23:58 -0400
  7699. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!ee.und.ac.za!csir.co.za!proxima.alt.za!aecibbs!keith.petersen
  7700. From: keith.petersen@aecibbs.proxima.alt.za (Keith Petersen)
  7701. Newsgroups: comp.protocols.kermit.misc
  7702. Subject: Re: [HELP] Slow Kermit Transfer ?!
  7703. Message-Id: <35.335.uupcb@aecibbs.proxima.alt.za>
  7704. Date: 22 Sep 94 07:30:00 GMT
  7705. Distribution: world
  7706. Organization: AECI BBS  +27 11 608-1516
  7707. Reply-To: keith.petersen@aecibbs.proxima.alt.za (Keith Petersen)
  7708. Lines: 21
  7709. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  7710.  
  7711. From: w8sdz@SimTel.Coast.NET (Keith Petersen)
  7712. Message-ID: <9409191517.AA21171@SimTel.Coast.NET>
  7713. Date: Mon, 19 Sep 1994 15:17:50 GMT
  7714. Organization: SimTel, the Coast to Coast Software Repository (tm)
  7715.  
  7716. thssjyh@iitmax.iit.edu (Jianqing Hu) writes:
  7717. > ... don't push kermit too hard. In some cases, it will leave errors undetect
  7718. > (At least on our unix box)
  7719.  
  7720. This should fix the problem:
  7721.  
  7722. set blo 3
  7723.  
  7724. which is short for "set block-check-type 3-char-crc-ccitt".
  7725.  
  7726. Keith
  7727. --
  7728. Keith Petersen
  7729. Internet: w8sdz@SimTel.Coast.NET    or      w8sdz@Vela.ACS.Oakland.Edu
  7730. Uucp: uunet!umich!vela!w8sdz                     BITNET: w8sdz@OAKLAND
  7731.  
  7732.  
  7733. From news@columbia.edu Thu Sep 22 07:31:00 1994
  7734. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA21420
  7735.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 16:24:09 -0400
  7736. Received: by apakabar.cc.columbia.edu id AA10598
  7737.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 16:24:07 -0400
  7738. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!ee.und.ac.za!csir.co.za!proxima.alt.za!aecibbs!binh.anson
  7739. From: binh.anson@aecibbs.proxima.alt.za (Binh Anson)
  7740. Newsgroups: comp.protocols.kermit.misc
  7741. Subject: [HELP] Slow Kermit Transfer ?!
  7742. Message-Id: <36.335.uupcb@aecibbs.proxima.alt.za>
  7743. Date: 22 Sep 94 07:31:00 GMT
  7744. Distribution: world
  7745. Organization: AECI BBS  +27 11 608-1516
  7746. Reply-To: binh.anson@aecibbs.proxima.alt.za (Binh Anson)
  7747. Lines: 8
  7748. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  7749.  
  7750. From: anson@csuvax1.csu.murdoch.edu.au (Binh Anson)
  7751. Date: 19 Sep 1994 11:09:16 GMT
  7752. Message-ID: <35jrgsINNdq2@newsman.csu.murdoch.edu.au>
  7753.  
  7754.  
  7755. G'day,
  7756.  
  7757. I used Kermit 3.13 for my PC, my modem has a speed of 14.4 K, but I found that 
  7758.  
  7759. From news@columbia.edu Thu Sep 22 07:33:00 1994
  7760. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA21443
  7761.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 16:24:41 -0400
  7762. Received: by apakabar.cc.columbia.edu id AA10646
  7763.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 16:24:39 -0400
  7764. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!ee.und.ac.za!csir.co.za!proxima.alt.za!aecibbs!jeffrey.altman
  7765. From: jeffrey.altman@aecibbs.proxima.alt.za (Jeffrey Altman)
  7766. Newsgroups: comp.protocols.kermit.misc
  7767. Subject: Re: Kermit for Windows/NT
  7768. Message-Id: <38.335.uupcb@aecibbs.proxima.alt.za>
  7769. Date: 22 Sep 94 07:33:00 GMT
  7770. Distribution: world
  7771. Organization: AECI BBS  +27 11 608-1516
  7772. Reply-To: jeffrey.altman@aecibbs.proxima.alt.za (Jeffrey Altman)
  7773. Lines: 11
  7774. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  7775.  
  7776. From: jaltman@watsun.cc.columbia.edu (Jeffrey Altman)
  7777. Date: 19 Sep 1994 12:28:18 GMT
  7778. Organization: Columbia University
  7779. Message-ID: <35k052$3gr@apakabar.cc.columbia.edu>
  7780.  
  7781. In article <1994Sep19.071445.15802@medicus.com>,
  7782. Bill Chinn <bill@medicus.com> wrote:
  7783. >Hello,
  7784. >
  7785. >I was wondering if anyone is working on porting Kermit to
  7786. >Windows/NT?
  7787.  
  7788.  alpha.16) to
  7789. the computer at school (Ckermit 5A(188)) with the FILE COLLISION set
  7790. to UPDATE. Thus, I would expect that only those files on my home
  7791. commputer that are newer than the files on the school computer will be
  7792. transfered. And that is what happens...mostly. There are a few files
  7793. that constantly get transfered. Although I have not touched the
  7794. files on either system for months, everytime I run the transfer script
  7795. these few files get transfered. I have checked the dates on both
  7796. machines and they are identical, at least to the minute. Perhaps the
  7797. seconds are different?
  7798.  
  7799. From news@columbia.edu Thu Sep 22 07:33:00 1994
  7800. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA21543
  7801.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 16:25:12 -0400
  7802. Received: by apakabar.cc.columbia.edu id AA10692
  7803.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 16:25:10 -0400
  7804. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!ee.und.ac.za!csir.co.za!proxima.alt.za!aecibbs!paul.hounsell
  7805. From: paul.hounsell@aecibbs.proxima.alt.za (Paul Hounsell)
  7806. Newsgroups: comp.protocols.kermit.misc
  7807. Subject: Is anybody working on kermit for windows?
  7808. Message-Id: <40.335.uupcb@aecibbs.proxima.alt.za>
  7809. Date: 22 Sep 94 07:33:00 GMT
  7810. Distribution: world
  7811. Organization: AECI BBS  +27 11 608-1516
  7812. Reply-To: paul.hounsell@aecibbs.proxima.alt.za (Paul Hounsell)
  7813. Lines: 9
  7814. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  7815.  
  7816. From: hounsell@cc.joensuu.fi (Paul Hounsell)
  7817. Message-ID: <1994Sep19.122308.19077@cs.joensuu.fi>
  7818. Organization: Joensuu University Language Center
  7819. Date: Mon, 19 Sep 1994 12:23:08 GMT
  7820.  
  7821. Hello developers
  7822.  
  7823. I would like to know if anybody is working on kermit to run under windows
  7824. winsocket. I really like kermit for telnet and terminal emulation so I would li
  7825.  
  7826. I would li
  7827.  
  7828. From news@columbia.edu Thu Sep 22 07:42:00 1994
  7829. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA21569
  7830.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 16:25:30 -0400
  7831. Received: by apakabar.cc.columbia.edu id AA10725
  7832.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 16:25:27 -0400
  7833. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!ee.und.ac.za!csir.co.za!proxima.alt.za!aecibbs!kerry.schwab
  7834. From: kerry.schwab@aecibbs.proxima.alt.za (Kerry Schwab)
  7835. Newsgroups: comp.protocols.kermit.misc
  7836. Subject: Re: Kermit and Zmodem?
  7837. Message-Id: <41.335.uupcb@aecibbs.proxima.alt.za>
  7838. Date: 22 Sep 94 07:42:00 GMT
  7839. Distribution: world
  7840. Organization: AECI BBS  +27 11 608-1516
  7841. Reply-To: kerry.schwab@aecibbs.proxima.alt.za (Kerry Schwab)
  7842. Lines: 18
  7843. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  7844.  
  7845. From: kschwab@nyx.cs.du.edu (Kerry Schwab)
  7846. Date: 18 Sep 1994 18:32:58 -0600
  7847. Organization: /usr/lib/news/organi[sz]ation
  7848. Message-ID: <35im7q$ank@nyx.cs.du.edu>
  7849.  
  7850. In article <35i5nc$eq9@larry.rice.edu>,
  7851. Steven Patrick Iltis <iltiss@rice.edu> wrote:
  7852. >
  7853. >Is it possible to use zmodem (or rz and sz) with kermit? I use Kermit
  7854. >on Linux to log on to systems, and would like to use zmodem with
  7855. >Kermit.
  7856. >
  7857.  
  7858. Yes, look at the "REDIRECT" command.  Suppose you were trying to
  7859. recieve a file, you'd do "sz <file>", enter the kermit escape char,
  7860. then type "REDIRECT rz".
  7861.  
  7862. Though it does seem almost seem like kermit treason ;)
  7863.  
  7864. From news@columbia.edu Thu Sep 22 07:43:00 1994
  7865. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA21580
  7866.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 16:25:41 -0400
  7867. Received: by apakabar.cc.columbia.edu id AA10746
  7868.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 16:25:38 -0400
  7869. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!ee.und.ac.za!csir.co.za!proxima.alt.za!aecibbs!ramin.farzaneh
  7870. From: ramin.farzaneh@aecibbs.proxima.alt.za (Ramin Farzaneh)
  7871. Newsgroups: comp.protocols.kermit.misc
  7872. Subject: Help Request: Download Speed
  7873. Message-Id: <43.335.uupcb@aecibbs.proxima.alt.za>
  7874. Date: 22 Sep 94 07:43:00 GMT
  7875. Distribution: world
  7876. Organization: AECI BBS  +27 11 608-1516
  7877. Reply-To: ramin.farzaneh@aecibbs.proxima.alt.za (Ramin Farzaneh)
  7878. Lines: 8
  7879. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  7880.  
  7881. From: rf13@crux3.cit.cornell.edu (Ramin Farzaneh)
  7882. Date: 19 Sep 1994 03:39:19 GMT
  7883. Organization: Cornell University
  7884. Message-ID: <35j157$23n@tuba.cit.cornell.edu>
  7885.  
  7886. I have been trying to improve the file transfer speed I get while
  7887. downloading from a workstation to my PC using C Kermit and MS Kermit.
  7888. The highest rate that I've gotten for a .zip file has been ~1320 cps
  7889.  
  7890. s survived
  7891. >an IBM XT, '286, '386' and '486, and is now going strong on the
  7892.  
  7893. From news@columbia.edu Thu Sep 22 07:44:00 1994
  7894. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA21603
  7895.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 16:25:52 -0400
  7896. Received: by apakabar.cc.columbia.edu id AA10782
  7897.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 16:25:51 -0400
  7898. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!ee.und.ac.za!csir.co.za!proxima.alt.za!aecibbs!doug.fraser
  7899. From: doug.fraser@aecibbs.proxima.alt.za (Doug Fraser)
  7900. Newsgroups: comp.protocols.kermit.misc
  7901. Subject: Re: Kermit Access/Availability
  7902. Message-Id: <44.335.uupcb@aecibbs.proxima.alt.za>
  7903. Date: 22 Sep 94 07:44:00 GMT
  7904. Distribution: world
  7905. Organization: AECI BBS  +27 11 608-1516
  7906. Reply-To: doug.fraser@aecibbs.proxima.alt.za (Doug Fraser)
  7907. Lines: 10
  7908. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  7909.  
  7910. From: dfraser@muss.cis.McMaster.CA (Doug Fraser)
  7911. Date: 19 Sep 1994 18:54:38 -0400
  7912. Organization: McMaster University, Hamilton, Ontario, Canada.
  7913. Message-ID: <35l4re$17b@muss.cis.McMaster.CA>
  7914.  
  7915. In article <35i0o4$6s@cville-srv.wam.umd.edu>,
  7916. MDESOUZA <mdesouza@wam.umd.edu> wrote:
  7917. >Hello All,
  7918. >    I want to use download files from my host (umd) to my home pc.
  7919. >At the momnet I use procomm plus as my comm software to dial out of my
  7920.  
  7921. From news@columbia.edu Thu Sep 22 07:45:00 1994
  7922. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA21638
  7923.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 16:26:09 -0400
  7924. Received: by apakabar.cc.columbia.edu id AA10802
  7925.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 16:26:08 -0400
  7926. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!ee.und.ac.za!csir.co.za!proxima.alt.za!aecibbs!jerry.alexandratos
  7927. From: jerry.alexandratos@aecibbs.proxima.alt.za (Jerry Alexandratos)
  7928. Newsgroups: comp.protocols.kermit.misc
  7929. Subject: Re: Kermit And FTP
  7930. Message-Id: <45.335.uupcb@aecibbs.proxima.alt.za>
  7931. Date: 22 Sep 94 07:45:00 GMT
  7932. Distribution: world
  7933. Organization: AECI BBS  +27 11 608-1516
  7934. Reply-To: jerry.alexandratos@aecibbs.proxima.alt.za (Jerry Alexandratos)
  7935. Lines: 12
  7936. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  7937.  
  7938. From: darkstar@strauss.udel.edu (Jerry Alexandratos)
  7939. Date: 19 Sep 1994 14:21:54 -0400
  7940. Organization: Broken Toys Unlimited
  7941. Message-ID: <35kks2$r5u@strauss.udel.edu>
  7942.  
  7943. In article <35d5gi$6lm@chopin.udel.edu>,
  7944. Sigurd Andersen <sigurd@chopin.udel.edu> wrote:
  7945. :In article <35abck$6gc@louie.udel.edu>,
  7946. :Jerry Alexandratos <alexandr@stimpy.eecis.udel.edu> wrote:
  7947. :: Has anyone out there been able to successfully multiplex packets so
  7948. :: that you can use kermit and another TCPIP application?  ...
  7949. ::
  7950.  
  7951. From news@columbia.edu Thu Sep 22 07:48:00 1994
  7952. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA21675
  7953.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 16:26:48 -0400
  7954. Received: by apakabar.cc.columbia.edu id AA10877
  7955.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 16:26:47 -0400
  7956. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!ee.und.ac.za!csir.co.za!proxima.alt.za!aecibbs!todd.spindler
  7957. From: todd.spindler@aecibbs.proxima.alt.za (Todd Spindler)
  7958. Newsgroups: comp.protocols.kermit.misc
  7959. Subject: Re: [HELP] Slow Kermit Transfer ?!
  7960. Message-Id: <47.335.uupcb@aecibbs.proxima.alt.za>
  7961. Date: 22 Sep 94 07:48:00 GMT
  7962. Distribution: world
  7963. Organization: AECI BBS  +27 11 608-1516
  7964. Reply-To: todd.spindler@aecibbs.proxima.alt.za (Todd Spindler)
  7965. Lines: 12
  7966. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  7967.  
  7968. From: spindler@heron.rsmas.miami.edu (todd spindler)
  7969. Date: 19 Sep 1994 12:49:18 -0400
  7970. Organization: U of Miami/RSMAS
  7971. Message-ID: <35kfee$4f0@heron.rsmas.miami.edu>
  7972. Reply-To: spindler@heron.rsmas.miami.edu (todd spindler)
  7973.  
  7974.  
  7975. In article <35jrgsINNdq2@newsman.csu.murdoch.edu.au>, anson@csuvax1.csu.murdoch.edu.au (Binh Anson) writes:
  7976. >
  7977. >G'day,
  7978. >
  7979. >I used Kermit 3.13 for my PC, my modem has a speed of 14.4 K, but I found
  7980.  
  7981.  files to armstrong.
  7982.  
  7983. Well if anyone else has a possible solution, please post it....
  7984.  
  7985.  
  7986.  
  7987. (cederman)
  7988.  
  7989.  
  7990.  
  7991.  
  7992.  
  7993.  
  7994. From news@columbia.edu Thu Sep 22 21:06:00 1994
  7995. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA21683
  7996.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 16:26:55 -0400
  7997. Received: by apakabar.cc.columbia.edu id AA10893
  7998.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 16:26:54 -0400
  7999. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!ee.und.ac.za!csir.co.za!proxima.alt.za!aecibbs!roland.kwee
  8000. From: roland.kwee@aecibbs.proxima.alt.za (Roland Kwee)
  8001. Newsgroups: comp.protocols.kermit.misc
  8002. Subject: Re: Kermit and Zmodem?
  8003. Message-Id: <48.335.uupcb@aecibbs.proxima.alt.za>
  8004. Date: 22 Sep 94 21:06:00 GMT
  8005. Distribution: world
  8006. Organization: AECI BBS  +27 11 608-1516
  8007. Reply-To: roland.kwee@aecibbs.proxima.alt.za (Roland Kwee)
  8008. Lines: 9
  8009. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  8010.  
  8011. From: rkwee@ee.pdx.edu (Roland Kwee)
  8012. Date: 19 Sep 1994 20:26:02 -0700
  8013. Message-ID: <35lkoa$dde@cruella.ee.pdx.edu>
  8014.  
  8015. iltiss@rice.edu (Steven Patrick Iltis) writes:
  8016.  
  8017. >Is it possible to use zmodem (or rz and sz) with kermit?
  8018. > with Kermit ... , I can only get about 1200 cps on a
  8019. >14.4 modem.
  8020.  
  8021. From news@columbia.edu Fri Sep 23 00:30:00 1994
  8022. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA21706
  8023.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 16:27:26 -0400
  8024. Received: by apakabar.cc.columbia.edu id AA10957
  8025.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 16:27:25 -0400
  8026. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!ee.und.ac.za!csir.co.za!proxima.alt.za!aecibbs!john.jamulla
  8027. From: john.jamulla@aecibbs.proxima.alt.za (John Jamulla)
  8028. Newsgroups: comp.protocols.kermit.misc
  8029. Subject: Exiting kermit without modem hangup
  8030. Message-Id: <49.335.uupcb@aecibbs.proxima.alt.za>
  8031. Date: 23 Sep 94 00:30:00 GMT
  8032. Distribution: world
  8033. Organization: AECI BBS  +27 11 608-1516
  8034. Reply-To: john.jamulla@aecibbs.proxima.alt.za (John Jamulla)
  8035. Lines: 22
  8036. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  8037.  
  8038. From: jamulla@iao.ford.com (John Jamulla)
  8039. Date: 19 Sep 1994 19:21:38 GMT
  8040. Organization: Ford Motor Company -- standard disclaimers apply
  8041. Message-ID: <35koc2INNvl@ope001.iao.ford.com>
  8042. Reply-To: jamulla@cadcam.pms.ford.com
  8043.  
  8044.  
  8045. Is it possible to exit kermit without dropping the phone line?
  8046.  
  8047. I'd like to use linux's "term" program and I already have kermit
  8048. all set up for my needs. I need kermit to stop buffering and
  8049. looking at the link without dropping the phone line
  8050.  
  8051. Please reply to below address.
  8052.  
  8053. Thanks in advance,
  8054. John J.
  8055. _________________________________________________________________________
  8056. jamulla@cadcam.pms.ford.com               John Jamulla - Dearborn, MI USA
  8057. PROFS:JJAMULLA JAMULLA -ON D1D1           Ford - Car Product Development
  8058. Bldg3 2nd Floor #2638 (313) 337-9951      CAD/CAM, Dearborn, MI 48121
  8059.  
  8060.  
  8061. From news@columbia.edu Fri Sep 23 08:21:00 1994
  8062. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA21739
  8063.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 16:27:42 -0400
  8064. Received: by apakabar.cc.columbia.edu id AA10982
  8065.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 16:27:40 -0400
  8066. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!ee.und.ac.za!csir.co.za!proxima.alt.za!aecibbs!steven.patrick.iltis
  8067. From: steven.patrick.iltis@aecibbs.proxima.alt.za (Steven Patrick Iltis)
  8068. Newsgroups: comp.protocols.kermit.misc
  8069. Subject: Re: Kermit and Zmodem?
  8070. Message-Id: <51.335.uupcb@aecibbs.proxima.alt.za>
  8071. Date: 23 Sep 94 08:21:00 GMT
  8072. Distribution: world
  8073. Organization: AECI BBS  +27 11 608-1516
  8074. Reply-To: steven.patrick.iltis@aecibbs.proxima.alt.za (Steven Patrick Iltis)
  8075. Lines: 14
  8076. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  8077.  
  8078. From: iltiss@rice.edu (Steven Patrick Iltis)
  8079. Date: 20 Sep 1994 00:09:51 GMT
  8080. Organization: Rice University, Houston, Texas
  8081. Message-ID: <35l98f$emq@larry.rice.edu>
  8082.  
  8083. Thanks to the many solutions posted here and e-mailed to me. I've got
  8084. to try them out now!
  8085.  
  8086. --
  8087. Steve Iltis
  8088. Computer Science Teacher
  8089. Westbury H.S., Houston
  8090. iltis@tenet.edu
  8091.  
  8092.  
  8093. From news@columbia.edu Fri Sep 23 08:22:00 1994
  8094. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA21833
  8095.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 16:28:01 -0400
  8096. Received: by apakabar.cc.columbia.edu id AA10998
  8097.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 16:27:59 -0400
  8098. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!quagga.ru.ac.za!ee.und.ac.za!csir.co.za!proxima.alt.za!aecibbs!doug.fraser
  8099. From: doug.fraser@aecibbs.proxima.alt.za (Doug Fraser)
  8100. Newsgroups: comp.protocols.kermit.misc
  8101. Subject: Re: Kermit and Zmodem?
  8102. Message-Id: <53.335.uupcb@aecibbs.proxima.alt.za>
  8103. Date: 23 Sep 94 08:22:00 GMT
  8104. Distribution: world
  8105. Organization: AECI BBS  +27 11 608-1516
  8106. Reply-To: doug.fraser@aecibbs.proxima.alt.za (Doug Fraser)
  8107. Lines: 15
  8108. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  8109.  
  8110. From: dfraser@muss.cis.McMaster.CA (Doug Fraser)
  8111. Date: 19 Sep 1994 19:06:18 -0400
  8112. Organization: McMaster University, Hamilton, Ontario, Canada.
  8113. Message-ID: <35l5ha$2dk@muss.cis.McMaster.CA>
  8114.  
  8115. In article <35i5nc$eq9@larry.rice.edu>,
  8116. Steven Patrick Iltis <iltiss@rice.edu> wrote:
  8117. >
  8118. >Is it possible to use zmodem (or rz and sz) with kermit? I use Kermit
  8119. >on Linux to log on to systems, and would like to use zmodem with
  8120. >Kermit.
  8121. >
  8122. >If I can't get these to work together, how can I get the fastest
  8123. >transfers with Kermit? Currently, I can only get about 1200 cps on a
  8124. >14.4 modem.
  8125.  
  8126. From news@columbia.edu Fri Sep 23 20:35:00 1994
  8127. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA21849
  8128.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 16:28:09 -0400
  8129. Received: by apakabar.cc.columbia.edu id AA11010
  8130.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 16:28:07 -0400
  8131. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!quagga.ru.ac.za!ee.und.ac.za!csir.co.za!proxima.alt.za!aecibbs!earl.h..kinmonth
  8132. From: earl.h..kinmonth@aecibbs.proxima.alt.za (Earl H. Kinmonth)
  8133. Newsgroups: comp.protocols.kermit.misc
  8134. Subject: Kermit for DOS/V
  8135. Message-Id: <54.335.uupcb@aecibbs.proxima.alt.za>
  8136. Date: 23 Sep 94 20:35:00 GMT
  8137. Distribution: world
  8138. Organization: AECI BBS  +27 11 608-1516
  8139. Reply-To: earl.h..kinmonth@aecibbs.proxima.alt.za (Earl H. Kinmonth)
  8140. Lines: 17
  8141. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  8142.  
  8143. From: jp1ek@sunc.sheffield.ac.uk (Earl H. Kinmonth)
  8144. Date: 20 Sep 1994 06:41:22 GMT
  8145. Organization: Centre for Japanese Studies, Univ. of Sheffield
  8146. Message-ID: <35m06i$9ch@hippo.shef.ac.uk>
  8147. Reply-To: jp1ek@sunc.shef.ac.uk
  8148.  
  8149. Does anyone know the current state of kermit for DOS/V (the
  8150. IBM/Microsoft dual mode version for Japanese/English)?  I have a 3.13
  8151. beta from a site in Japan, but it has one bug that renders it almost
  8152. unusable.  The code conversion does not work properly for Old-Jis
  8153. coding as used by Japan's largest commercial database vendor, Nikkei
  8154. Telecom.
  8155.  
  8156. --
  8157. Earl H. Kinmonth, Centre for Japanese Studies, University of Sheffield,
  8158. Sheffield, England S10 2TN jp1ek@sunc.sheffield.ac.uk
  8159.  
  8160.  
  8161. From news@columbia.edu Mon Sep 26 19:05:27 1994
  8162. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA22231
  8163.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 16:33:09 -0400
  8164. Received: by apakabar.cc.columbia.edu id AA11451
  8165.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 16:33:08 -0400
  8166. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!torn!news.ccs.queensu.ca!news
  8167. From: mike@ccs-sparc2post.QueensU.CA (Mike Smith)
  8168. Newsgroups: comp.protocols.kermit.misc
  8169. Subject: Quoting 255 on Telnet Connections
  8170. Date: 26 Sep 1994 19:05:27 GMT
  8171. Organization: Queen's University, Kingston
  8172. Lines: 26
  8173. Sender: mike%ccs-sparc2@apakabar.cc.columbia.edu (Mike Smith)
  8174. Distribution: world
  8175. Message-Id: <36761n$3ia@knot.queensu.ca>
  8176. Nntp-Posting-Host: ccs-sparc2.ccs
  8177. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  8178.  
  8179. The ckcker.upd file for 5A(190) Beta Sep 5/94 contains lots of very useful
  8180. info on control character prefixing.  I have one question.  The document
  8181. is very explicit about the need to quote 255 if a telnet server is involved
  8182. in the communications path.  In my case, I have a CISCO telnet server
  8183. in the path, I told C-Kermit 5A(189) to unquote 255 and it doesn't seem
  8184. to matter.  The other end is MS-Kermit 3.13 which does not let me explicitly
  8185. prefix or unprefix 255.  So, the questions are:
  8186.  
  8187.    1. Is MS-Kermit 3.13 quoting 255 and that's why I don't see a problem?
  8188.    2. Is it just that my tests don't illustrate the problem?  (I have a test
  8189.       file that includes singles and doubles of all 256 character codes as
  8190.       suggested in the .upd file.)  I've done binary uploads and downloads
  8191.       successfully.
  8192.    3. What does IAC stand for anyway?
  8193.  
  8194. I could just quote 255 but I'd first like to understand why.
  8195.  
  8196. P.S. To Joe D.  I found your comment about shiny toys perfectly acceptable and
  8197. the suggestion that you should watch your tone ridiculous.  In my opinion
  8198. you and Frank should be nominated for sainthood.
  8199.  
  8200. -- 
  8201.  
  8202.  Mike Smith                                  mike@ccs.queensu.ca
  8203.  Queen's University                          Michael.D.Smith@QueensU.CA
  8204.  Computing and Communications Services       (613) 545-2024
  8205.  
  8206. From news@columbia.edu Mon Sep 26 20:43:16 1994
  8207. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA23020
  8208.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 16:43:22 -0400
  8209. Received: by apakabar.cc.columbia.edu id AA12089
  8210.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 16:43:19 -0400
  8211. Path: news.columbia.edu!usenet
  8212. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  8213. Newsgroups: comp.protocols.kermit.misc
  8214. Subject: Re: C-Kermit for DOS questions
  8215. Date: 26 Sep 1994 20:43:16 GMT
  8216. Organization: Columbia University
  8217. Lines: 19
  8218. Distribution: world
  8219. Message-Id: <367bp4$bpn@apakabar.cc.columbia.edu>
  8220. References: <25.335.uupcb@aecibbs.proxima.alt.za>
  8221. Nntp-Posting-Host: fdc.cc.columbia.edu
  8222. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  8223.  
  8224. In article <25.335.uupcb@aecibbs.proxima.alt.za>  
  8225. erik.hatcher@aecibbs.proxima.alt.za (Erik Hatcher)  writes:
  8226. > I've been trying to track down a version of C-Kermit for
  8227. > DOS and have been unsuccessful.  In Cruz's book he has
  8228. > a chart of the compatibilities of DOS kermit and C-Kermit
  8229. > and their is one difference - no dynamic block sizes
  8230. > on the DOS version.
  8231. Au contraire - DOS Kermit does have "dynamic block sizes",
  8232. a.k.a. rubber packets.  This is in MS-DOS Kermit 3.13 (the
  8233. current version).
  8234.  
  8235. The idea is: if the line quality deteriorates and packet errors
  8236. (corruption or timeouts) occur, the file sender automatically
  8237. reduces the packet size.  As (when, if) the line quality improves
  8238. again, the packet length is gradually increased back to its
  8239. negotiated maximum size.
  8240.  
  8241. - Frank
  8242.  
  8243. From news@columbia.edu Mon Sep 26 20:45:12 1994
  8244. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA23320
  8245.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 16:45:15 -0400
  8246. Received: by apakabar.cc.columbia.edu id AA12345
  8247.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 16:45:14 -0400
  8248. Path: news.columbia.edu!usenet
  8249. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  8250. Newsgroups: comp.protocols.kermit.misc
  8251. Subject: Re: CR translation in telnet connection
  8252. Date: 26 Sep 1994 20:45:12 GMT
  8253. Organization: Columbia University
  8254. Lines: 16
  8255. Distribution: world
  8256. Message-Id: <367bso$c1m@apakabar.cc.columbia.edu>
  8257. References: <28.335.uupcb@aecibbs.proxima.alt.za>
  8258. Nntp-Posting-Host: fdc.cc.columbia.edu
  8259. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  8260.  
  8261. In article <28.335.uupcb@aecibbs.proxima.alt.za>  
  8262. andrew.dunstan@aecibbs.proxima.alt.za (Andrew Dunstan)  writes:
  8263. > I am connecting to a DCX Ethergate which has a modem attached, and
  8264. > then dialling out on the modem. The Ethergate does no CRLF or CR-Nul
  8265. > translation, so I unfortunately end up sending one of these pairs,
  8266. > when all I want to send is a plain CR.
  8267. The makers of the Ethergate should read RFC854.
  8268.  
  8269. However, this is becoming such a pervasive problem that the forthcoming
  8270. releases of MS-DOS Kermit and C-Kermit will add an option,
  8271. SET TELNET NEWLINE-MODE RAW, to allow carriage returns to be sent
  8272. bare, with no LF or NUL stuffed after them as required by the TELNET
  8273. NVT specification (RFC854).
  8274.  
  8275. - Frank
  8276.  
  8277. From news@columbia.edu Mon Sep 26 20:50:56 1994
  8278. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA23744
  8279.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 16:50:59 -0400
  8280. Received: by apakabar.cc.columbia.edu id AA12726
  8281.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 16:50:58 -0400
  8282. Path: news.columbia.edu!usenet
  8283. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  8284. Newsgroups: comp.protocols.kermit.misc
  8285. Subject: Re: FTP for Current MS-DOS Kermit?
  8286. Date: 26 Sep 1994 20:50:56 GMT
  8287. Organization: Columbia University
  8288. Lines: 29
  8289. Distribution: world
  8290. Message-Id: <367c7g$cdg@apakabar.cc.columbia.edu>
  8291. References: <24.335.uupcb@aecibbs.proxima.alt.za>
  8292. Nntp-Posting-Host: fdc.cc.columbia.edu
  8293. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  8294.  
  8295. In article <24.335.uupcb@aecibbs.proxima.alt.za>  
  8296. keith.petersen@aecibbs.proxima.alt.za (Keith Petersen)  writes:
  8297. > The official ftp site for Kermit is kermit.columbia.edu, however, the
  8298. > latest MS-Kermit is also available - along with many support programs
  8299. > and information files - from SimTel.
  8300.  SimTel files may obtained by e-mail from various ftp-mail servers
  8301. > or through the BITNET/EARN file servers.  For details see file
  8302. > /SimTel/msdos/filedocs/mailserv.inf.  Gopher users can access the
  8303. > collection through Gopher.Oakland.Edu.  World Wide Web (WWW) and
  8304. > Mosaic users can connect to the URL http://www.acs.oakland.edu to
  8305. > access the files on OAK.Oakland.Edu.
  8306. Thanks Keith, but again, readers are cautioned that the ONLY site on
  8307. the Internet that they should get Kermit software from is
  8308. kermit.columbia.edu.  We who write and support Kermit software have
  8309. no way of knowing what is on the many mirror sites -- the files might
  8310. (or might not) be out of date, altered, incomplete, etc.
  8311.  
  8312. > CD-ROM copies of the entire MS-DOS collection (including Windows) are
  8313. > available from Coast to Coast Telecommunications, Inc...
  8314. >
  8315. Kermit software should not be on these CD-ROMs.  Once again, it creates
  8316. two big problems for the Kermit effort: it starves us of the income we
  8317. need to continue our work, and it creates a big support problem for us
  8318. since (a) the software on these CD-ROMs might be out of date, changed,
  8319. and/or incomplete, and (b) it is distributed without the manual.
  8320.  
  8321. - Frank
  8322.  
  8323. From news@columbia.edu Mon Sep 26 20:54:05 1994
  8324. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA23971
  8325.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 16:54:08 -0400
  8326. Received: by apakabar.cc.columbia.edu id AA12895
  8327.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 16:54:07 -0400
  8328. Path: news.columbia.edu!usenet
  8329. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  8330. Newsgroups: comp.protocols.kermit.misc
  8331. Subject: SOUTH AFRICA
  8332. Date: 26 Sep 1994 20:54:05 GMT
  8333. Organization: Columbia University
  8334. Lines: 10
  8335. Distribution: World
  8336. Message-Id: <367cdd$cis@apakabar.cc.columbia.edu>
  8337. Nntp-Posting-Host: fdc.cc.columbia.edu
  8338. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  8339.  
  8340. Dear readers...
  8341.  
  8342. Some site in South Africa (proxima.alt.za?) is reposting all of the messages
  8343. that were already posted to comp.protocols.kermit.misc, and truncating most
  8344. of them in the bargain, and rewriting the address of the posters.  Very
  8345. confusing and annoying.
  8346.  
  8347. Dear news person at proxima.alt.za -- please make it stop.  Thanks.
  8348.  
  8349. - Frank
  8350.  
  8351. From news@columbia.edu Mon Sep 26 21:06:01 1994
  8352. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA24983
  8353.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 17:06:04 -0400
  8354. Received: by apakabar.cc.columbia.edu id AA13750
  8355.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 17:06:02 -0400
  8356. Path: news.columbia.edu!usenet
  8357. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  8358. Newsgroups: comp.protocols.kermit.misc
  8359. Subject: Re: Quoting 255 on Telnet Connections
  8360. Date: 26 Sep 1994 21:06:01 GMT
  8361. Organization: Columbia University
  8362. Lines: 34
  8363. Distribution: world
  8364. Message-Id: <367d3p$ddh@apakabar.cc.columbia.edu>
  8365. References: <36761n$3ia@knot.queensu.ca>
  8366. Nntp-Posting-Host: fdc.cc.columbia.edu
  8367. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  8368.  
  8369. In article <36761n$3ia@knot.queensu.ca> mike@ccs-sparc2post.QueensU.CA (Mike  
  8370. Smith) writes:
  8371. >  1. Is MS-Kermit 3.13 quoting 255 and that's why I don't see a problem?
  8372. >
  8373. Both C-Kermit and MS-DOS Kermit will prefix 255 automatically when you have
  8374. made the connection with a SET PORT TCP (MS-DOS Kermit) or TELNET (or,
  8375. equivalently, SET NETWORK TCP/IP, SET HOST ...) command, i.e. when they
  8376. know for sure it's a TELNET connection.  Otherwise they don't, in which case
  8377. you might have to tell them to do it.
  8378.  
  8379. > 2. Is it just that my tests don't illustrate the problem?  (I have a test
  8380. >    file that includes singles and doubles of all 256 character codes as
  8381. >    suggested in the .upd file.)  I've done binary uploads and downloads
  8382. >    successfully.
  8383. >
  8384. It depends on the direction in which the data is going and on the terminal
  8385. server.  Some of them are oversensitive.  If a literal 255 comes in on the
  8386. serial end, it should be treated as data, but cases have been reported where
  8387. it is not.  More to the point, the Kermit program on the receiving end of
  8388. the TELNET connection has NO WAY of knowing this, and so when it is sending
  8389. files, it will cheerfully let you unprefix 255 -- don't do it!
  8390.  
  8391. >    3. What does IAC stand for anyway?
  8392. I Am a Command?  No, not really.  It's "Interpret As Command".  On a TELNET
  8393. connection, IAC (= 255) is a kind of in-band escape character, changing
  8394. the protocol from data mode to command mode.  To send an IAC as a literal
  8395. data character, one must send two of them.  See RFC854.
  8396.  
  8397. > I could just quote 255 but I'd first like to understand why.
  8398. Better safe than sorry.  It's only one character out of 256.
  8399.  
  8400. - Frank
  8401.  
  8402. From news@columbia.edu Mon Sep 26 21:14:44 1994
  8403. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA25660
  8404.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 17:14:47 -0400
  8405. Received: by apakabar.cc.columbia.edu id AA14417
  8406.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 17:14:45 -0400
  8407. Path: news.columbia.edu!usenet
  8408. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  8409. Newsgroups: comp.protocols.kermit.misc
  8410. Subject: Re: auto redial script
  8411. Date: 26 Sep 1994 21:14:44 GMT
  8412. Organization: Columbia University
  8413. Lines: 31
  8414. Distribution: world
  8415. Message-Id: <367dk4$e2f@apakabar.cc.columbia.edu>
  8416. References: <27.335.uupcb@aecibbs.proxima.alt.za>
  8417. Nntp-Posting-Host: fdc.cc.columbia.edu
  8418. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  8419.  
  8420. In article <27.335.uupcb@aecibbs.proxima.alt.za>  
  8421. benjamin.ketcham@aecibbs.proxima.alt.za (Benjamin Ketcham)  writes:
  8422. > Several people have mentioned automatic redial wrt kermit.  Here is
  8423. > a little macro I kluged up to do it (to be included in .kermrc).
  8424. >
  8425. We recommend you not alter your .kermrc (CKERMIT.INI), but rather,
  8426. add your customizations, overrides, and redefinitions to your own
  8427. personal customization file, .mykermrc (CKERMOD.INI).  Ditto for
  8428. MS-DOS Kermit: make alterations to MSCUSTOM.INI, not MSKERMIT.INI.
  8429.  
  8430. > --Depends on ASCII being the character set (due to '\13').  I
  8431. > think there's a better way to do this, but I couldn't
  8432. > immediately find it in the kermit docs.
  8433. I've never heard of a modem that did not use ASCII for its command
  8434. language.  However, some modems might be set to use line terminators
  8435. other than carriage return (by changing S3).  Unfortunately, there is
  8436. no way a program can find this out, except perhaps by sending
  8437. ATS3? followed by every conceivable character.
  8438.  
  8439. > --If the line is *not* busy, must wait for the input statement
  8440. > to time out.  Thus, the choice of time there is critical.
  8441. > Don't want it too long, but if too short, might time out before
  8442. > a slow phone connection completed (esp. long distance).  Is
  8443. > there a way to wait for *any* text string, save it in a variable,
  8444. > and then test it afterwards for "BUSY" or "CONNECT" -ness?
  8445. Yes - Read the ckcker.bwr file about this; there are some paragraphs
  8446. on this subject in the script programming section.
  8447.  
  8448. - Frank
  8449.  
  8450. From news@columbia.edu Mon Sep 26 21:24:57 1994
  8451. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA27050
  8452.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 17:32:08 -0400
  8453. Received: by apakabar.cc.columbia.edu id AA15908
  8454.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 17:32:06 -0400
  8455. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!ulowell!aecibbs.proxima.alt.za!not-for-mail
  8456. From: erik.hatcher@aecibbs.proxima.alt.za (Erik Hatcher)
  8457. Newsgroups: comp.protocols.kermit.misc
  8458. Message-Id: <-25.335.uupcb@aecibbs.proxima.alt.za>
  8459. Control: cancel <25.335.uupcb@aecibbs.proxima.alt.za>
  8460. Distribution: world
  8461. Organization: AECI BBS  +27 11 608-1516
  8462. Reply-To: erik.hatcher@aecibbs.proxima.alt.za (Erik Hatcher)
  8463. Subject: cmsg cancel <25.335.uupcb@aecibbs.proxima.alt.za>
  8464. Date: Mon, 26 Sep 1994 21:24:57 GMT
  8465. Approved: news@aecibbs.proxima.alt.za
  8466. Lines: 1
  8467. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  8468.  
  8469. cancel <25.335.uupcb@aecibbs.proxima.alt.za>
  8470.  
  8471. From news@columbia.edu Mon Sep 26 19:24:54 1994
  8472. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA27163
  8473.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 17:33:54 -0400
  8474. Received: by apakabar.cc.columbia.edu id AA16019
  8475.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 17:33:46 -0400
  8476. Newsgroups: comp.protocols.kermit.misc
  8477. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!gatech!newsfeed.pitt.edu!dsinc!ub!acsu.buffalo.edu!ubvms.cc.buffalo.edu!RINGLAND
  8478. From: ringland@ubvms.cc.buffalo.edu
  8479. Subject: Re: Kermit can't access modem under Windows
  8480. Message-Id: <Cwr4LK.M6I@acsu.buffalo.edu>
  8481. Sender: nntp@acsu.buffalo.edu
  8482. Nntp-Posting-Host: ubvmsa.cc.buffalo.edu
  8483. Reply-To: ringland@ubvms.cc.buffalo.edu
  8484. Organization: University at Buffalo
  8485. References: <Cwpunn.CG7@acsu.buffalo.edu>
  8486. Date: Mon, 26 Sep 1994 19:24:54 GMT
  8487. Lines: 30
  8488. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  8489.  
  8490. In article <Cwpunn.CG7@acsu.buffalo.edu>, ringland@ubvms.cc.buffalo.edu writes:
  8491. >Hello.  I'm hoping that someone will indulge my ignorance and help
  8492. >with what might be a common problem.  Kermit works fine in DOS on
  8493. >my 386 with a USRobotics Sportster modem on Com 4, IRQ 5.  In windows
  8494. >it seems that Kermit can't access the modem.  After trying the computer
  8495. >hangs.  Cntl Alt. Del. sometimes quits Kermit and sometimes not, which
  8496. >seems to be connected to whether the mouse is moving (mouse is on Com1,
  8497. >IRQ 4).  I use other windows communications programs without problem,
  8498. >except that they don't include full implementations of Kermit, and 
  8499. >the protocols they do include often don't work, which is why I want
  8500. >to run Kermit.  I *think* I've tried just about everything.  The modem
  8501. >is a 14,400 model, and I'm fairly sure I've got all the Kermit settings
  8502. >right, including, of course, the Com and Interrupt settings -- as I
  8503. >said, works fine in DOS.  Help!
  8504. >
  8505. >Thanks!  (BTW this is the latest Kermit MS-DOS 3.13)
  8506.  
  8507.  
  8508. As followup to my own post, I thought it might be worth telling that 
  8509. the problem turned out to be "blank" com ports, which I had thought
  8510. I had to reserve for plugs attached to an I/O card, and whose 
  8511. interrupts were being used by a sound card, etc.  Someone was kind
  8512. enough to notify my by e-mail that Windows requires all ports to be
  8513. filled in sequence.  This knowledge saved me potential hours of 
  8514. frustration, and I haven't seen it documented anywhere.  So everything works
  8515. fine
  8516. now that I've rearranged things to give the modem "priority", as it
  8517. were, moving it to Com2 and changing the other interrupts around.
  8518.  
  8519. Thanks!
  8520.  
  8521. From news@columbia.edu Mon Sep 26 21:25:18 1994
  8522. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA27299
  8523.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 17:35:10 -0400
  8524. Received: by apakabar.cc.columbia.edu id AA16102
  8525.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 17:35:09 -0400
  8526. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!ulowell!aecibbs.proxima.alt.za!not-for-mail
  8527. From: beads@aecibbs.proxima.alt.za (Beads)
  8528. Newsgroups: comp.protocols.kermit.misc
  8529. Message-Id: <-26.335.uupcb@aecibbs.proxima.alt.za>
  8530. Control: cancel <26.335.uupcb@aecibbs.proxima.alt.za>
  8531. Distribution: world
  8532. Organization: AECI BBS  +27 11 608-1516
  8533. Reply-To: beads@aecibbs.proxima.alt.za (Beads)
  8534. Subject: cmsg cancel <26.335.uupcb@aecibbs.proxima.alt.za>
  8535. Date: Mon, 26 Sep 1994 21:25:18 GMT
  8536. Approved: news@aecibbs.proxima.alt.za
  8537. Lines: 1
  8538. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  8539.  
  8540. cancel <26.335.uupcb@aecibbs.proxima.alt.za>
  8541.  
  8542. From news@columbia.edu Mon Sep 26 21:25:37 1994
  8543. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA27438
  8544.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 17:37:32 -0400
  8545. Received: by apakabar.cc.columbia.edu id AA16261
  8546.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 17:37:30 -0400
  8547. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!ulowell!aecibbs.proxima.alt.za!not-for-mail
  8548. From: benjamin.ketcham@aecibbs.proxima.alt.za (Benjamin Ketcham)
  8549. Newsgroups: comp.protocols.kermit.misc
  8550. Message-Id: <-27.335.uupcb@aecibbs.proxima.alt.za>
  8551. Control: cancel <27.335.uupcb@aecibbs.proxima.alt.za>
  8552. Distribution: world
  8553. Organization: AECI BBS  +27 11 608-1516
  8554. Reply-To: benjamin.ketcham@aecibbs.proxima.alt.za (Benjamin Ketcham)
  8555. Subject: cmsg cancel <27.335.uupcb@aecibbs.proxima.alt.za>
  8556. Date: Mon, 26 Sep 1994 21:25:37 GMT
  8557. Approved: news@aecibbs.proxima.alt.za
  8558. Lines: 1
  8559. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  8560.  
  8561. cancel <27.335.uupcb@aecibbs.proxima.alt.za>
  8562.  
  8563. From news@columbia.edu Mon Sep 26 09:54:56 1994
  8564. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA01102
  8565.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 18:32:56 -0400
  8566. Received: by apakabar.cc.columbia.edu id AA20059
  8567.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 18:32:55 -0400
  8568. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  8569. From: jrd@cc.usu.edu (Joe Doupnik)
  8570. Newsgroups: comp.protocols.kermit.misc
  8571. Subject: Boo-boos from aecibbs.proxima.alt.za
  8572. Message-Id: <1994Sep26.155457.27892@cc.usu.edu>
  8573. Date: 26 Sep 94 15:54:56 MDT
  8574. Organization: Utah State University
  8575. Lines: 9
  8576. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  8577.  
  8578.     My News reader, and probably yours too, has just been inundated
  8579. with a large flux of files from a site in South Africa. They appear to
  8580. be old messages repackaged with new headers and not always the entire
  8581. body. I'm sure it is a broken mail distribution system down there, and
  8582. this kind of thing happens a lot.
  8583.     So rather than adding to the list traffic with grumbles, please let 
  8584. Columbia notify the postmaster of the site, and the rest of us will quietly 
  8585. skip down to the new and interesting files.
  8586.         Joe D.
  8587.  
  8588. From news@columbia.edu Mon Sep 26 21:10:58 1994
  8589. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA02263
  8590.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 18:56:09 -0400
  8591. Received: by apakabar.cc.columbia.edu id AA21656
  8592.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 18:56:08 -0400
  8593. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!MathWorks.Com!europa.eng.gtefsd.com!ulowell!aecibbs.proxima.alt.za!not-for-mail
  8594. From: sigurd.andersen@aecibbs.proxima.alt.za (Sigurd Andersen)
  8595. Newsgroups: comp.protocols.kermit.misc
  8596. Message-Id: <-12.335.uupcb@aecibbs.proxima.alt.za>
  8597. Control: cancel <12.335.uupcb@aecibbs.proxima.alt.za>
  8598. Distribution: world
  8599. Organization: AECI BBS  +27 11 608-1516
  8600. Reply-To: sigurd.andersen@aecibbs.proxima.alt.za (Sigurd Andersen)
  8601. Subject: cmsg cancel <12.335.uupcb@aecibbs.proxima.alt.za>
  8602. Date: Mon, 26 Sep 1994 21:10:58 GMT
  8603. Approved: news@aecibbs.proxima.alt.za
  8604. Lines: 1
  8605. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  8606.  
  8607. cancel <12.335.uupcb@aecibbs.proxima.alt.za>
  8608.  
  8609. From news@columbia.edu Mon Sep 26 21:11:22 1994
  8610. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA02383
  8611.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 18:58:59 -0400
  8612. Received: by apakabar.cc.columbia.edu id AA21811
  8613.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 18:58:58 -0400
  8614. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!MathWorks.Com!europa.eng.gtefsd.com!ulowell!aecibbs.proxima.alt.za!not-for-mail
  8615. From: xander.jansen@surfnet.nl (Xander.Jansen@Surfnet.Nl)
  8616. Newsgroups: comp.protocols.kermit.misc
  8617. Message-Id: <-18.335.uupcb@aecibbs.proxima.alt.za>
  8618. Control: cancel <18.335.uupcb@aecibbs.proxima.alt.za>
  8619. Distribution: world
  8620. Organization: AECI BBS  +27 11 608-1516
  8621. Reply-To: xander.jansen@surfnet.nl (Xander.Jansen@Surfnet.Nl)
  8622. Subject: cmsg cancel <18.335.uupcb@aecibbs.proxima.alt.za>
  8623. Date: Mon, 26 Sep 1994 21:11:22 GMT
  8624. Approved: news@aecibbs.proxima.alt.za
  8625. Lines: 1
  8626. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  8627.  
  8628. cancel <18.335.uupcb@aecibbs.proxima.alt.za>
  8629.  
  8630. From news@columbia.edu Mon Sep 26 21:11:51 1994
  8631. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA02687
  8632.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 19:01:10 -0400
  8633. Received: by apakabar.cc.columbia.edu id AA21975
  8634.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 19:01:09 -0400
  8635. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!MathWorks.Com!europa.eng.gtefsd.com!ulowell!aecibbs.proxima.alt.za!not-for-mail
  8636. From: cliff.stamp@aecibbs.proxima.alt.za (Cliff Stamp)
  8637. Newsgroups: comp.protocols.kermit.misc
  8638. Message-Id: <-13.335.uupcb@aecibbs.proxima.alt.za>
  8639. Control: cancel <13.335.uupcb@aecibbs.proxima.alt.za>
  8640. Distribution: world
  8641. Organization: AECI BBS  +27 11 608-1516
  8642. Reply-To: cliff.stamp@aecibbs.proxima.alt.za (Cliff Stamp)
  8643. Subject: cmsg cancel <13.335.uupcb@aecibbs.proxima.alt.za>
  8644. Date: Mon, 26 Sep 1994 21:11:51 GMT
  8645. Approved: news@aecibbs.proxima.alt.za
  8646. Lines: 1
  8647. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  8648.  
  8649. cancel <13.335.uupcb@aecibbs.proxima.alt.za>
  8650.  
  8651. From news@columbia.edu Mon Sep 26 21:12:19 1994
  8652. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA02932
  8653.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 19:04:48 -0400
  8654. Received: by apakabar.cc.columbia.edu id AA22315
  8655.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 19:04:48 -0400
  8656. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!MathWorks.Com!europa.eng.gtefsd.com!ulowell!aecibbs.proxima.alt.za!not-for-mail
  8657. From: j..wakeley.purple@aecibbs.proxima.alt.za (J. Wakeley Purple)
  8658. Newsgroups: comp.protocols.kermit.misc
  8659. Message-Id: <-20.335.uupcb@aecibbs.proxima.alt.za>
  8660. Control: cancel <20.335.uupcb@aecibbs.proxima.alt.za>
  8661. Distribution: world
  8662. Organization: AECI BBS  +27 11 608-1516
  8663. Reply-To: j..wakeley.purple@aecibbs.proxima.alt.za (J. Wakeley Purple)
  8664. Subject: cmsg cancel <20.335.uupcb@aecibbs.proxima.alt.za>
  8665. Date: Mon, 26 Sep 1994 21:12:19 GMT
  8666. Approved: news@aecibbs.proxima.alt.za
  8667. Lines: 1
  8668. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  8669.  
  8670. cancel <20.335.uupcb@aecibbs.proxima.alt.za>
  8671.  
  8672. From news@columbia.edu Mon Sep 26 21:13:01 1994
  8673. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA03282
  8674.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 19:12:47 -0400
  8675. Received: by apakabar.cc.columbia.edu id AA22682
  8676.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 19:12:46 -0400
  8677. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!MathWorks.Com!europa.eng.gtefsd.com!ulowell!aecibbs.proxima.alt.za!not-for-mail
  8678. From: hutsel.barry.e@aecibbs.proxima.alt.za (Hutsel Barry E)
  8679. Newsgroups: comp.protocols.kermit.misc
  8680. Message-Id: <-14.335.uupcb@aecibbs.proxima.alt.za>
  8681. Control: cancel <14.335.uupcb@aecibbs.proxima.alt.za>
  8682. Distribution: world
  8683. Organization: AECI BBS  +27 11 608-1516
  8684. Reply-To: hutsel.barry.e@aecibbs.proxima.alt.za (Hutsel Barry E)
  8685. Subject: cmsg cancel <14.335.uupcb@aecibbs.proxima.alt.za>
  8686. Date: Mon, 26 Sep 1994 21:13:01 GMT
  8687. Approved: news@aecibbs.proxima.alt.za
  8688. Lines: 1
  8689. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  8690.  
  8691. cancel <14.335.uupcb@aecibbs.proxima.alt.za>
  8692.  
  8693. From news@columbia.edu Mon Sep 26 21:13:26 1994
  8694. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA03325
  8695.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 19:13:50 -0400
  8696. Received: by apakabar.cc.columbia.edu id AA22756
  8697.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 19:13:48 -0400
  8698. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!MathWorks.Com!europa.eng.gtefsd.com!ulowell!aecibbs.proxima.alt.za!not-for-mail
  8699. From: roland.kwee@aecibbs.proxima.alt.za (Roland Kwee)
  8700. Newsgroups: comp.protocols.kermit.misc
  8701. Message-Id: <-15.335.uupcb@aecibbs.proxima.alt.za>
  8702. Control: cancel <15.335.uupcb@aecibbs.proxima.alt.za>
  8703. Distribution: world
  8704. Organization: AECI BBS  +27 11 608-1516
  8705. Reply-To: roland.kwee@aecibbs.proxima.alt.za (Roland Kwee)
  8706. Subject: cmsg cancel <15.335.uupcb@aecibbs.proxima.alt.za>
  8707. Date: Mon, 26 Sep 1994 21:13:26 GMT
  8708. Approved: news@aecibbs.proxima.alt.za
  8709. Lines: 1
  8710. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  8711.  
  8712. cancel <15.335.uupcb@aecibbs.proxima.alt.za>
  8713.  
  8714. From news@columbia.edu Mon Sep 26 21:13:53 1994
  8715. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA03354
  8716.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 19:14:25 -0400
  8717. Received: by apakabar.cc.columbia.edu id AA22878
  8718.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 19:14:24 -0400
  8719. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!MathWorks.Com!europa.eng.gtefsd.com!ulowell!aecibbs.proxima.alt.za!not-for-mail
  8720. From: alastair.mckinstry@aecibbs.proxima.alt.za (Alastair Mckinstry)
  8721. Newsgroups: comp.protocols.kermit.misc
  8722. Message-Id: <-16.335.uupcb@aecibbs.proxima.alt.za>
  8723. Control: cancel <16.335.uupcb@aecibbs.proxima.alt.za>
  8724. Distribution: world
  8725. Organization: AECI BBS  +27 11 608-1516
  8726. Reply-To: alastair.mckinstry@aecibbs.proxima.alt.za (Alastair Mckinstry)
  8727. Subject: cmsg cancel <16.335.uupcb@aecibbs.proxima.alt.za>
  8728. Date: Mon, 26 Sep 1994 21:13:53 GMT
  8729. Approved: news@aecibbs.proxima.alt.za
  8730. Lines: 1
  8731. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  8732.  
  8733. cancel <16.335.uupcb@aecibbs.proxima.alt.za>
  8734.  
  8735. From news@columbia.edu Mon Sep 26 21:14:13 1994
  8736. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA03421
  8737.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 19:15:06 -0400
  8738. Received: by apakabar.cc.columbia.edu id AA22976
  8739.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 19:15:05 -0400
  8740. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!MathWorks.Com!europa.eng.gtefsd.com!ulowell!aecibbs.proxima.alt.za!not-for-mail
  8741. From: huzacec@telerama.lm.com (Huzacec@Telerama.Lm.Com)
  8742. Newsgroups: comp.protocols.kermit.misc
  8743. Message-Id: <-17.335.uupcb@aecibbs.proxima.alt.za>
  8744. Control: cancel <17.335.uupcb@aecibbs.proxima.alt.za>
  8745. Distribution: world
  8746. Organization: AECI BBS  +27 11 608-1516
  8747. Reply-To: huzacec@telerama.lm.com (Huzacec@Telerama.Lm.Com)
  8748. Subject: cmsg cancel <17.335.uupcb@aecibbs.proxima.alt.za>
  8749. Date: Mon, 26 Sep 1994 21:14:13 GMT
  8750. Approved: news@aecibbs.proxima.alt.za
  8751. Lines: 1
  8752. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  8753.  
  8754. cancel <17.335.uupcb@aecibbs.proxima.alt.za>
  8755.  
  8756. From news@columbia.edu Mon Sep 26 21:14:34 1994
  8757. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA03434
  8758.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 19:15:37 -0400
  8759. Received: by apakabar.cc.columbia.edu id AA23115
  8760.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 19:15:36 -0400
  8761. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!MathWorks.Com!europa.eng.gtefsd.com!ulowell!aecibbs.proxima.alt.za!not-for-mail
  8762. From: rich@dsm1.dsmnet.com (Rich@Dsm1.Dsmnet.Com)
  8763. Newsgroups: comp.protocols.kermit.misc
  8764. Message-Id: <-33.335.uupcb@aecibbs.proxima.alt.za>
  8765. Control: cancel <33.335.uupcb@aecibbs.proxima.alt.za>
  8766. Distribution: world
  8767. Organization: AECI BBS  +27 11 608-1516
  8768. Reply-To: rich@dsm1.dsmnet.com (Rich@Dsm1.Dsmnet.Com)
  8769. Subject: cmsg cancel <33.335.uupcb@aecibbs.proxima.alt.za>
  8770. Date: Mon, 26 Sep 1994 21:14:34 GMT
  8771. Approved: news@aecibbs.proxima.alt.za
  8772. Lines: 1
  8773. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  8774.  
  8775. cancel <33.335.uupcb@aecibbs.proxima.alt.za>
  8776.  
  8777. From news@columbia.edu Mon Sep 26 21:14:55 1994
  8778. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA03623
  8779.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 19:18:53 -0400
  8780. Received: by apakabar.cc.columbia.edu id AA23353
  8781.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 19:18:51 -0400
  8782. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!MathWorks.Com!europa.eng.gtefsd.com!ulowell!aecibbs.proxima.alt.za!not-for-mail
  8783. From: mdesouza@aecibbs.proxima.alt.za (Mdesouza)
  8784. Newsgroups: comp.protocols.kermit.misc
  8785. Message-Id: <-19.335.uupcb@aecibbs.proxima.alt.za>
  8786. Control: cancel <19.335.uupcb@aecibbs.proxima.alt.za>
  8787. Distribution: world
  8788. Organization: AECI BBS  +27 11 608-1516
  8789. Reply-To: mdesouza@aecibbs.proxima.alt.za (Mdesouza)
  8790. Subject: cmsg cancel <19.335.uupcb@aecibbs.proxima.alt.za>
  8791. Date: Mon, 26 Sep 1994 21:14:55 GMT
  8792. Approved: news@aecibbs.proxima.alt.za
  8793. Lines: 1
  8794. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  8795.  
  8796. cancel <19.335.uupcb@aecibbs.proxima.alt.za>
  8797.  
  8798. From news@columbia.edu Mon Sep 26 21:16:08 1994
  8799. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA03789
  8800.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 19:22:35 -0400
  8801. Received: by apakabar.cc.columbia.edu id AA23553
  8802.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 19:22:34 -0400
  8803. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!ulowell!aecibbs.proxima.alt.za!not-for-mail
  8804. From: j..wakeley.purple@aecibbs.proxima.alt.za (J. Wakeley Purple)
  8805. Newsgroups: comp.protocols.kermit.misc
  8806. Message-Id: <-22.335.uupcb@aecibbs.proxima.alt.za>
  8807. Control: cancel <22.335.uupcb@aecibbs.proxima.alt.za>
  8808. Distribution: world
  8809. Organization: AECI BBS  +27 11 608-1516
  8810. Reply-To: j..wakeley.purple@aecibbs.proxima.alt.za (J. Wakeley Purple)
  8811. Subject: cmsg cancel <22.335.uupcb@aecibbs.proxima.alt.za>
  8812. Date: Mon, 26 Sep 1994 21:16:08 GMT
  8813. Approved: news@aecibbs.proxima.alt.za
  8814. Lines: 1
  8815. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  8816.  
  8817. cancel <22.335.uupcb@aecibbs.proxima.alt.za>
  8818.  
  8819. From news@columbia.edu Mon Sep 26 21:16:32 1994
  8820. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA03824
  8821.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 19:23:06 -0400
  8822. Received: by apakabar.cc.columbia.edu id AA23571
  8823.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 19:23:05 -0400
  8824. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!ulowell!aecibbs.proxima.alt.za!not-for-mail
  8825. From: doug.fraser@aecibbs.proxima.alt.za (Doug Fraser)
  8826. Newsgroups: comp.protocols.kermit.misc
  8827. Message-Id: <-44.335.uupcb@aecibbs.proxima.alt.za>
  8828. Control: cancel <44.335.uupcb@aecibbs.proxima.alt.za>
  8829. Distribution: world
  8830. Organization: AECI BBS  +27 11 608-1516
  8831. Reply-To: doug.fraser@aecibbs.proxima.alt.za (Doug Fraser)
  8832. Subject: cmsg cancel <44.335.uupcb@aecibbs.proxima.alt.za>
  8833. Date: Mon, 26 Sep 1994 21:16:32 GMT
  8834. Approved: news@aecibbs.proxima.alt.za
  8835. Lines: 1
  8836. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  8837.  
  8838. cancel <44.335.uupcb@aecibbs.proxima.alt.za>
  8839.  
  8840. From news@columbia.edu Mon Sep 26 21:18:30 1994
  8841. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA04014
  8842.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 19:27:58 -0400
  8843. Received: by apakabar.cc.columbia.edu id AA23929
  8844.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 19:27:56 -0400
  8845. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!ulowell!aecibbs.proxima.alt.za!not-for-mail
  8846. From: jeff.mcadams.(j.mca@aecibbs.proxima.alt.za (Jeff Mcadams (J Mca)
  8847. Newsgroups: comp.protocols.kermit.misc
  8848. Message-Id: <-50.335.uupcb@aecibbs.proxima.alt.za>
  8849. Control: cancel <50.335.uupcb@aecibbs.proxima.alt.za>
  8850. Distribution: world
  8851. Organization: AECI BBS  +27 11 608-1516
  8852. Reply-To: jeff.mcadams.(j.mca@aecibbs.proxima.alt.za (Jeff Mcadams (J Mca)
  8853. Subject: cmsg cancel <50.335.uupcb@aecibbs.proxima.alt.za>
  8854. Date: Mon, 26 Sep 1994 21:18:30 GMT
  8855. Approved: news@aecibbs.proxima.alt.za
  8856. Lines: 1
  8857. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  8858.  
  8859. cancel <50.335.uupcb@aecibbs.proxima.alt.za>
  8860.  
  8861. From news@columbia.edu Mon Sep 26 21:19:06 1994
  8862. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA04187
  8863.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 19:29:47 -0400
  8864. Received: by apakabar.cc.columbia.edu id AA24032
  8865.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 19:29:44 -0400
  8866. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!ulowell!aecibbs.proxima.alt.za!not-for-mail
  8867. From: harry.h.conover@aecibbs.proxima.alt.za (Harry H Conover)
  8868. Newsgroups: comp.protocols.kermit.misc
  8869. Message-Id: <-21.335.uupcb@aecibbs.proxima.alt.za>
  8870. Control: cancel <21.335.uupcb@aecibbs.proxima.alt.za>
  8871. Distribution: world
  8872. Organization: AECI BBS  +27 11 608-1516
  8873. Reply-To: harry.h.conover@aecibbs.proxima.alt.za (Harry H Conover)
  8874. Subject: cmsg cancel <21.335.uupcb@aecibbs.proxima.alt.za>
  8875. Date: Mon, 26 Sep 1994 21:19:06 GMT
  8876. Approved: news@aecibbs.proxima.alt.za
  8877. Lines: 1
  8878. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  8879.  
  8880. cancel <21.335.uupcb@aecibbs.proxima.alt.za>
  8881.  
  8882. From news@columbia.edu Mon Sep 26 21:20:05 1994
  8883. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA04327
  8884.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 19:31:02 -0400
  8885. Received: by apakabar.cc.columbia.edu id AA24098
  8886.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 19:31:01 -0400
  8887. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!ulowell!aecibbs.proxima.alt.za!not-for-mail
  8888. From: keith.petersen@aecibbs.proxima.alt.za (Keith Petersen)
  8889. Newsgroups: comp.protocols.kermit.misc
  8890. Message-Id: <-24.335.uupcb@aecibbs.proxima.alt.za>
  8891. Control: cancel <24.335.uupcb@aecibbs.proxima.alt.za>
  8892. Distribution: world
  8893. Organization: AECI BBS  +27 11 608-1516
  8894. Reply-To: keith.petersen@aecibbs.proxima.alt.za (Keith Petersen)
  8895. Subject: cmsg cancel <24.335.uupcb@aecibbs.proxima.alt.za>
  8896. Date: Mon, 26 Sep 1994 21:20:05 GMT
  8897. Approved: news@aecibbs.proxima.alt.za
  8898. Lines: 1
  8899. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  8900.  
  8901. cancel <24.335.uupcb@aecibbs.proxima.alt.za>
  8902.  
  8903. From news@columbia.edu Mon Sep 26 21:20:31 1994
  8904. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA04341
  8905.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 19:31:23 -0400
  8906. Received: by apakabar.cc.columbia.edu id AA24119
  8907.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 19:31:21 -0400
  8908. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!ulowell!aecibbs.proxima.alt.za!not-for-mail
  8909. From: r..stewart.ellis@aecibbs.proxima.alt.za (R. Stewart Ellis)
  8910. Newsgroups: comp.protocols.kermit.misc
  8911. Message-Id: <-42.335.uupcb@aecibbs.proxima.alt.za>
  8912. Control: cancel <42.335.uupcb@aecibbs.proxima.alt.za>
  8913. Distribution: world
  8914. Organization: AECI BBS  +27 11 608-1516
  8915. Reply-To: r..stewart.ellis@aecibbs.proxima.alt.za (R. Stewart Ellis)
  8916. Subject: cmsg cancel <42.335.uupcb@aecibbs.proxima.alt.za>
  8917. Date: Mon, 26 Sep 1994 21:20:31 GMT
  8918. Approved: news@aecibbs.proxima.alt.za
  8919. Lines: 1
  8920. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  8921.  
  8922. cancel <42.335.uupcb@aecibbs.proxima.alt.za>
  8923.  
  8924. From news@columbia.edu Mon Sep 26 21:20:57 1994
  8925. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA04376
  8926.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 19:32:22 -0400
  8927. Received: by apakabar.cc.columbia.edu id AA24181
  8928.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 19:32:21 -0400
  8929. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!ulowell!aecibbs.proxima.alt.za!not-for-mail
  8930. From: steven.patrick.iltis@aecibbs.proxima.alt.za (Steven Patrick Iltis)
  8931. Newsgroups: comp.protocols.kermit.misc
  8932. Message-Id: <-23.335.uupcb@aecibbs.proxima.alt.za>
  8933. Control: cancel <23.335.uupcb@aecibbs.proxima.alt.za>
  8934. Distribution: world
  8935. Organization: AECI BBS  +27 11 608-1516
  8936. Reply-To: steven.patrick.iltis@aecibbs.proxima.alt.za (Steven Patrick Iltis)
  8937. Subject: cmsg cancel <23.335.uupcb@aecibbs.proxima.alt.za>
  8938. Date: Mon, 26 Sep 1994 21:20:57 GMT
  8939. Approved: news@aecibbs.proxima.alt.za
  8940. Lines: 1
  8941. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  8942.  
  8943. cancel <23.335.uupcb@aecibbs.proxima.alt.za>
  8944.  
  8945. From news@columbia.edu Mon Sep 26 21:21:15 1994
  8946. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA04385
  8947.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 19:32:48 -0400
  8948. Received: by apakabar.cc.columbia.edu id AA24196
  8949.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 19:32:46 -0400
  8950. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!ulowell!aecibbs.proxima.alt.za!not-for-mail
  8951. From: kerry.schwab@aecibbs.proxima.alt.za (Kerry Schwab)
  8952. Newsgroups: comp.protocols.kermit.misc
  8953. Message-Id: <-41.335.uupcb@aecibbs.proxima.alt.za>
  8954. Control: cancel <41.335.uupcb@aecibbs.proxima.alt.za>
  8955. Distribution: world
  8956. Organization: AECI BBS  +27 11 608-1516
  8957. Reply-To: kerry.schwab@aecibbs.proxima.alt.za (Kerry Schwab)
  8958. Subject: cmsg cancel <41.335.uupcb@aecibbs.proxima.alt.za>
  8959. Date: Mon, 26 Sep 1994 21:21:15 GMT
  8960. Approved: news@aecibbs.proxima.alt.za
  8961. Lines: 1
  8962. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  8963.  
  8964. cancel <41.335.uupcb@aecibbs.proxima.alt.za>
  8965.  
  8966. From news@columbia.edu Mon Sep 26 21:21:51 1994
  8967. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA04428
  8968.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 19:34:08 -0400
  8969. Received: by apakabar.cc.columbia.edu id AA24258
  8970.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 19:34:07 -0400
  8971. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!ulowell!aecibbs.proxima.alt.za!not-for-mail
  8972. From: roland.kwee@aecibbs.proxima.alt.za (Roland Kwee)
  8973. Newsgroups: comp.protocols.kermit.misc
  8974. Message-Id: <-48.335.uupcb@aecibbs.proxima.alt.za>
  8975. Control: cancel <48.335.uupcb@aecibbs.proxima.alt.za>
  8976. Distribution: world
  8977. Organization: AECI BBS  +27 11 608-1516
  8978. Reply-To: roland.kwee@aecibbs.proxima.alt.za (Roland Kwee)
  8979. Subject: cmsg cancel <48.335.uupcb@aecibbs.proxima.alt.za>
  8980. Date: Mon, 26 Sep 1994 21:21:51 GMT
  8981. Approved: news@aecibbs.proxima.alt.za
  8982. Lines: 1
  8983. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  8984.  
  8985. cancel <48.335.uupcb@aecibbs.proxima.alt.za>
  8986.  
  8987. From news@columbia.edu Mon Sep 26 21:20:08 1994
  8988. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA04546
  8989.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 19:35:09 -0400
  8990. Received: by apakabar.cc.columbia.edu id AA24317
  8991.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 19:35:08 -0400
  8992. Path: news.columbia.edu!panix!MathWorks.Com!udel!news-4.nss.udel.edu!chopin.udel.edu!not-for-mail
  8993. From: sigurd@chopin.udel.edu (Sigurd Andersen)
  8994. Newsgroups: comp.protocols.kermit.misc
  8995. Subject: Lots of truncated postings appearing today
  8996. Date: 26 Sep 1994 17:20:08 -0400
  8997. Organization: University of Delaware
  8998. Lines: 8
  8999. Message-Id: <367du8$31m@chopin.udel.edu>
  9000. Nntp-Posting-Host: chopin.udel.edu
  9001. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  9002.  
  9003. I'm seeing many truncated postings, mostly old ones re-appearing.
  9004. Is something wrong with who/whatever is handling posted messages?
  9005. -- Sig --  sigurd@strauss.udel.edu
  9006. -- 
  9007. Sigurd Andersen    Internet: sigurd@strauss.udel.edu   User Services
  9008.      __o            or  Sigurd.Andersen@MVS.udel.edu   023 Smith Hall
  9009.    _ \<,_                                              Univ. of Delaware
  9010.   (_)/ (_)         Ph: (302) 831-1992  Fax: 831-4205   Newark, DE. 19716
  9011.  
  9012. From news@columbia.edu Mon Sep 26 21:22:23 1994
  9013. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA04596
  9014.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 19:36:22 -0400
  9015. Received: by apakabar.cc.columbia.edu id AA24393
  9016.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 19:36:21 -0400
  9017. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!ulowell!aecibbs.proxima.alt.za!not-for-mail
  9018. From: steven.patrick.iltis@aecibbs.proxima.alt.za (Steven Patrick Iltis)
  9019. Newsgroups: comp.protocols.kermit.misc
  9020. Message-Id: <-51.335.uupcb@aecibbs.proxima.alt.za>
  9021. Control: cancel <51.335.uupcb@aecibbs.proxima.alt.za>
  9022. Distribution: world
  9023. Organization: AECI BBS  +27 11 608-1516
  9024. Reply-To: steven.patrick.iltis@aecibbs.proxima.alt.za (Steven Patrick Iltis)
  9025. Subject: cmsg cancel <51.335.uupcb@aecibbs.proxima.alt.za>
  9026. Date: Mon, 26 Sep 1994 21:22:23 GMT
  9027. Approved: news@aecibbs.proxima.alt.za
  9028. Lines: 1
  9029. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  9030.  
  9031. cancel <51.335.uupcb@aecibbs.proxima.alt.za>
  9032.  
  9033. From news@columbia.edu Mon Sep 26 21:24:31 1994
  9034. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA04774
  9035.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 19:39:36 -0400
  9036. Received: by apakabar.cc.columbia.edu id AA24546
  9037.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 19:39:34 -0400
  9038. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!ulowell!aecibbs.proxima.alt.za!not-for-mail
  9039. From: doug.fraser@aecibbs.proxima.alt.za (Doug Fraser)
  9040. Newsgroups: comp.protocols.kermit.misc
  9041. Message-Id: <-53.335.uupcb@aecibbs.proxima.alt.za>
  9042. Control: cancel <53.335.uupcb@aecibbs.proxima.alt.za>
  9043. Distribution: world
  9044. Organization: AECI BBS  +27 11 608-1516
  9045. Reply-To: doug.fraser@aecibbs.proxima.alt.za (Doug Fraser)
  9046. Subject: cmsg cancel <53.335.uupcb@aecibbs.proxima.alt.za>
  9047. Date: Mon, 26 Sep 1994 21:24:31 GMT
  9048. Approved: news@aecibbs.proxima.alt.za
  9049. Lines: 1
  9050. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  9051.  
  9052. cancel <53.335.uupcb@aecibbs.proxima.alt.za>
  9053.  
  9054. From news@columbia.edu Mon Sep 26 21:25:58 1994
  9055. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA04892
  9056.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 19:41:31 -0400
  9057. Received: by apakabar.cc.columbia.edu id AA24648
  9058.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 19:41:29 -0400
  9059. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!ulowell!aecibbs.proxima.alt.za!not-for-mail
  9060. From: andrew.dunstan@aecibbs.proxima.alt.za (Andrew Dunstan)
  9061. Newsgroups: comp.protocols.kermit.misc
  9062. Message-Id: <-28.335.uupcb@aecibbs.proxima.alt.za>
  9063. Control: cancel <28.335.uupcb@aecibbs.proxima.alt.za>
  9064. Distribution: world
  9065. Organization: AECI BBS  +27 11 608-1516
  9066. Reply-To: andrew.dunstan@aecibbs.proxima.alt.za (Andrew Dunstan)
  9067. Subject: cmsg cancel <28.335.uupcb@aecibbs.proxima.alt.za>
  9068. Date: Mon, 26 Sep 1994 21:25:58 GMT
  9069. Approved: news@aecibbs.proxima.alt.za
  9070. Lines: 1
  9071. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  9072.  
  9073. cancel <28.335.uupcb@aecibbs.proxima.alt.za>
  9074.  
  9075. From news@columbia.edu Mon Sep 26 21:30:45 1994
  9076. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA05139
  9077.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 19:47:51 -0400
  9078. Received: by apakabar.cc.columbia.edu id AA25171
  9079.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 19:47:50 -0400
  9080. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!ulowell!aecibbs.proxima.alt.za!not-for-mail
  9081. From: keith.petersen@aecibbs.proxima.alt.za (Keith Petersen)
  9082. Newsgroups: comp.protocols.kermit.misc
  9083. Message-Id: <-29.335.uupcb@aecibbs.proxima.alt.za>
  9084. Control: cancel <29.335.uupcb@aecibbs.proxima.alt.za>
  9085. Distribution: world
  9086. Organization: AECI BBS +27 11 608-1516
  9087. Reply-To: keith.petersen@aecibbs.proxima.alt.za (Keith Petersen)
  9088. Subject: cmsg cancel <29.335.uupcb@aecibbs.proxima.alt.za>
  9089. Date: Mon, 26 Sep 1994 21:30:45 GMT
  9090. Approved: news@aecibbs.proxima.alt.za
  9091. Lines: 1
  9092. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  9093.  
  9094. cancel <29.335.uupcb@aecibbs.proxima.alt.za>
  9095.  
  9096. From news@columbia.edu Mon Sep 26 21:31:12 1994
  9097. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA05163
  9098.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 19:48:04 -0400
  9099. Received: by apakabar.cc.columbia.edu id AA25183
  9100.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 19:48:03 -0400
  9101. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!ulowell!aecibbs.proxima.alt.za!not-for-mail
  9102. From: john.d.cederman@aecibbs.proxima.alt.za (John D Cederman)
  9103. Newsgroups: comp.protocols.kermit.misc
  9104. Message-Id: <-34.335.uupcb@aecibbs.proxima.alt.za>
  9105. Control: cancel <34.335.uupcb@aecibbs.proxima.alt.za>
  9106. Distribution: world
  9107. Organization: AECI BBS +27 11 608-1516
  9108. Reply-To: john.d.cederman@aecibbs.proxima.alt.za (John D Cederman)
  9109. Subject: cmsg cancel <34.335.uupcb@aecibbs.proxima.alt.za>
  9110. Date: Mon, 26 Sep 1994 21:31:12 GMT
  9111. Approved: news@aecibbs.proxima.alt.za
  9112. Lines: 1
  9113. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  9114.  
  9115. cancel <34.335.uupcb@aecibbs.proxima.alt.za>
  9116.  
  9117.                                             @
  9118. @                         _Insert Stupid Quote Here_                          @
  9119. @                                                                             @
  9120. @ Tim Flynn, Larch 1349 Cunningham, Ames, Iowa 50013-0008  ph.(515)-294-9022  @
  9121. @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
  9122.  
  9123. From news@columbia.edu Mon Sep 26 21:31:39 1994
  9124. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA05175
  9125.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 19:48:24 -0400
  9126. Received: by apakabar.cc.columbia.edu id AA25200
  9127.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 19:48:22 -0400
  9128. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!ulowell!aecibbs.proxima.alt.za!not-for-mail
  9129. From: john.d.cederman@aecibbs.proxima.alt.za (John D Cederman)
  9130. Newsgroups: comp.protocols.kermit.misc
  9131. Message-Id: <-46.335.uupcb@aecibbs.proxima.alt.za>
  9132. Control: cancel <46.335.uupcb@aecibbs.proxima.alt.za>
  9133. Distribution: world
  9134. Organization: AECI BBS +27 11 608-1516
  9135. Reply-To: john.d.cederman@aecibbs.proxima.alt.za (John D Cederman)
  9136. Subject: cmsg cancel <46.335.uupcb@aecibbs.proxima.alt.za>
  9137. Date: Mon, 26 Sep 1994 21:31:39 GMT
  9138. Approved: news@aecibbs.proxima.alt.za
  9139. Lines: 1
  9140. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  9141.  
  9142. cancel <46.335.uupcb@aecibbs.proxima.alt.za>
  9143.  
  9144. From news@columbia.edu Mon Sep 26 21:32:01 1994
  9145. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA05206
  9146.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 19:48:53 -0400
  9147. Received: by apakabar.cc.columbia.edu id AA25231
  9148.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 19:48:51 -0400
  9149. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!ulowell!aecibbs.proxima.alt.za!not-for-mail
  9150. From: dwight.hugget@aecibbs.proxima.alt.za (Dwight Hugget)
  9151. Newsgroups: comp.protocols.kermit.misc
  9152. Message-Id: <-30.335.uupcb@aecibbs.proxima.alt.za>
  9153. Control: cancel <30.335.uupcb@aecibbs.proxima.alt.za>
  9154. Distribution: world
  9155. Organization: AECI BBS +27 11 608-1516
  9156. Reply-To: dwight.hugget@aecibbs.proxima.alt.za (Dwight Hugget)
  9157. Subject: cmsg cancel <30.335.uupcb@aecibbs.proxima.alt.za>
  9158. Date: Mon, 26 Sep 1994 21:32:01 GMT
  9159. Approved: news@aecibbs.proxima.alt.za
  9160. Lines: 1
  9161. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  9162.  
  9163. cancel <30.335.uupcb@aecibbs.proxima.alt.za>
  9164.  
  9165. From news@columbia.edu Mon Sep 26 21:32:25 1994
  9166. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA05271
  9167.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 19:49:43 -0400
  9168. Received: by apakabar.cc.columbia.edu id AA25324
  9169.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 19:49:41 -0400
  9170. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!ulowell!aecibbs.proxima.alt.za!not-for-mail
  9171. From: bill.chinn@aecibbs.proxima.alt.za (Bill Chinn)
  9172. Newsgroups: comp.protocols.kermit.misc
  9173. Message-Id: <-31.335.uupcb@aecibbs.proxima.alt.za>
  9174. Control: cancel <31.335.uupcb@aecibbs.proxima.alt.za>
  9175. Distribution: world
  9176. Organization: AECI BBS +27 11 608-1516
  9177. Reply-To: bill.chinn@aecibbs.proxima.alt.za (Bill Chinn)
  9178. Subject: cmsg cancel <31.335.uupcb@aecibbs.proxima.alt.za>
  9179. Date: Mon, 26 Sep 1994 21:32:25 GMT
  9180. Approved: news@aecibbs.proxima.alt.za
  9181. Lines: 1
  9182. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  9183.  
  9184. cancel <31.335.uupcb@aecibbs.proxima.alt.za>
  9185.  
  9186. From news@columbia.edu Mon Sep 26 21:33:04 1994
  9187. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA05360
  9188.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 19:50:37 -0400
  9189. Received: by apakabar.cc.columbia.edu id AA25384
  9190.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 19:50:36 -0400
  9191. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!ulowell!aecibbs.proxima.alt.za!not-for-mail
  9192. From: jianqing.hu@aecibbs.proxima.alt.za (Jianqing Hu)
  9193. Newsgroups: comp.protocols.kermit.misc
  9194. Message-Id: <-32.335.uupcb@aecibbs.proxima.alt.za>
  9195. Control: cancel <32.335.uupcb@aecibbs.proxima.alt.za>
  9196. Distribution: world
  9197. Organization: AECI BBS +27 11 608-1516
  9198. Reply-To: jianqing.hu@aecibbs.proxima.alt.za (Jianqing Hu)
  9199. Subject: cmsg cancel <32.335.uupcb@aecibbs.proxima.alt.za>
  9200. Date: Mon, 26 Sep 1994 21:33:04 GMT
  9201. Approved: news@aecibbs.proxima.alt.za
  9202. Lines: 1
  9203. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  9204.  
  9205. cancel <32.335.uupcb@aecibbs.proxima.alt.za>
  9206.  
  9207. From news@columbia.edu Mon Sep 26 21:32:47 1994
  9208. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA05316
  9209.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 19:50:10 -0400
  9210. Received: by apakabar.cc.columbia.edu id AA25368
  9211.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 19:50:09 -0400
  9212. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!ulowell!aecibbs.proxima.alt.za!not-for-mail
  9213. From: jeffrey.altman@aecibbs.proxima.alt.za (Jeffrey Altman)
  9214. Newsgroups: comp.protocols.kermit.misc
  9215. Message-Id: <-38.335.uupcb@aecibbs.proxima.alt.za>
  9216. Control: cancel <38.335.uupcb@aecibbs.proxima.alt.za>
  9217. Distribution: world
  9218. Organization: AECI BBS +27 11 608-1516
  9219. Reply-To: jeffrey.altman@aecibbs.proxima.alt.za (Jeffrey Altman)
  9220. Subject: cmsg cancel <38.335.uupcb@aecibbs.proxima.alt.za>
  9221. Date: Mon, 26 Sep 1994 21:32:47 GMT
  9222. Approved: news@aecibbs.proxima.alt.za
  9223. Lines: 1
  9224. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  9225.  
  9226. cancel <38.335.uupcb@aecibbs.proxima.alt.za>
  9227.  
  9228. From news@columbia.edu Mon Sep 26 21:33:25 1994
  9229. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA05369
  9230.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 19:50:47 -0400
  9231. Received: by apakabar.cc.columbia.edu id AA25396
  9232.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 19:50:46 -0400
  9233. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!ulowell!aecibbs.proxima.alt.za!not-for-mail
  9234. From: keith.petersen@aecibbs.proxima.alt.za (Keith Petersen)
  9235. Newsgroups: comp.protocols.kermit.misc
  9236. Message-Id: <-35.335.uupcb@aecibbs.proxima.alt.za>
  9237. Control: cancel <35.335.uupcb@aecibbs.proxima.alt.za>
  9238. Distribution: world
  9239. Organization: AECI BBS +27 11 608-1516
  9240. Reply-To: keith.petersen@aecibbs.proxima.alt.za (Keith Petersen)
  9241. Subject: cmsg cancel <35.335.uupcb@aecibbs.proxima.alt.za>
  9242. Date: Mon, 26 Sep 1994 21:33:25 GMT
  9243. Approved: news@aecibbs.proxima.alt.za
  9244. Lines: 1
  9245. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  9246.  
  9247. cancel <35.335.uupcb@aecibbs.proxima.alt.za>
  9248.  
  9249. From news@columbia.edu Mon Sep 26 21:33:40 1994
  9250. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA05393
  9251.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 19:51:02 -0400
  9252. Received: by apakabar.cc.columbia.edu id AA25411
  9253.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 19:51:01 -0400
  9254. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!ulowell!aecibbs.proxima.alt.za!not-for-mail
  9255. From: binh.anson@aecibbs.proxima.alt.za (Binh Anson)
  9256. Newsgroups: comp.protocols.kermit.misc
  9257. Message-Id: <-36.335.uupcb@aecibbs.proxima.alt.za>
  9258. Control: cancel <36.335.uupcb@aecibbs.proxima.alt.za>
  9259. Distribution: world
  9260. Organization: AECI BBS +27 11 608-1516
  9261. Reply-To: binh.anson@aecibbs.proxima.alt.za (Binh Anson)
  9262. Subject: cmsg cancel <36.335.uupcb@aecibbs.proxima.alt.za>
  9263. Date: Mon, 26 Sep 1994 21:33:40 GMT
  9264. Approved: news@aecibbs.proxima.alt.za
  9265. Lines: 1
  9266. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  9267.  
  9268. cancel <36.335.uupcb@aecibbs.proxima.alt.za>
  9269.  
  9270. From news@columbia.edu Mon Sep 26 21:33:59 1994
  9271. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA05405
  9272.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 19:51:14 -0400
  9273. Received: by apakabar.cc.columbia.edu id AA25418
  9274.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 19:51:13 -0400
  9275. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!ulowell!aecibbs.proxima.alt.za!not-for-mail
  9276. From: todd.spindler@aecibbs.proxima.alt.za (Todd Spindler)
  9277. Newsgroups: comp.protocols.kermit.misc
  9278. Message-Id: <-47.335.uupcb@aecibbs.proxima.alt.za>
  9279. Control: cancel <47.335.uupcb@aecibbs.proxima.alt.za>
  9280. Distribution: world
  9281. Organization: AECI BBS +27 11 608-1516
  9282. Reply-To: todd.spindler@aecibbs.proxima.alt.za (Todd Spindler)
  9283. Subject: cmsg cancel <47.335.uupcb@aecibbs.proxima.alt.za>
  9284. Date: Mon, 26 Sep 1994 21:33:59 GMT
  9285. Approved: news@aecibbs.proxima.alt.za
  9286. Lines: 1
  9287. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  9288.  
  9289. cancel <47.335.uupcb@aecibbs.proxima.alt.za>
  9290.  
  9291. From news@columbia.edu Mon Sep 26 21:34:16 1994
  9292. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA05410
  9293.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 19:51:21 -0400
  9294. Received: by apakabar.cc.columbia.edu id AA25424
  9295.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 19:51:20 -0400
  9296. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!ulowell!aecibbs.proxima.alt.za!not-for-mail
  9297. From: adam.h..lewenberg@aecibbs.proxima.alt.za (Adam H. Lewenberg)
  9298. Newsgroups: comp.protocols.kermit.misc
  9299. Message-Id: <-37.335.uupcb@aecibbs.proxima.alt.za>
  9300. Control: cancel <37.335.uupcb@aecibbs.proxima.alt.za>
  9301. Distribution: world
  9302. Organization: AECI BBS +27 11 608-1516
  9303. Reply-To: adam.h..lewenberg@aecibbs.proxima.alt.za (Adam H. Lewenberg)
  9304. Subject: cmsg cancel <37.335.uupcb@aecibbs.proxima.alt.za>
  9305. Date: Mon, 26 Sep 1994 21:34:16 GMT
  9306. Approved: news@aecibbs.proxima.alt.za
  9307. Lines: 1
  9308. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  9309.  
  9310. cancel <37.335.uupcb@aecibbs.proxima.alt.za>
  9311.  
  9312. From news@columbia.edu Mon Sep 26 21:34:36 1994
  9313. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA05438
  9314.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 19:52:00 -0400
  9315. Received: by apakabar.cc.columbia.edu id AA25459
  9316.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 19:51:59 -0400
  9317. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!ulowell!aecibbs.proxima.alt.za!not-for-mail
  9318. From: paul.hounsell@aecibbs.proxima.alt.za (Paul Hounsell)
  9319. Newsgroups: comp.protocols.kermit.misc
  9320. Message-Id: <-39.335.uupcb@aecibbs.proxima.alt.za>
  9321. Control: cancel <39.335.uupcb@aecibbs.proxima.alt.za>
  9322. Distribution: world
  9323. Organization: AECI BBS +27 11 608-1516
  9324. Reply-To: paul.hounsell@aecibbs.proxima.alt.za (Paul Hounsell)
  9325. Subject: cmsg cancel <39.335.uupcb@aecibbs.proxima.alt.za>
  9326. Date: Mon, 26 Sep 1994 21:34:36 GMT
  9327. Approved: news@aecibbs.proxima.alt.za
  9328. Lines: 1
  9329. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  9330.  
  9331. cancel <39.335.uupcb@aecibbs.proxima.alt.za>
  9332.  
  9333. From news@columbia.edu Mon Sep 26 21:35:03 1994
  9334. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA05456
  9335.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 19:52:18 -0400
  9336. Received: by apakabar.cc.columbia.edu id AA25477
  9337.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 19:52:17 -0400
  9338. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!ulowell!aecibbs.proxima.alt.za!not-for-mail
  9339. From: paul.hounsell@aecibbs.proxima.alt.za (Paul Hounsell)
  9340. Newsgroups: comp.protocols.kermit.misc
  9341. Message-Id: <-40.335.uupcb@aecibbs.proxima.alt.za>
  9342. Control: cancel <40.335.uupcb@aecibbs.proxima.alt.za>
  9343. Distribution: world
  9344. Organization: AECI BBS +27 11 608-1516
  9345. Reply-To: paul.hounsell@aecibbs.proxima.alt.za (Paul Hounsell)
  9346. Subject: cmsg cancel <40.335.uupcb@aecibbs.proxima.alt.za>
  9347. Date: Mon, 26 Sep 1994 21:35:03 GMT
  9348. Approved: news@aecibbs.proxima.alt.za
  9349. Lines: 1
  9350. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  9351.  
  9352. cancel <40.335.uupcb@aecibbs.proxima.alt.za>
  9353.  
  9354. From news@columbia.edu Mon Sep 26 21:35:18 1994
  9355. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA05464
  9356.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 19:52:45 -0400
  9357. Received: by apakabar.cc.columbia.edu id AA25497
  9358.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 19:52:42 -0400
  9359. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!ulowell!aecibbs.proxima.alt.za!not-for-mail
  9360. From: ramin.farzaneh@aecibbs.proxima.alt.za (Ramin Farzaneh)
  9361. Newsgroups: comp.protocols.kermit.misc
  9362. Message-Id: <-43.335.uupcb@aecibbs.proxima.alt.za>
  9363. Control: cancel <43.335.uupcb@aecibbs.proxima.alt.za>
  9364. Distribution: world
  9365. Organization: AECI BBS +27 11 608-1516
  9366. Reply-To: ramin.farzaneh@aecibbs.proxima.alt.za (Ramin Farzaneh)
  9367. Subject: cmsg cancel <43.335.uupcb@aecibbs.proxima.alt.za>
  9368. Date: Mon, 26 Sep 1994 21:35:18 GMT
  9369. Approved: news@aecibbs.proxima.alt.za
  9370. Lines: 1
  9371. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  9372.  
  9373. cancel <43.335.uupcb@aecibbs.proxima.alt.za>
  9374.  
  9375. From news@columbia.edu Mon Sep 26 21:35:37 1994
  9376. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA05513
  9377.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 19:53:12 -0400
  9378. Received: by apakabar.cc.columbia.edu id AA25649
  9379.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 19:53:10 -0400
  9380. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!ulowell!aecibbs.proxima.alt.za!not-for-mail
  9381. From: jerry.alexandratos@aecibbs.proxima.alt.za (Jerry Alexandratos)
  9382. Newsgroups: comp.protocols.kermit.misc
  9383. Message-Id: <-45.335.uupcb@aecibbs.proxima.alt.za>
  9384. Control: cancel <45.335.uupcb@aecibbs.proxima.alt.za>
  9385. Distribution: world
  9386. Organization: AECI BBS +27 11 608-1516
  9387. Reply-To: jerry.alexandratos@aecibbs.proxima.alt.za (Jerry Alexandratos)
  9388. Subject: cmsg cancel <45.335.uupcb@aecibbs.proxima.alt.za>
  9389. Date: Mon, 26 Sep 1994 21:35:37 GMT
  9390. Approved: news@aecibbs.proxima.alt.za
  9391. Lines: 1
  9392. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  9393.  
  9394. cancel <45.335.uupcb@aecibbs.proxima.alt.za>
  9395.  
  9396. From news@columbia.edu Mon Sep 26 21:35:54 1994
  9397. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA05518
  9398.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 19:53:42 -0400
  9399. Received: by apakabar.cc.columbia.edu id AA25666
  9400.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 19:53:41 -0400
  9401. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!ulowell!aecibbs.proxima.alt.za!not-for-mail
  9402. From: john.jamulla@aecibbs.proxima.alt.za (John Jamulla)
  9403. Newsgroups: comp.protocols.kermit.misc
  9404. Message-Id: <-49.335.uupcb@aecibbs.proxima.alt.za>
  9405. Control: cancel <49.335.uupcb@aecibbs.proxima.alt.za>
  9406. Distribution: world
  9407. Organization: AECI BBS +27 11 608-1516
  9408. Reply-To: john.jamulla@aecibbs.proxima.alt.za (John Jamulla)
  9409. Subject: cmsg cancel <49.335.uupcb@aecibbs.proxima.alt.za>
  9410. Date: Mon, 26 Sep 1994 21:35:54 GMT
  9411. Approved: news@aecibbs.proxima.alt.za
  9412. Lines: 1
  9413. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  9414.  
  9415. cancel <49.335.uupcb@aecibbs.proxima.alt.za>
  9416.  
  9417. From news@columbia.edu Mon Sep 26 21:36:10 1994
  9418. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA05536
  9419.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 19:54:02 -0400
  9420. Received: by apakabar.cc.columbia.edu id AA25681
  9421.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 19:54:01 -0400
  9422. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!ulowell!aecibbs.proxima.alt.za!not-for-mail
  9423. From: frank.da.cruz@aecibbs.proxima.alt.za (Frank Da Cruz)
  9424. Newsgroups: comp.protocols.kermit.misc
  9425. Message-Id: <-56.335.uupcb@aecibbs.proxima.alt.za>
  9426. Control: cancel <56.335.uupcb@aecibbs.proxima.alt.za>
  9427. Distribution: world
  9428. Organization: AECI BBS +27 11 608-1516
  9429. Reply-To: frank.da.cruz@aecibbs.proxima.alt.za (Frank Da Cruz)
  9430. Subject: cmsg cancel <56.335.uupcb@aecibbs.proxima.alt.za>
  9431. Date: Mon, 26 Sep 1994 21:36:10 GMT
  9432. Approved: news@aecibbs.proxima.alt.za
  9433. Lines: 1
  9434. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  9435.  
  9436. cancel <56.335.uupcb@aecibbs.proxima.alt.za>
  9437.  
  9438. From news@columbia.edu Mon Sep 26 21:36:32 1994
  9439. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA05544
  9440.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 19:54:24 -0400
  9441. Received: by apakabar.cc.columbia.edu id AA25694
  9442.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 19:54:23 -0400
  9443. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!ulowell!aecibbs.proxima.alt.za!not-for-mail
  9444. From: gary.a..foley@aecibbs.proxima.alt.za (Gary A. Foley)
  9445. Newsgroups: comp.protocols.kermit.misc
  9446. Message-Id: <-52.335.uupcb@aecibbs.proxima.alt.za>
  9447. Control: cancel <52.335.uupcb@aecibbs.proxima.alt.za>
  9448. Distribution: world
  9449. Organization: AECI BBS +27 11 608-1516
  9450. Reply-To: gary.a..foley@aecibbs.proxima.alt.za (Gary A. Foley)
  9451. Subject: cmsg cancel <52.335.uupcb@aecibbs.proxima.alt.za>
  9452. Date: Mon, 26 Sep 1994 21:36:32 GMT
  9453. Approved: news@aecibbs.proxima.alt.za
  9454. Lines: 1
  9455. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  9456.  
  9457. cancel <52.335.uupcb@aecibbs.proxima.alt.za>
  9458.  
  9459. From news@columbia.edu Mon Sep 26 21:36:51 1994
  9460. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA05553
  9461.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 19:54:45 -0400
  9462. Received: by apakabar.cc.columbia.edu id AA25709
  9463.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 19:54:44 -0400
  9464. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!ulowell!aecibbs.proxima.alt.za!not-for-mail
  9465. From: earl.h..kinmonth@aecibbs.proxima.alt.za (Earl H. Kinmonth)
  9466. Newsgroups: comp.protocols.kermit.misc
  9467. Message-Id: <-54.335.uupcb@aecibbs.proxima.alt.za>
  9468. Control: cancel <54.335.uupcb@aecibbs.proxima.alt.za>
  9469. Distribution: world
  9470. Organization: AECI BBS +27 11 608-1516
  9471. Reply-To: earl.h..kinmonth@aecibbs.proxima.alt.za (Earl H. Kinmonth)
  9472. Subject: cmsg cancel <54.335.uupcb@aecibbs.proxima.alt.za>
  9473. Date: Mon, 26 Sep 1994 21:36:51 GMT
  9474. Approved: news@aecibbs.proxima.alt.za
  9475. Lines: 1
  9476. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  9477.  
  9478. cancel <54.335.uupcb@aecibbs.proxima.alt.za>
  9479.  
  9480. From news@columbia.edu Mon Sep 26 21:09:46 1994
  9481. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA05646
  9482.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 19:56:16 -0400
  9483. Received: by apakabar.cc.columbia.edu id AA25811
  9484.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 19:56:14 -0400
  9485. Newsgroups: comp.protocols.kermit.misc
  9486. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!gatech!psuvax1!hsdndev!cfanews!cfa0!chandler
  9487. From: chandler@cfa0.harvard.edu (John Chandler)
  9488. Subject: Re: When not "set file type binary" always?
  9489. Message-Id: <Cwr9GB.67y@cfanews.harvard.edu>
  9490. Sender: news@cfanews.harvard.edu
  9491. Organization: Smithsonian Astrophysical Observatory, Cambridge, MA, USA
  9492. X-Newsreader: TIN [version 1.2 PL0]
  9493. References: <362e3r$jef@news.CCIT.Arizona.EDU>
  9494. Date: Mon, 26 Sep 1994 21:09:46 GMT
  9495. Lines: 17
  9496. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  9497.  
  9498. In article <362e3r$jef@news.CCIT.Arizona.EDU> jjr@mipl.ece.arizona.edu (Jeffrey J. Rodriguez) writes:
  9499.  
  9500. :    Why not always do "set file type binary"?
  9501. :    Is there any reason to use text mode?
  9502. :    Binary mode seems to work fine for all types of files.
  9503. :    (I have the same question regarding ftp.)
  9504. :    Why is there a text mode at all?
  9505.  
  9506. When you settle into one way of doing things, it is easy to forget that other
  9507. ways exist.  Binary file transfers may work fine for all files in one context,
  9508. but the means of representing text vary widely in the computer world.  The
  9509. most obvious demonstration of the need for text mode is the existence of
  9510. many different types of character codes, ranging from 7-bit ASCII to 7-bit
  9511. ISO-646-with-nationals to 8-bit ISO-8859/x to 16-bit ISO-10646, not to
  9512. mention EBCDIC.  Somebody has to do the translation.
  9513. --
  9514. John F. Chandler             chandler@cfa.harvard.edu
  9515.  
  9516. From news@columbia.edu Mon Sep 26 22:59:18 1994
  9517. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA06697
  9518.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 20:15:16 -0400
  9519. Received: by apakabar.cc.columbia.edu id AA27154
  9520.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 20:15:14 -0400
  9521. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!europa.eng.gtefsd.com!ulowell!simtel.coast.net!w8sdz
  9522. From: w8sdz@SimTel.Coast.NET (Keith Petersen)
  9523. Newsgroups: comp.protocols.kermit.misc,comp.archives.msdos.d
  9524. Subject: Re: FTP for Current MS-DOS Kermit?
  9525. Message-Id: <9409262259.AA28683@SimTel.Coast.NET>
  9526. Date: Mon, 26 Sep 1994 22:59:18 GMT
  9527. Organization: SimTel, the Coast to Coast Software Repository (tm)
  9528. Followup-To: comp.protocols.kermit.misc
  9529. References: <367c7g$cdg@apakabar.cc.columbia.edu>
  9530. Lines: 49
  9531. Xref: news.columbia.edu comp.protocols.kermit.misc:231 comp.archives.msdos.d:8806
  9532. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  9533.  
  9534. fdc@fdc.cc.columbia.edu (Frank da Cruz) writes:
  9535. >w8sdz@SimTel.Coast.NET (Keith Petersen)  writes:
  9536. >> The official ftp site for Kermit is kermit.columbia.edu, however, the
  9537. >> latest MS-Kermit is also available - along with many support programs
  9538. >> and information files - from SimTel.
  9539. >[...]
  9540. >Thanks Keith, but again, readers are cautioned that the ONLY site on
  9541. >the Internet that they should get Kermit software from is
  9542. >kermit.columbia.edu.  We who write and support Kermit software have
  9543. >no way of knowing what is on the many mirror sites -- the files might
  9544. >(or might not) be out of date, altered, incomplete, etc.
  9545.  
  9546. MS-Kermit, in its latest versions, has been on SimTel for many years.
  9547. This is the first complaint I've seen about SimTel offering it.
  9548.  
  9549. >> CD-ROM copies of the entire MS-DOS collection (including Windows) are
  9550. >> available from Coast to Coast Telecommunications, Inc...
  9551. >>
  9552. >Kermit software should not be on these CD-ROMs.  Once again, it creates
  9553. >two big problems for the Kermit effort: it starves us of the income we
  9554. >need to continue our work, and it creates a big support problem for us
  9555. >since (a) the software on these CD-ROMs might be out of date, changed,
  9556. >and/or incomplete, and (b) it is distributed without the manual.
  9557.  
  9558. SimTel's policy is:
  9559.  
  9560.   Programs submitted to the SimTel collection may appear on CD-ROMs
  9561.   offered by several vendors.  If the program submitted should not
  9562.   be distributed this way, or has restrictions on such distribution,
  9563.   it will not be accepted.
  9564.  
  9565. I am not aware of any Kermit documentation which prohibits or limits
  9566. CD-ROM distribution of the program.  MS-Kermit has been on every SimTel
  9567. CD-ROM since the first one was released several years ago.  If Columbia
  9568. insists on asserting this prohibition it means that MS-Kermit and its
  9569. support files will have to be removed from the SimTel collection.
  9570.  
  9571. In my opinion removing MS-Kermit would be a disservice to your user
  9572. community since the SimTel collection is more widely distributed than
  9573. Columbia's.  It is mirrored in more than 33 countries of the world
  9574. and the CD-ROMs provide a means to make it available in many other
  9575. countries which have no Internet service.
  9576.  
  9577. Keith
  9578. --
  9579. Keith Petersen
  9580. General Manager of SimTel, the Coast to Coast Software Repository (tm)
  9581. Internet: w8sdz@SimTel.Coast.NET    or      w8sdz@Vela.ACS.Oakland.Edu
  9582. Uucp: uunet!umich!vela!w8sdz                     BITNET: w8sdz@OAKLAND
  9583.  
  9584. From news@columbia.edu Mon Sep 26 21:17:42 1994
  9585. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA07892
  9586.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 20:35:30 -0400
  9587. Received: by apakabar.cc.columbia.edu id AA28473
  9588.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 20:35:28 -0400
  9589. Newsgroups: comp.protocols.kermit.misc
  9590. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!news.sprintlink.net!uunet!psinntp!isc-newsserver!ultb!sxs1105
  9591. From: sxs1105@ultb.isc.rit.edu (S.X. Srivastav )
  9592. Subject: Re: [HELP] Slow Kermit Transfer ?!
  9593. Message-Id: <1994Sep26.211742.1959@ultb.isc.rit.edu>
  9594. Sender: news@ultb.isc.rit.edu (USENET News System)
  9595. Nntp-Posting-Host: ultb-gw.isc.rit.edu
  9596. Organization: Rochester Institute of Technology
  9597. References: <35jrgsINNdq2@newsman.csu.murdoch.edu.au> <35kfee$4f0@heron.rsmas.miami.edu>
  9598. Date: Mon, 26 Sep 1994 21:17:42 GMT
  9599. Lines: 31
  9600. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  9601.  
  9602. In article <35kfee$4f0@heron.rsmas.miami.edu> spindler@heron.rsmas.miami.edu (todd spindler) writes:
  9603. >
  9604. >In article <35jrgsINNdq2@newsman.csu.murdoch.edu.au>, anson@csuvax1.csu.murdoch.edu.au (Binh Anson) writes:
  9605. >>
  9606. >>G'day,
  9607. >>
  9608. >>I used Kermit 3.13 for my PC, my modem has a speed of 14.4 K, but I found 
  9609. >>that the downloading rate from the mainframe to my PC was still very slow! 
  9610. >>I tried Telix with SZ (Z-Modem Protocol), and it was very fast compared to 
  9611. >>Kermit. Is there a way to accelerate Kermit transfer ?
  9612. >
  9613.  
  9614. My experience has been that Kermit offers "most excellent" terminal
  9615. emulation, but file transfer speeds are often quite low.  This is
  9616. despite my attempts to set the large packet lengths, using sliding
  9617. windows, and so on.  Although I have the latest official version of
  9618. Kermit, most of the other places that I dial into often have antique
  9619. versions of Kermit, and so I cannot get them configured as I would like to.
  9620.  
  9621. Although it is often pointed out that Z-modem is not very reliable, I
  9622. personally have not have any major problems with it.   I have used it on
  9623. a variety of systems.
  9624.  
  9625. So, now I use Kermit as my terminal emulation program, and then use
  9626. Z-modem (invoked from within Kermit) to do the file transfer.
  9627.  
  9628. Just my $.02.
  9629.  
  9630. Sanjeev
  9631.  
  9632.  
  9633.  
  9634. From news@columbia.edu Mon Sep 26 11:20:14 1994
  9635. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA09903
  9636.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 21:05:19 -0400
  9637. Received: by apakabar.cc.columbia.edu id AA00303
  9638.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 21:05:18 -0400
  9639. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  9640. From: jrd@cc.usu.edu (Joe Doupnik)
  9641. Newsgroups: comp.protocols.kermit.misc
  9642. Subject: Re: kermit packets past 9024 barrier??
  9643. Message-Id: <1994Sep26.172014.27900@cc.usu.edu>
  9644. Date: 26 Sep 94 17:20:14 MDT
  9645. References: <367e23$d01@news.iastate.edu>
  9646. Organization: Utah State University
  9647. Lines: 14
  9648. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  9649.  
  9650. In article <367e23$d01@news.iastate.edu>, tflynn@iastate.edu (Timothy John Flynn) writes:
  9651. > Any way to increase packet sizes past 9024??
  9652. > email preffered..
  9653. ---------
  9654.     Read up on Columbia Kermits, discover sliding windows. 31 window
  9655. slots times 9KB per slot/packet = 279KB of stuff to be held pending
  9656. acknowledgment. That's effectively a packet of that length, but really
  9657. the stream is as long as the file (since ACKs come back during sending
  9658. of current material and let new packets be added to the list). Sliding
  9659. windows in Kermit is the clever complicated kind, known as selective
  9660. repeat, where only the bad packets need to be resent.
  9661.     Joe D.
  9662.  
  9663. From news@columbia.edu Mon Sep 26 20:40:09 1994
  9664. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA10405
  9665.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 21:16:37 -0400
  9666. Received: by apakabar.cc.columbia.edu id AA01124
  9667.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 21:16:36 -0400
  9668. Newsgroups: comp.protocols.kermit.misc
  9669. Path: news.columbia.edu!panix!MathWorks.Com!yeshua.marcam.com!charnel.ecst.csuchico.edu!csusac!csus.edu!netcom.com!swheeler
  9670. From: swheeler@netcom.com (Sean Wheeler)
  9671. Subject: Problems with Kermit in PCPLUS for Windows
  9672. Message-Id: <swheelerCwr831.B4@netcom.com>
  9673. Organization: NETCOM On-line Communication Services (408 261-4700 guest)
  9674. X-Newsreader: TIN [version 1.2 PL1]
  9675. Date: Mon, 26 Sep 1994 20:40:09 GMT
  9676. Lines: 19
  9677. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  9678.  
  9679. I know this is not the procomm support area but I thought I would ask some
  9680. people who have real answers before trying to go to the Datastorm folks.  I
  9681. am using PCPLUS for Windows ver. 2.00 (I had the same problem with 1.01) and 
  9682. when I try to download files from our Unix box all I get is "UART Error"
  9683. messages from Procomm and no file transfer.  This happens in server as well as
  9684. standard send modes.
  9685.  
  9686. When I switch to MS-Kermit 3.13 everything works just fine.  BTW: I am using
  9687. C-Kermit 5A (189) on our Pyramid Unix box and our dial up connections require
  9688. S-7-1 comm params.
  9689.  
  9690. How do I need to configure the Unix end to properly transfer files to the
  9691. Procomm/Windows end?
  9692.  
  9693. --
  9694.  
  9695. Sean D. Wheeler                    
  9696. swheeler@netcom.com
  9697. sean.wheeler@ons.octel.com
  9698.  
  9699. From news@columbia.edu Mon Sep 26 11:11:34 1994
  9700. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA10570
  9701.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 21:20:20 -0400
  9702. Received: by apakabar.cc.columbia.edu id AA01312
  9703.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 21:20:18 -0400
  9704. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  9705. From: jrd@cc.usu.edu (Joe Doupnik)
  9706. Newsgroups: comp.protocols.kermit.misc
  9707. Subject: Re: Quoting 255 on Telnet Connections
  9708. Message-Id: <1994Sep26.171134.27898@cc.usu.edu>
  9709. Date: 26 Sep 94 17:11:34 MDT
  9710. References: <36761n$3ia@knot.queensu.ca>
  9711. Distribution: world
  9712. Organization: Utah State University
  9713. Lines: 47
  9714. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  9715.  
  9716. In article <36761n$3ia@knot.queensu.ca>, mike@ccs-sparc2post.QueensU.CA (Mike Smith) writes:
  9717. > The ckcker.upd file for 5A(190) Beta Sep 5/94 contains lots of very useful
  9718. > info on control character prefixing.  I have one question.  The document
  9719. > is very explicit about the need to quote 255 if a telnet server is involved
  9720. > in the communications path.  In my case, I have a CISCO telnet server
  9721. > in the path, I told C-Kermit 5A(189) to unquote 255 and it doesn't seem
  9722. > to matter.  The other end is MS-Kermit 3.13 which does not let me explicitly
  9723. > prefix or unprefix 255.  So, the questions are:
  9724. >    1. Is MS-Kermit 3.13 quoting 255 and that's why I don't see a problem?
  9725. >    2. Is it just that my tests don't illustrate the problem?  (I have a test
  9726. >       file that includes singles and doubles of all 256 character codes as
  9727. >       suggested in the .upd file.)  I've done binary uploads and downloads
  9728. >       successfully.
  9729. >    3. What does IAC stand for anyway?
  9730. > I could just quote 255 but I'd first like to understand why.
  9731. > P.S. To Joe D.  I found your comment about shiny toys perfectly acceptable and
  9732. > the suggestion that you should watch your tone ridiculous.  In my opinion
  9733. > you and Frank should be nominated for sainthood.
  9734. ------------
  9735.     Last first. Thanks Mike. I get pretty frazzled sometimes and it
  9736. takes charge of my keyboard and fingers.
  9737.     IAC, 255 quoting and all that jazz. A very good question to ask.
  9738. IAC is TCP/IP Telnet-speak for "Interpret As Command." Next question. Oh,
  9739. back up? Ok. Telnet has Options to negotiate in-line, both ways, and the
  9740. IAC (decimal 255) byte is the introducer of them, sort of like ESC in 
  9741. control sequences for terminals. The rules say if one wants 255 to go
  9742. through as data it must be doubled. But doing that means looking at every
  9743. byte when we really want to shove a big buffer at TCP to get performance.
  9744. So MSK simply declines to unprefix 255 in file transfers and thus avoids
  9745. the buffer scanning/restuffing problem. Also, the 7-bit version of this
  9746. is 127, aka DEL, which is subject to becoming 255 with some parity.
  9747.     To see some Options as they happen tell MSK to SET TCP DEBUG ON.
  9748.  
  9749.     Given the interest in the Internet Infobahn I suggest folks start
  9750. reading up on TCP/IP and related material, if you have a technical bent.
  9751. A visit to the bookstore is recommended, and with this recommendation
  9752. as defense you might be able to buy one of those nifty TCP/IP books(*)
  9753. without the family complaining.
  9754.     (*) One such good technical intro is Comer's three volume set of
  9755. "Internetworking with TCP/IP", and most people will be happy with just
  9756. volume 1. Brave souls may wish to pursue the prime references: the RFCs
  9757. available on the Internet from many sites (look at the dozens on Telnet).
  9758. These are technical details, not how to use books.
  9759.     Joe D.
  9760.  
  9761. From news@columbia.edu Tue Sep 27 02:49:43 1994
  9762. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA16172
  9763.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Sep 1994 23:32:53 -0400
  9764. Received: by apakabar.cc.columbia.edu id AA09044
  9765.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Sep 1994 23:32:49 -0400
  9766. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!EU.net!sunic!news.funet.fi!zippo.uwasa.fi!uwasa.fi!ts
  9767. From: ts@uwasa.fi (Timo Salmi)
  9768. Newsgroups: comp.archives.msdos.d,comp.protocols.kermit.misc
  9769. Subject: Re: FTP for Current MS-DOS Kermit?
  9770. Followup-To: comp.protocols.kermit.misc
  9771. Date: 27 Sep 1994 02:49:43 GMT
  9772. Organization: University of Vaasa
  9773. Lines: 24
  9774. Message-Id: <368187$ms3@zippo.uwasa.fi>
  9775. References: <367c7g$cdg@apakabar.cc.columbia.edu> <9409262259.AA28683@SimTel.Coast.NET>
  9776. Nntp-Posting-Host: uwasa.fi
  9777. Xref: news.columbia.edu comp.archives.msdos.d:8808 comp.protocols.kermit.misc:236
  9778. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  9779.  
  9780. In article <9409262259.AA28683@SimTel.Coast.NET> w8sdz@SimTel.Coast.NET (Keith Petersen) writes:
  9781. :fdc@fdc.cc.columbia.edu (Frank da Cruz) writes:
  9782. :>Thanks Keith, but again, readers are cautioned that the ONLY site on
  9783. :>the Internet that they should get Kermit software from is
  9784. :>kermit.columbia.edu.  We who write and support Kermit software have
  9785. :>no way of knowing what is on the many mirror sites -- the files might
  9786. :>(or might not) be out of date, altered, incomplete, etc.
  9787.  
  9788. Sorry to have to be blunt, Frank, but that is not a very nice thing
  9789. to say after all the work Keith and I have put over the years to
  9790. improve also the way MsKermit is distributed.  For example are you
  9791. aware that the more user-friendly format of MsKermit distribution
  9792. packages was instigated at the repeated requests of yours truly. 
  9793. Likewise, what you write includes an implied (even if I am sure
  9794. accidental) allegation about the integrity of SimTel and Garbo as
  9795. distributors. 
  9796.  
  9797.    All the best, Timo
  9798.  
  9799. ..................................................................
  9800. Prof. Timo Salmi      Co-moderator of comp.archives.msdos.announce
  9801. Moderating at garbo.uwasa.fi anonymous FTP  archives  128.214.87.1
  9802. Faculty of Accounting & Industrial Management; University of Vaasa
  9803. Internet: ts@uwasa.fi   BBS +(358)-61-3170972; FIN-65101,  Finland
  9804.  
  9805. From news@columbia.edu Tue Sep 27 06:46:51 1994
  9806. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA26462
  9807.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 27 Sep 1994 02:56:55 -0400
  9808. Received: by apakabar.cc.columbia.edu id AA16302
  9809.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 27 Sep 1994 02:56:54 -0400
  9810. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!europa.eng.gtefsd.com!ulowell!simtel.coast.net!msdos-ann-request
  9811. From: w8sdz@SimTel.Coast.NET (Keith Petersen)
  9812. Newsgroups: comp.archives.msdos.announce,comp.protocols.kermit.misc
  9813. Subject: Columbia University MS-Kermit files removed from SimTel
  9814. Message-Id: <9409270646.kp1130@SimTel.Coast.NET>
  9815. Date: Tue, 27 Sep 1994 06:46:51 GMT
  9816. Followup-To: comp.protocols.kermit.misc
  9817. Sender: msdos-ann-request@simtel.coast.net
  9818. Organization: SimTel, the Coast to Coast Software Repository (tm)
  9819. Approved: w8sdz@SimTel.Coast.NET
  9820. Lines: 34
  9821. Xref: news.columbia.edu comp.archives.msdos.announce:6834 comp.protocols.kermit.misc:237
  9822. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  9823.  
  9824. According to e-mail I received this evening it appears that Columbia
  9825. University now feels that SimTel should no longer distribute MS-Kermit.
  9826.  
  9827. SimTel's policy is:
  9828.  
  9829.   Programs submitted to the SimTel collection may appear on CD-ROMs
  9830.   offered by several vendors.  If the program submitted should not
  9831.   be distributed this way, or has restrictions on such distribution,
  9832.   it will not be accepted.
  9833.  
  9834. Quoting the copyright included with MS-Kermit:
  9835.  
  9836.   Copyright (C) 1985, 1993, Trustees of Columbia University in the City
  9837.   of New York.  The MS-DOS Kermit software may be reproduced and shared
  9838.   without restriction as long as this copyright notice is retained,
  9839.   except that it may not be licensed or sold for profit as a software
  9840.   product itself, and it may not be included in or distributed with
  9841.   commercial products or otherwise distributed by commercial concerns to
  9842.   their clients or customers without written permission of the Office of
  9843.   Kermit Development and Distribution, Columbia University.
  9844.  
  9845. Because of this restrictive distribution policy all MS-Kermit programs
  9846. and other associated files bearing the Columbia University copyright have
  9847. been removed from SimTel, the Coast to Coast Software Repository (tm).
  9848.  
  9849. Questions and comments should be sent to Columbia, *not* to SimTel.
  9850. The e-mail address is:  fdc@watsun.cc.columbia.edu (Frank da Cruz)
  9851.  
  9852. Keith
  9853. --
  9854. Keith Petersen
  9855. General Manager of SimTel, the Coast to Coast Software Repository (tm)
  9856. Internet: w8sdz@SimTel.Coast.NET    or      w8sdz@Vela.ACS.Oakland.Edu
  9857. Uucp: uunet!umich!vela!w8sdz                     BITNET: w8sdz@OAKLAND
  9858.  
  9859. From news@columbia.edu Mon Sep 26 14:48:12 1994
  9860. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA10461
  9861.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 27 Sep 1994 07:12:38 -0400
  9862. Received: by apakabar.cc.columbia.edu id AA21294
  9863.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 27 Sep 1994 07:12:35 -0400
  9864. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!swiss.ans.net!news.dfn.de!Germany.EU.net!EU.net!uunet!psinntp!newton.hartwick.edu!wisanr
  9865. From: wisanr@hartwick.edu (Dick Wisan)
  9866. Newsgroups: comp.protocols.kermit.misc
  9867. Subject: Can I call prtscn from a macro?
  9868. Message-Id: <1994Sep26.094812.1062@newton.hartwick.edu>
  9869. Date: 26 Sep 94 09:48:12 -0500
  9870. Organization: HARTWICK COLLEGE
  9871. Lines: 22
  9872. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  9873.  
  9874. I would like to turn printer logging on and off from macros.  You can
  9875. redirect the printer output to a file with SET PRINTER, and you can 
  9876. turn the printer on and off with the keystroke verb \Kprtscn, but I
  9877. can't find a way to do it from a macro, so I could turn it on from,
  9878. say, mscustom.ini.
  9879.  
  9880. Keystroke verbs don't seem to work in a macro: 
  9881.  
  9882.    define foo \Kprtscn
  9883.  
  9884. and neither does a key number:
  9885.  
  9886.    define foo \2329
  9887.  
  9888. Is there, perhaps, a way to press a or call a keystroke verb from
  9889. a macro?  I have Gianone's "Using MS-DOS-Kermit", 2nd ed.  If I've 
  9890. missed something, a page reference will do.
  9891.  
  9892. ------------------------------------------------------------------------
  9893. R. N. (Dick) Wisan  - Email: internet WISANR@hartwick.edu
  9894.                     - Snail: 37 Clinton Street, Oneonta NY 13820, U.S.A.
  9895.                     - Just your opinion, please, ma'am: No fax.
  9896.  
  9897. From news@columbia.edu Tue Sep 27 11:10:08 1994
  9898. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA21952
  9899.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 27 Sep 1994 07:25:25 -0400
  9900. Received: by apakabar.cc.columbia.edu id AA21656
  9901.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 27 Sep 1994 07:25:23 -0400
  9902. Newsgroups: comp.protocols.kermit.misc
  9903. Path: news.columbia.edu!panix!MathWorks.Com!news.duke.edu!eff!usenet.ins.cwru.edu!news.csuohio.edu!trans!cowboy
  9904. From: cowboy@trans.csuohio.edu (Joe Rosenfeld)
  9905. Subject: Re: Kermit And FTP
  9906. Message-Id: <1994Sep27.111008.5402@news.csuohio.edu>
  9907. Sender: news@news.csuohio.edu (USENET News System)
  9908. Organization: Cleveland State University
  9909. X-Newsreader: TIN [version 1.2 PL2]
  9910. References: <35abck$6gc@louie.udel.edu> <35d5gi$6lm@chopin.udel.edu> <35kks2$r5u@strauss.udel.edu> <35poo3$pho@apakabar.cc.columbia.edu>
  9911. Date: Tue, 27 Sep 1994 11:10:08 GMT
  9912. Lines: 16
  9913. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  9914.  
  9915. Maxwell E Evarts (evarts@watsun.cc.columbia.edu) wrote:
  9916. : >Ah, but by using tnglass, I am limited to one connection.  If I use
  9917. : >Kermit in raw TCPIP mode, I can get multiple connections, and better
  9918. : >throughput.  Plus, if I shell to dos, I have more room to work with.
  9919. : >The only thing I'm looking for is a way to get better file transer
  9920. : >performance by using ftp instead, without having to give up any of the
  9921. : >goodies that I prefer to use kermit for.
  9922.  
  9923. : Unfortunately, the ETHDRV driver that PC/TCP loads owns the board, as it
  9924. : sounds like you already understand.  Here's a clip from the the
  9925. : MS-Kermit "beware" file that explains indicates PKTMUX as a possible
  9926. : solution for the brave (or foolhardy :-) :
  9927.  
  9928. This works for me, using pktmux.  It is worth the try.
  9929.  
  9930. Cowboy
  9931.  
  9932. From news@columbia.edu Tue Sep 27 13:37:43 1994
  9933. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA09629
  9934.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 27 Sep 1994 09:37:54 -0400
  9935. Received: by apakabar.cc.columbia.edu id AA27135
  9936.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 27 Sep 1994 09:37:52 -0400
  9937. Path: news.columbia.edu!usenet
  9938. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  9939. Newsgroups: comp.protocols.kermit.misc
  9940. Subject: Re: FTP for Current MS-DOS Kermit?
  9941. Date: 27 Sep 1994 13:37:43 GMT
  9942. Organization: Columbia University
  9943. Lines: 112
  9944. Distribution: World
  9945. Message-Id: <369777$qfs@apakabar.cc.columbia.edu>
  9946. References: <368187$ms3@zippo.uwasa.fi>
  9947. Nntp-Posting-Host: fdc.cc.columbia.edu
  9948. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  9949.  
  9950. In article <368187$ms3@zippo.uwasa.fi> ts@uwasa.fi (Timo Salmi) writes:
  9951. > In article <9409262259.AA28683@SimTel.Coast.NET> w8sdz@SimTel.Coast.NET
  9952. > (Keith Petersen) writes:
  9953. > :fdc@fdc.cc.columbia.edu (Frank da Cruz) writes:
  9954. > :>Thanks Keith, but again, readers are cautioned that the ONLY site on
  9955. > :>the Internet that they should get Kermit software from is
  9956. > :>kermit.columbia.edu.  We who write and support Kermit software have
  9957. > :>no way of knowing what is on the many mirror sites -- the files might
  9958. > :>(or might not) be out of date, altered, incomplete, etc.
  9959. > Sorry to have to be blunt, Frank, but that is not a very nice thing
  9960. > to say after all the work Keith and I have put over the years to
  9961. > improve also the way MsKermit is distributed.  For example are you
  9962. > aware that the more user-friendly format of MsKermit distribution
  9963. > packages was instigated at the repeated requests of yours truly. 
  9964. > Likewise, what you write includes an implied (even if I am sure
  9965. > accidental) allegation about the integrity of SimTel and Garbo as
  9966. > distributors. 
  9967. Sorry, no slur intended.
  9968.  
  9969. Listen folks, this is a sensitive topic, and I'll try to explain our
  9970. position as clearly as possible.
  9971.  
  9972. The Kermit effort continues because it is centrally coordinated.  In the
  9973. development and maintenance of any protocol -- Kermit, XYZmodem, TCP/IP,
  9974. ISO OSI, you name it, standards must be set and to some degree enforced,
  9975. and therefore there must be a centralized keeper and setter of standards.
  9976. Otherwise, incompatible versions of Kermit would sprout up and they would
  9977. not be able to interoperate -- similar to the situation with the many
  9978. variants of Xmodem in the late 70s and early 80s.
  9979.  
  9980. Now the Kermit file transfer protocol, no matter how well defined, would
  9981. be of little use if it were not implemented in software programs.  And the
  9982. software programs would be of little use if they did not also offer all
  9983. the other features that one expects to find in communication software:
  9984. terminal emulation, script programming, etc.
  9985.  
  9986. Who writes these programs?  Who ensures that the software has implemented
  9987. the Kermit protocol correctly?  Who writes the documentation?  Who
  9988. provides technical support?  Real people.  And it's a lot of work.  At
  9989. Columbia University, we have a small staff devoted to these jobs.  Who
  9990. pays their salaries?  Who pays for the equipment, service contracts, etc?
  9991.  
  9992. Answer: every last penny comes from whatever income we can generate
  9993. through mail-order software distribution fees and book sales, plus the
  9994. occasional donation.  There aren't any deep-pockets foundations paying us
  9995. to write, document, and support software for you.  It's not shareware with
  9996. nag screens hounding you send money.  It's not shrink-wrapped commercial
  9997. software you have to buy in a store.  We try to support ourselves in the
  9998. way that is least painful for our user community.  But like it or not, we
  9999. do have to support ourselves.
  10000.  
  10001. The current controversy -- and this is not the only instance of it -- is
  10002. whether companies that make and sell -- or even give away -- CD-ROMs
  10003. should be allowed to include Kermit software on them.  Clearly there are
  10004. good and bad aspects to this.  On the good side, consumers get vast
  10005. amounts of software dirt cheap, which, in a short-sighted way, is good for
  10006. them.  On the bad side, the makers of these CD-ROMs, can sell them for
  10007. less than we charge for doing the same thing, e.g. sending Kermit software
  10008. out on diskette, tape, or cartridge.  Why?  Because we not only distribute
  10009. the software, we also write it, document it, and support it, day after
  10010. day, year after year.
  10011.  
  10012. When Kermit software is distributed on CD-ROMs, it takes away income from
  10013. us and at the same time adds to our workload.  People who receive Kermit
  10014. software in this way do not also receive the appropriate manuals, and so
  10015. they call us up or send email or letters asking us to explain to them how
  10016. to use the software.  We get hundreds of such support calls every day and
  10017. an ever-increasing rate.  Less money for more work.
  10018.  
  10019. Do you see where this trend leads when left unchecked?  The developers
  10020. have no time to develop, the tech support people are expected to "read the
  10021. manual" to users from sunup to sundown, progress grinds to a halt, and
  10022. finally everybody loses their job because there is no more income and the
  10023. Kermit effort dissolves.
  10024.  
  10025. So, once again, No: you can't put Kermit software on your CD-ROMs without
  10026. our written permission.  Much of the software that is on these CD-ROMs is
  10027. either written by students, who then go on to a real job since they have
  10028. to eat, or written by grant-sponsored efforts at universities.  Well, we
  10029. are not sponsored, but we are in this for the long haul.  We would like to
  10030. keep supplying you with Kermit software in the long term, and keep it up
  10031. to date with the rapidly changing requirements of new technologies.  That
  10032. requires full-time, responsible people.
  10033.  
  10034. What about FTP sites?  Nobody is saying you can't put Kermit software out
  10035. for FTP.  But -- and this applies to CD-ROMs too -- we can't police
  10036. thousands of FTP sites to ensure that their Kermit software is (a) up to
  10037. date, (b) complete, (c) unaltered, and (d) consistent.  We spend a huge
  10038. amount of time helping people whose problems are caused precisely because
  10039. they retrieved Kermit software from someplace else and the files were out
  10040. of date, incomplete, etc.
  10041.  
  10042. I'm absolutely not running down Keith, Timo, nor the many others who
  10043. collect software and put it on CD-ROMs (or FTP sites) as a public service.
  10044. Nor even the entrepeneurs who see this as a way of making a quick buck.
  10045. But think about it -- if you like this software and you want it to keep up
  10046. with the times, you have to do something to help support the people who
  10047. work long hard hours to bring it to you.
  10048.  
  10049. Bottom line: It's our software, it bears our copyright, we did all the
  10050. work, and we get to set the terms for its distribution.  The terms are
  10051. reasonable given the world and times in which we live.  There is no point
  10052. cluttering up the newsgroups (again) with a longwinded and acrimonious
  10053. debate on the topic.  We provide you with good software, good tech
  10054. support, good documentation, and most of you don't pay a penny for it.
  10055. If we made more money, we'd provide even better service: faster development,
  10056. more tech support people.  We're doing our best to strike a reasonable
  10057. balance.
  10058.  
  10059. - Frank
  10060.  
  10061. From news@columbia.edu Tue Sep 27 13:14:13 1994
  10062. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA11203
  10063.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 27 Sep 1994 10:06:04 -0400
  10064. Received: by apakabar.cc.columbia.edu id AA28881
  10065.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 27 Sep 1994 10:06:02 -0400
  10066. Newsgroups: comp.protocols.kermit.misc
  10067. Path: news.columbia.edu!panix!MathWorks.Com!yeshua.marcam.com!charnel.ecst.csuchico.edu!csusac!csus.edu!netcom.com!jhurwit
  10068. From: jhurwit@netcom.com (Jeffrey Hurwit)
  10069. Subject: Re: [HELP] Slow Kermit Transfer ?!
  10070. Message-Id: <jhurwitCwsI3p.3EG@netcom.com>
  10071. Organization: Organization?  What organization?
  10072. X-Newsreader: TIN [version 1.2 PL1]
  10073. References: <35jrgsINNdq2@newsman.csu.murdoch.edu.au> <35kfee$4f0@heron.rsmas.miami.edu> <1994Sep26.211742.1959@ultb.isc.rit.edu>
  10074. Date: Tue, 27 Sep 1994 13:14:13 GMT
  10075. Lines: 26
  10076. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  10077.  
  10078. In article <1994Sep26.211742.1959@ultb.isc.rit.edu>, 
  10079. S.X. Srivastav (sxs1105@ultb.isc.rit.edu) wrote:
  10080.  
  10081. >My experience has been that Kermit offers "most excellent" terminal
  10082. >emulation, but file transfer speeds are often quite low.  This is
  10083. >despite my attempts to set the large packet lengths, using sliding
  10084. >windows, and so on.  Although I have the latest official version of
  10085. >Kermit, most of the other places that I dial into often have antique
  10086. >versions of Kermit, and so I cannot get them configured as I would like to.
  10087.  
  10088.     That brings up a good point:  The right software for each
  10089.     situation.  If you have a mainframe or Unix shell account, chances
  10090.     are you have some version of C-Kermit or IBM mainframe Kermit which
  10091.     you can tune to your needs.  I don't use BBS's very much, but the
  10092.     few I've dialed into have Kermit implemented as a choice in their
  10093.     menu system, where it's inaccessible to the user for configuration. 
  10094.     If you're lucky, "super-Kermit" or some such will be a choice, in
  10095.     which case you'll get sliding windows (but still the standard
  10096.     packet size of 92).  In that case, z-modem might be a better choice
  10097.     simply because of how it's set up.  On the other hand, more and
  10098.     more BBS's are connecting up to the Internet.  Many of these will
  10099.     accept telnet sessions, but don't have ftp.  Kermit can be used to
  10100.     telnet to these and then transfer files through the telnet
  10101.     connection.
  10102.  
  10103.                         Jeff
  10104.  
  10105. From news@columbia.edu Tue Sep 27 13:38:59 1994
  10106. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA13744
  10107.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 27 Sep 1994 10:41:14 -0400
  10108. Received: by apakabar.cc.columbia.edu id AA01342
  10109.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 27 Sep 1994 10:41:13 -0400
  10110. Newsgroups: comp.protocols.kermit.misc
  10111. Path: news.columbia.edu!panix!MathWorks.Com!yeshua.marcam.com!charnel.ecst.csuchico.edu!csusac!csus.edu!netcom.com!jhurwit
  10112. From: jhurwit@netcom.com (Jeffrey Hurwit)
  10113. Subject: Re: converting kermit downloads to ascii or WordPerf.
  10114. Message-Id: <jhurwitCwsJ8z.4Ax@netcom.com>
  10115. Organization: Organization?  What organization?
  10116. X-Newsreader: TIN [version 1.2 PL1]
  10117. References: <21SEP199412144358@pavo.concordia.ca>
  10118. Date: Tue, 27 Sep 1994 13:38:59 GMT
  10119. Lines: 26
  10120. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  10121.  
  10122. In article <21SEP199412144358@pavo.concordia.ca>, 
  10123. YATES, JODYE (j_yates@pavo.concordia.ca) wrote:
  10124.  
  10125. >Hi there. I use Kermit to download text files from somewhere. The problem is
  10126. >that when I load the files with a simple text editor there are hard returns
  10127. >inserted at the end of each line. Moreover, WordPerfect 6 doesn't even
  10128. >recognize the file format when I try to convert these files and when I
  10129. >load them straight into WP, there are hard returns all over the place, so
  10130. >the text looks awful. My question therefore is how do I convert kermit
  10131. >downloads (I think they are 7-bit) to either standard ascii or to WP?
  10132.  
  10133.     As the previous follow-ups show, there's some confusion about your
  10134.     question.  If the 'text files from somewhere' are in WordPerfect
  10135.     format, use binary modes for all your file transfers.  In the event
  10136.     that they are plain ascii (more likely), use ftp in ascii mode
  10137.     (default), and Kermit in text mode (also default).  WordPerfect can
  10138.     import ascii and convert it to WP format.  I, too, am not familiar
  10139.     with WP 6.0, but the functions you want (from WP 5.1) are text
  10140.     in/out, DOS text, and then you should have a choice: Preserve the
  10141.     carriage returns and turn them into WP hard returns, or turn the
  10142.     CR's into soft returns if they approach the right margin and format
  10143.     the text for the margins set.
  10144.  
  10145.     Hope that helps.
  10146.  
  10147.                         Jeff
  10148.  
  10149. From news@columbia.edu Tue Sep 27 14:12:55 1994
  10150. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA17605
  10151.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 27 Sep 1994 11:30:46 -0400
  10152. Received: by apakabar.cc.columbia.edu id AA04908
  10153.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 27 Sep 1994 11:30:43 -0400
  10154. Newsgroups: comp.protocols.kermit.misc
  10155. Path: news.columbia.edu!panix!MathWorks.Com!yeshua.marcam.com!charnel.ecst.csuchico.edu!csusac!csus.edu!netcom.com!jhurwit
  10156. From: jhurwit@netcom.com (Jeffrey Hurwit)
  10157. Subject: Re: [?] MS-Kermit 3.13 and SLIP8250 11.7
  10158. Message-Id: <jhurwitCwsKtJ.5ut@netcom.com>
  10159. Organization: Organization?  What organization?
  10160. X-Newsreader: TIN [version 1.2 PL1]
  10161. References: <35qjl6$1ua@herald.indirect.com>
  10162. Date: Tue, 27 Sep 1994 14:12:55 GMT
  10163. Lines: 21
  10164. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  10165.  
  10166. In article <35qjl6$1ua@herald.indirect.com>, 
  10167. Jim Monty (monty@indirect.com) wrote:
  10168.  
  10169. >Someone asked this question recently in comp.protocols.tcp-ip.ibmpc, but 
  10170. >it was never answered:  Why doesn't version 11.7 of the Crynwyr SLIP 
  10171. >packet driver SLIP8250 work with MS-Kermit 3.13?
  10172.  
  10173.     [....]
  10174.  
  10175. >What's different about the newer 
  10176. >version of the packet driver?  I'd like to be able to use it instead of 
  10177. >the older version because its -u option allows me to unload it from 
  10178. >memory when I'm through with it; version 9.6 lacks this capability.
  10179.  
  10180.     One possible solution is that, assuming this driver works like your
  10181.     standard TSR, you could use v.9.6, and a TSR utility to remove it. 
  10182.     Have a look at oak.oakland.edu:/SimTel/msdos/tsrutil (directory). 
  10183.     Sam Ko, author of the list of Useful Shareware and PD Software at
  10184.     ftp sites recommends tsrcom35.zip.
  10185.  
  10186.                         Jeff
  10187.  
  10188. From news@columbia.edu Tue Sep 27 15:25:27 1994
  10189. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA19020
  10190.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 27 Sep 1994 11:46:08 -0400
  10191. Received: by apakabar.cc.columbia.edu id AA05731
  10192.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 27 Sep 1994 11:46:06 -0400
  10193. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!library.ucla.edu!news.mic.ucla.edu!unixg.ubc.ca!quartz.ucs.ualberta.ca!gpu!bpolvi
  10194. From: bpolvi@gpu.srv.ualberta.ca (Bernice Polvi)
  10195. Newsgroups: comp.protocols.kermit.misc
  10196. Subject: WFWG/Kermit BIOS errors?
  10197. Date: 27 Sep 1994 15:25:27 GMT
  10198. Organization: University of Alberta
  10199. Lines: 16
  10200. Message-Id: <369dh7$cup@quartz.ucs.ualberta.ca>
  10201. Nntp-Posting-Host: gpu.srv.ualberta.ca
  10202. X-Newsreader: TIN [version 1.2 PL2]
  10203. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  10204.  
  10205. FRUSTRATED by the following problem, Any ideas would be appreciated.
  10206.  
  10207. When using KERMIT from within WFWG's, many of our users get the following 
  10208. error message when attempting to establish a MF serial connection or initiate
  10209. a file transfer:
  10210.  
  10211. ?WARNING: UNKNOWN HARDWARE for Port. 
  10212.           Using the BIOS as BIOS2 unimplemented speed.
  10213.  
  10214. The windows session must then be terminated and started again. 
  10215.  
  10216. If your certain you have a solution please post for all to read, if
  10217. your uncertain please Email me, I'd welcome any ideas.
  10218.  
  10219. Thanks inadvance!
  10220.  
  10221.  
  10222. From news@columbia.edu Tue Sep 27 14:24:03 1994
  10223. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA23898
  10224.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 27 Sep 1994 12:49:31 -0400
  10225. Received: by apakabar.cc.columbia.edu id AA11752
  10226.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 27 Sep 1994 12:49:28 -0400
  10227. Path: news.columbia.edu!panix!MathWorks.Com!news.kei.com!ddsw1!not-for-mail
  10228. From: les@MCS.COM (Leslie Mikesell)
  10229. Newsgroups: comp.protocols.kermit.misc
  10230. Subject: Re: Columbia University MS-Kermit files removed from SimTel
  10231. Date: 27 Sep 1994 09:24:03 -0500
  10232. Organization: /usr/lib/news/organi[sz]ation
  10233. Lines: 10
  10234. Message-Id: <3699u3$fe9@Venus.mcs.com>
  10235. References: <9409270646.kp1130@simtel.coast.net>
  10236. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  10237.  
  10238. In article <9409270646.kp1130@simtel.coast.net>,
  10239. Keith Petersen <w8sdz@SimTel.Coast.NET> wrote:
  10240. >According to e-mail I received this evening it appears that Columbia
  10241. >University now feels that SimTel should no longer distribute MS-Kermit.
  10242.  
  10243. Does this mean that it is time for someone else to start work on
  10244. a file transfer program that *can* be distributed freely?
  10245.  
  10246. Les Mikesell
  10247.   les@mcs.com
  10248.  
  10249. From news@columbia.edu Tue Sep 27 15:45:27 1994
  10250. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA23967
  10251.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 27 Sep 1994 12:50:32 -0400
  10252. Received: by apakabar.cc.columbia.edu id AA11834
  10253.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 27 Sep 1994 12:50:31 -0400
  10254. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!ulowell!vtc.tacom.army.mil!news1.oakland.edu!news.nd.edu!purcell!yfaitaki
  10255. From: yannis@columbia.edu (yannis)
  10256. Newsgroups: comp.protocols.kermit.misc
  10257. Subject: winsock.dll
  10258. Date: 27 Sep 1994 15:45:27 GMT
  10259. Organization: University of Notre Dame
  10260. Lines: 26
  10261. Distribution: world
  10262. Message-Id: <369emn$3gd@news.nd.edu>
  10263. Reply-To: yfaitaki@purcell.helios.nd.edu
  10264. Nntp-Posting-Host: purcell.helios.nd.edu
  10265. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  10266.  
  10267. Hi,
  10268. I know this is not the best group to post this question,
  10269. but you guys out there seem to know a lot about modems and
  10270. protocols anyway ;-)
  10271.   I recently got winsock.dll from a friend and I have no
  10272. idea what to do with it...
  10273. any references on the subject?
  10274.  
  10275.  
  10276. Thanks in advance and sorry about this "improper" posting!
  10277.  
  10278. Yannis
  10279.  
  10280.  
  10281.  
  10282. e-mail:yfaitaki@elgreco.helios.nd.edu
  10283.  
  10284. ---
  10285. -------------------------------------
  10286. Birth of terror
  10287. death of much more
  10288. I'm the slave of fear, my captor
  10289. Never warnings ...
  10290.  
  10291. Metallica - The frayed ends of sanity
  10292.  
  10293.  
  10294. From news@columbia.edu Tue Sep 27 17:35:44 1994
  10295. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA28444
  10296.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 27 Sep 1994 13:54:29 -0400
  10297. Received: by apakabar.cc.columbia.edu id AA28684
  10298.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 27 Sep 1994 13:54:26 -0400
  10299. Path: news.columbia.edu!usenet
  10300. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  10301. Newsgroups: comp.protocols.kermit.misc
  10302. Subject: Re: Columbia University MS-Kermit files removed from SimTel
  10303. Date: 27 Sep 1994 17:35:44 GMT
  10304. Organization: Columbia University
  10305. Lines: 19
  10306. Distribution: World
  10307. Message-Id: <369l5g$jt7@apakabar.cc.columbia.edu>
  10308. References: <3699u3$fe9@Venus.mcs.com>
  10309. Nntp-Posting-Host: fdc.cc.columbia.edu
  10310. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  10311.  
  10312. In article <3699u3$fe9@Venus.mcs.com> les@MCS.COM (Leslie Mikesell) writes:
  10313. > In article <9409270646.kp1130@simtel.coast.net>,
  10314. > Keith Petersen <w8sdz@SimTel.Coast.NET> wrote:
  10315. > >According to e-mail I received this evening it appears that Columbia
  10316. > >University now feels that SimTel should no longer distribute MS-Kermit.
  10317. > Does this mean that it is time for someone else to start work on
  10318. > a file transfer program that *can* be distributed freely?
  10319. Before this new newsgroup bursts into flames, why not let the parties
  10320. involved work things out amongst themselves.
  10321.  
  10322. Develop a new file transfer program that can be distributed freely?
  10323. Be my guest.  If it becomes as successful as Kermit is, you will soon
  10324. find yourself facing the same costs as we do and the need to either
  10325. meet them or go out of "business".
  10326.  
  10327. - Frank
  10328.  
  10329.  
  10330. From news@columbia.edu Tue Sep 27 17:53:53 1994
  10331. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA28451
  10332.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 27 Sep 1994 13:54:36 -0400
  10333. Received: by apakabar.cc.columbia.edu id AA28692
  10334.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 27 Sep 1994 13:54:31 -0400
  10335. Path: news.columbia.edu!usenet
  10336. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  10337. Newsgroups: comp.protocols.kermit.misc
  10338. Subject: Re: WFWG/Kermit BIOS errors?
  10339. Date: 27 Sep 1994 17:53:53 GMT
  10340. Organization: Columbia University
  10341. Lines: 14
  10342. Distribution: World
  10343. Message-Id: <369m7h$rt7@apakabar.cc.columbia.edu>
  10344. References: <369dh7$cup@quartz.ucs.ualberta.ca>
  10345. Nntp-Posting-Host: fdc.cc.columbia.edu
  10346. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  10347.  
  10348. In article <369dh7$cup@quartz.ucs.ualberta.ca> bpolvi@gpu.srv.ualberta.ca  
  10349. (Bernice Polvi) writes:
  10350. > FRUSTRATED by the following problem, Any ideas would be appreciated.
  10351. > When using KERMIT from within WFWG's, many of our users get the following 
  10352. > error message when attempting to establish a MF serial connection ...
  10353. >
  10354. Our accumulated knowledge about Windows for Workgroups 3.11 versus
  10355. MS-DOS Kermit was posted previously, and is also available via anonymous
  10356. ftp from kermit.columbia.edu, directory kermit/a, file mskwfw.doc.
  10357.  
  10358. - Frank
  10359. x
  10360. x
  10361. x
  10362.  
  10363. From news@columbia.edu Tue Sep 27 11:55:12 1994
  10364. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA00529
  10365.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 27 Sep 1994 14:20:43 -0400
  10366. Received: by apakabar.cc.columbia.edu id AA01343
  10367.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 27 Sep 1994 14:20:41 -0400
  10368. Newsgroups: comp.protocols.kermit.misc
  10369. Path: news.columbia.edu!panix!MathWorks.Com!solaris.cc.vt.edu!swiss.ans.net!europa.eng.gtefsd.com!library.ucla.edu!csulb.edu!csus.edu!netcom.com!jhurwit
  10370. From: jhurwit@netcom.com (Jeffrey Hurwit)
  10371. Subject: Re: Dumb question...
  10372. Message-Id: <jhurwitCwsEG1.wu@netcom.com>
  10373. Organization: Organization?  What organization?
  10374. X-Newsreader: TIN [version 1.2 PL1]
  10375. References: <35k8j5$mph@dsm6.dsmnet.com> <35ktea$8cn@apakabar.cc.columbia.edu>
  10376. Distribution: World
  10377. Date: Tue, 27 Sep 1994 11:55:12 GMT
  10378. Lines: 23
  10379. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  10380.  
  10381. In article <35ktea$8cn@apakabar.cc.columbia.edu>, 
  10382. Frank da Cruz (fdc@fdc.cc.columbia.edu) wrote:
  10383.  
  10384. >In article <35k8j5$mph@dsm6.dsmnet.com> rich@dsm1.dsmnet.com writes:
  10385. >> In article <35ghag$274@telerama.lm.com>, huzacec@telerama.lm.com writes:
  10386. >> > Can someone please tell me where I can FTP C-Kermit for DOS?
  10387. >>
  10388. >> Try Anonymous FTP from kermit.columbia.edu and read the file read.me
  10389. >> (P. 9 of "Using Ckermit" by Frank da Cruz and Christine M. Gianone)
  10390. >> 
  10391. >Actually, this might have been a trick question: There is no C-Kermit
  10392. >for DOS.
  10393.  
  10394.     Y'know what?  There ought to be...  I've been using C-Kermit on my
  10395.     Unix account for a while, now.  Though I don't use most of its
  10396.     features (I use it as a remote only), I've noticed in glancing
  10397.     through the docs that it has a more powerful script language, and
  10398.     some other features that MS-Kermit lacks.  I could use those
  10399.     features (especially the script language) on my PC.  What gives?
  10400.     DOS won't support them (it would figure :-/ )?  The expanded Kermit
  10401.     wouldn't run on a poor old XT with floppy drives like mine?
  10402.  
  10403.                         Jeff
  10404.  
  10405. From news@columbia.edu Tue Sep 27 18:30:39 1994
  10406. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA01305
  10407.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 27 Sep 1994 14:30:42 -0400
  10408. Received: by apakabar.cc.columbia.edu id AA02166
  10409.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 27 Sep 1994 14:30:40 -0400
  10410. Path: news.columbia.edu!usenet
  10411. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  10412. Newsgroups: comp.protocols.kermit.misc
  10413. Subject: Re: Dumb question...
  10414. Date: 27 Sep 1994 18:30:39 GMT
  10415. Organization: Columbia University
  10416. Lines: 34
  10417. Distribution: World
  10418. Message-Id: <369ocf$23k@apakabar.cc.columbia.edu>
  10419. References: <jhurwitCwsEG1.wu@netcom.com>
  10420. Nntp-Posting-Host: fdc.cc.columbia.edu
  10421. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  10422.  
  10423. In article <jhurwitCwsEG1.wu@netcom.com> jhurwit@netcom.com (Jeffrey Hurwit)  
  10424. writes:
  10425. > In article <35ktea$8cn@apakabar.cc.columbia.edu>, 
  10426. > Frank da Cruz (fdc@fdc.cc.columbia.edu) wrote:
  10427. > > > ...
  10428. > >Actually, this might have been a trick question: There is no C-Kermit
  10429. > >for DOS.
  10430. >     Y'know what?  There ought to be...  I've been using C-Kermit on my
  10431. >     Unix account for a while, now.  Though I don't use most of its
  10432. >     features (I use it as a remote only), I've noticed in glancing
  10433. >     through the docs that it has a more powerful script language, and
  10434. >     some other features that MS-Kermit lacks.  I could use those
  10435. >     features (especially the script language) on my PC.  What gives?
  10436. >     DOS won't support them (it would figure :-/ )?  The expanded Kermit
  10437. >     wouldn't run on a poor old XT with floppy drives like mine?
  10438. Well, aside from the obvious human-resource considerations we have
  10439. been reading about so much today (who is going to do the work???) we are
  10440. never going to be able to produce a C language version of Kermit for DOS
  10441. that is better than MS-DOS Kermit and that will still fit in memory.
  10442. MS-DOS Kermit is painstaking "hand crafted" to pack the most wollop into
  10443. the smallest amount of memory, and also to do all sorts of things at the
  10444. hardware level that simply not comfortable -- even possible -- in C.
  10445.  
  10446. C-Kermit is designed to run on real operating systems.  MS-DOS Kermit *is*
  10447. an operating system.
  10448.  
  10449. MS-DOS Kermit 3.14 will have many of the missing script programming features
  10450. added, in particular the \functions().  Hopefully we can get out from under
  10451. the great debates of who is entitled to what long enough to let us finish
  10452. getting this new release together.
  10453.  
  10454. - Frank
  10455.  
  10456. From news@columbia.edu Tue Sep 27 02:28:00 1994
  10457. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA05923
  10458.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 27 Sep 1994 15:30:30 -0400
  10459. Received: by apakabar.cc.columbia.edu id AA07267
  10460.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 27 Sep 1994 15:30:28 -0400
  10461. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  10462. From: jrd@cc.usu.edu (Joe Doupnik)
  10463. Newsgroups: comp.protocols.kermit.misc
  10464. Subject: Re: Can I call prtscn from a macro?
  10465. Message-Id: <1994Sep27.082800.27946@cc.usu.edu>
  10466. Date: 27 Sep 94 08:28:00 MDT
  10467. References: <1994Sep26.094812.1062@newton.hartwick.edu>
  10468. Organization: Utah State University
  10469. Lines: 12
  10470. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  10471.  
  10472. In article <1994Sep26.094812.1062@newton.hartwick.edu>, wisanr@newton.hartwick.edu (Dick Wisan) writes:
  10473. > I would like to turn printer logging on and off from macros.  You can
  10474. > redirect the printer output to a file with SET PRINTER, and you can 
  10475. > turn the printer on and off with the keystroke verb \Kprtscn, but I
  10476. > can't find a way to do it from a macro, so I could turn it on from,
  10477. > say, mscustom.ini.
  10478. -----------
  10479.     Can't do it. The printing you are discussing is occuring only within
  10480. Connect mode and the operations controlling it need to occur while that
  10481. particular terminal emulation session is being executed (versus being at
  10482. the Kermit prompt). 
  10483.     Joe D.
  10484.  
  10485. From news@columbia.edu Tue Sep 27 04:36:33 1994
  10486. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA05957
  10487.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 27 Sep 1994 15:31:00 -0400
  10488. Received: by apakabar.cc.columbia.edu id AA07293
  10489.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 27 Sep 1994 15:30:59 -0400
  10490. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  10491. From: jrd@cc.usu.edu (Joe Doupnik)
  10492. Newsgroups: comp.protocols.kermit.misc
  10493. Subject: Re: [?] MS-Kermit 3.13 and SLIP8250 11.7
  10494. Message-Id: <1994Sep27.103633.27960@cc.usu.edu>
  10495. Date: 27 Sep 94 10:36:33 MDT
  10496. References: <35qjl6$1ua@herald.indirect.com> <jhurwitCwsKtJ.5ut@netcom.com>
  10497. Organization: Utah State University
  10498. Lines: 30
  10499. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  10500.  
  10501. In article <jhurwitCwsKtJ.5ut@netcom.com>, jhurwit@netcom.com (Jeffrey Hurwit) writes:
  10502. > In article <35qjl6$1ua@herald.indirect.com>, 
  10503. > Jim Monty (monty@indirect.com) wrote:
  10504. >>Someone asked this question recently in comp.protocols.tcp-ip.ibmpc, but 
  10505. >>it was never answered:  Why doesn't version 11.7 of the Crynwyr SLIP 
  10506. >>packet driver SLIP8250 work with MS-Kermit 3.13?
  10507. >     [....]
  10508. >>What's different about the newer 
  10509. >>version of the packet driver?  I'd like to be able to use it instead of 
  10510. >>the older version because its -u option allows me to unload it from 
  10511. >>memory when I'm through with it; version 9.6 lacks this capability.
  10512. >     One possible solution is that, assuming this driver works like your
  10513. >     standard TSR, you could use v.9.6, and a TSR utility to remove it. 
  10514. >     Have a look at oak.oakland.edu:/SimTel/msdos/tsrutil (directory). 
  10515. >     Sam Ko, author of the list of Useful Shareware and PD Software at
  10516. >     ftp sites recommends tsrcom35.zip.
  10517. ---------------
  10518.     I answered this previously in this list. The Crynwr v11.x SLIP8250.COM
  10519. program has a mistake which eliminated a needed Packet Driver function. I told
  10520. Russ Nelson about it. In the meanwhile I suggest either using another SLIP
  10521. program or go back to the version 9.x material (my original rewrite of
  10522. SLIP8250.COM is tucked away in directory kermit on netlab2.usu.edu). Simtel
  10523. and similar popular ftp/bbs sites might have the older version, and its worth
  10524. a look.
  10525.     MSK version 3.14 has a workaround for this problem.
  10526.     Joe D.
  10527.  
  10528. From news@columbia.edu Tue Sep 27 20:47:07 1994
  10529. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA15209
  10530.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 27 Sep 1994 17:26:33 -0400
  10531. Received: by apakabar.cc.columbia.edu id AA17511
  10532.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 27 Sep 1994 17:26:12 -0400
  10533. Newsgroups: comp.protocols.kermit.misc
  10534. Path: news.columbia.edu!sol.ctr.columbia.edu!math.ohio-state.edu!cs.utexas.edu!convex!news.duke.edu!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!torn!nntp.cs.ubc.ca!news.UVic.CA!sol!klassen
  10535. From: klassen@sol.UVic.CA (Melvin Klassen)
  10536. Subject: Re: When not "set file type binary" always?
  10537. Message-Id: <1994Sep27.204707.889@sol.UVic.CA>
  10538. Sender: news@sol.UVic.CA
  10539. Nntp-Posting-Host: sol.uvic.ca
  10540. Organization: University of Victoria, Victoria B.C. CANADA
  10541. Date: Tue, 27 Sep 94 20:47:07 GMT
  10542. Lines: 10
  10543. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  10544.  
  10545. jjr@mipl.ece.arizona.edu (Jeffrey J. Rodriguez) writes:
  10546. > Why not always do "set file type binary"?
  10547. > Is there any reason to use text mode?
  10548. > Binary mode seems to work fine for all types of files.
  10549. > (I have the same question regarding ftp.)
  10550. > Why is there a text mode at all?
  10551.  
  10552. Because KERMIT runs on (at least) one "non-ASCII" piece of hardware,
  10553. the IBM mainframe.  On that platform, KERMIT has to compensate for
  10554. the multitudinous differences between EBCDIC and ASCII.
  10555.  
  10556. From news@columbia.edu Tue Sep 27 21:07:56 1994
  10557. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA18057
  10558.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 27 Sep 1994 17:52:30 -0400
  10559. Received: by apakabar.cc.columbia.edu id AA19751
  10560.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 27 Sep 1994 17:52:29 -0400
  10561. Newsgroups: comp.protocols.kermit.misc
  10562. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!yeshua.marcam.com!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!cs.utexas.edu!uunet!world!rbrass
  10563. From: rbrass@world.std.com (robert brass)
  10564. Subject: set speed command
  10565. Message-Id: <Cwt419.JsA@world.std.com>
  10566. Summary: Does set speed set the modem speed?
  10567. Keywords: speed
  10568. Organization: The World Public Access UNIX, Brookline, MA
  10569. Date: Tue, 27 Sep 1994 21:07:56 GMT
  10570. Lines: 8
  10571. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  10572.  
  10573. Hi,
  10574.     Does the set speed command set the modem speed or the 
  10575. terminal/line speed. I have an Octocom modem capable of 14400 but
  10576. there is no 14400 speed available in the set speed command. When I set it
  10577. to 19200 and dial a number, I get a message "can't change speed to 
  10578. 14400". How can I connect at 14400?
  10579.         Bob 
  10580.  
  10581.  
  10582. From news@columbia.edu Tue Sep 27 06:50:04 1994
  10583. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA18966
  10584.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 27 Sep 1994 18:03:51 -0400
  10585. Received: by apakabar.cc.columbia.edu id AA20708
  10586.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 27 Sep 1994 18:03:49 -0400
  10587. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!math.ohio-state.edu!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  10588. From: jrd@cc.usu.edu (Joe Doupnik)
  10589. Newsgroups: comp.protocols.kermit.misc
  10590. Subject: Re: Columbia University MS-Kermit files removed from SimTel
  10591. Message-Id: <1994Sep27.125004.27971@cc.usu.edu>
  10592. Date: 27 Sep 94 12:50:04 MDT
  10593. References: <9409270646.kp1130@simtel.coast.net> <3699u3$fe9@Venus.mcs.com>
  10594. Organization: Utah State University
  10595. Lines: 37
  10596. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  10597.  
  10598. In article <3699u3$fe9@Venus.mcs.com>, les@MCS.COM (Leslie Mikesell) writes:
  10599. > In article <9409270646.kp1130@simtel.coast.net>,
  10600. > Keith Petersen <w8sdz@SimTel.Coast.NET> wrote:
  10601. >>According to e-mail I received this evening it appears that Columbia
  10602. >>University now feels that SimTel should no longer distribute MS-Kermit.
  10603. > Does this mean that it is time for someone else to start work on
  10604. > a file transfer program that *can* be distributed freely?
  10605. > Les Mikesell
  10606. >   les@mcs.com
  10607. ----------
  10608.     If you wanted to, but it might be a good idea to reread the 
  10609. Columiba copyright notice to discover what's going on. The notice
  10610. says, amongst other things, a person/organization can't redistribute
  10611. the Columbia material for profit etc without prior clearance. That
  10612. seems to be very reasonable to me.
  10613.     Guess what's lacking about the Simtel CDROM distribution
  10614. process.
  10615.     Let me touch on another aspect of this situation: Compuserve.
  10616. If you read the fine print then when a file is posted on CIS they
  10617. very nearly own the item. Oh boy! I run an anonymous ftp server or
  10618. two, and there are three kinds of files on them: Novell generated,
  10619. third party submissions to the Novell forum on CIS, and other third
  10620. party software. Novell's own files are offered via legal agreement with 
  10621. the company. It took a lot of work by people to obtain a satisfactory
  10622. legal release document so the Novell forum third party material could
  10623. be made available on the Internet (that's netwire\novuser). Novell did the 
  10624. hard work to make it happen.  Other files are accepted or declined 
  10625. depending on whether the author has given permission for them to be 
  10626. redistributed; no permission == no offering from my site (as best that I
  10627. can track it). If someone sends my archive a file which seems to have come 
  10628. from CIS but the release is not made then I decline the file. I don't get 
  10629. involved with money or CDROMs or making tapes for people, yet these operating
  10630. rules apply.
  10631.     
  10632.     Joe D.
  10633.  
  10634. From news@columbia.edu Tue Sep 27 07:02:44 1994
  10635. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA18973
  10636.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 27 Sep 1994 18:03:54 -0400
  10637. Received: by apakabar.cc.columbia.edu id AA20712
  10638.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 27 Sep 1994 18:03:53 -0400
  10639. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!math.ohio-state.edu!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  10640. From: jrd@cc.usu.edu (Joe Doupnik)
  10641. Newsgroups: comp.protocols.kermit.misc
  10642. Subject: Re: WFWG/Kermit BIOS errors?
  10643. Message-Id: <1994Sep27.130244.27972@cc.usu.edu>
  10644. Date: 27 Sep 94 13:02:44 MDT
  10645. References: <369dh7$cup@quartz.ucs.ualberta.ca>
  10646. Organization: Utah State University
  10647. Lines: 17
  10648. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  10649.  
  10650. In article <369dh7$cup@quartz.ucs.ualberta.ca>, bpolvi@gpu.srv.ualberta.ca (Bernice Polvi) writes:
  10651. > FRUSTRATED by the following problem, Any ideas would be appreciated.
  10652. > When using KERMIT from within WFWG's, many of our users get the following 
  10653. > error message when attempting to establish a MF serial connection or initiate
  10654. > a file transfer:
  10655. > ?WARNING: UNKNOWN HARDWARE for Port. 
  10656. >           Using the BIOS as BIOS2 unimplemented speed.
  10657. > The windows session must then be terminated and started again. 
  10658. -------------
  10659.     Their Windows configurations must be slightly inappropriate for
  10660. any DOS program to use the serial ports. May I suggest reviewing the
  10661. serial port setup in WFW. Please do watch out for FAX program also
  10662. owning the port while Windows is running. 
  10663.     Joe D.
  10664.  
  10665. From news@columbia.edu Tue Sep 27 22:22:49 1994
  10666. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA20443
  10667.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 27 Sep 1994 18:22:51 -0400
  10668. Received: by apakabar.cc.columbia.edu id AA22281
  10669.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 27 Sep 1994 18:22:50 -0400
  10670. Path: news.columbia.edu!usenet
  10671. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  10672. Newsgroups: comp.protocols.kermit.misc
  10673. Subject: Re: set speed command
  10674. Date: 27 Sep 1994 22:22:49 GMT
  10675. Organization: Columbia University
  10676. Lines: 31
  10677. Distribution: World
  10678. Message-Id: <36a5vp$lo7@apakabar.cc.columbia.edu>
  10679. References: <Cwt419.JsA@world.std.com>
  10680. Nntp-Posting-Host: fdc.cc.columbia.edu
  10681. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  10682.  
  10683. In article <Cwt419.JsA@world.std.com> rbrass@world.std.com (robert brass)  
  10684. writes:
  10685. > Does the set speed command set the modem speed or the 
  10686. > terminal/line speed. I have an Octocom modem capable of 14400 but
  10687. > there is no 14400 speed available in the set speed command. When I set it
  10688. > to 19200 and dial a number, I get a message "can't change speed to 
  10689. > 14400". How can I connect at 14400?
  10690. >
  10691. It sets the computer's serial port speed.  The modem speed can only be
  10692. set by modem-specific methods.  It would have helped if you had said
  10693. which Kermit program you were using.  Let's say it's C-Kermit.  If you had
  10694. read the manual, "Using C-Kermit", you would have discovered (in the
  10695. section "Finer Points of Dialing" in chapter 3) that Kermit can either
  10696. (a) adjust its interface speed to the CONNECT speed reported by the modem,
  10697. or (b) keep its interface speed constant, i.e. ignore the modem's report.
  10698. The command is SET DIAL SPEED-MATCHING { ON, OFF }.  By default, it tries
  10699. to change to the speed reported by the modem.  In your case, it seems that
  10700. your version of C-Kermit (based upon information from the system header
  10701. files, etc) does not support 14400 bps.  But that's not the real problem --
  10702. what you really wanted to do was set your modem's interface speed to
  10703. 19200 and FIX IT THERE, and then tell C-Kermit to ignore the speed in the
  10704. CONNECT message.
  10705.  
  10706. C-Kermit 5A(190) -- still in Beta due to numerous distractions -- supports
  10707. (in general) a wider range of speeds, including 14400 bps on some systems.
  10708. But since I don't have 450 different operating-system/version combinations
  10709. directly accessible, I can't guarantee that I caught them all.  For further
  10710. information, see the section SERIAL COMMUNICATION SPEEDS in the ckccfg.doc
  10711. file.
  10712.  
  10713. - Frank
  10714.  
  10715. From news@columbia.edu Tue Sep 27 21:53:29 1994
  10716. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA21189
  10717.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 27 Sep 1994 18:34:37 -0400
  10718. Received: by apakabar.cc.columbia.edu id AA23030
  10719.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 27 Sep 1994 18:34:36 -0400
  10720. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!EU.net!sunic!news.funet.fi!zippo.uwasa.fi!chyde.uwasa.fi!ts
  10721. From: ts@uwasa.fi (Timo Salmi)
  10722. Newsgroups: comp.archives.msdos.announce,comp.protocols.kermit.misc
  10723. Subject: Columbia University MS-Kermit files suspended at Garbo
  10724. Followup-To: comp.protocols.kermit.misc
  10725. Date: Tue, 27 Sep 1994 21:53:29 GMT
  10726. Organization: University of Vaasa, Finland
  10727. Lines: 15
  10728. Approved: ts@chyde.uwasa.fi
  10729. Message-Id: <ts9409272153.29032@chyde.uwasa.fi>
  10730. Nntp-Posting-Host: uwasa.fi
  10731. Originator: ts@uwasa.fi
  10732. Xref: news.columbia.edu comp.archives.msdos.announce:6845 comp.protocols.kermit.misc:258
  10733. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  10734.  
  10735. Tue 27-Sep-94: MsKermit utilities have been suspended at Garbo.  The
  10736. files have not yet been physically deleted, but their read
  10737. permissions have been removed.  For all details of the situation
  10738. please see the comp.protocols.kermit.misc newsgroup.  Please do not
  10739. direct any queries about this to Garbo moderators.  Kermit is
  10740. distributed from the Columbia University.  The support person there
  10741. is Frank da Cruz fdc@watsun.cc.columbia.edu.
  10742.  
  10743.    All the best, Timo
  10744.  
  10745. ..................................................................
  10746. Prof. Timo Salmi      Co-moderator of comp.archives.msdos.announce
  10747. Moderating at garbo.uwasa.fi anonymous FTP  archives  128.214.87.1
  10748. Faculty of Accounting & Industrial Management; University of Vaasa
  10749. Internet: ts@uwasa.fi   BBS +(358)-61-3170972; FIN-65101,  Finland
  10750.  
  10751. From news@columbia.edu Tue Sep 27 20:58:52 1994
  10752. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA22897
  10753.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 27 Sep 1994 19:07:27 -0400
  10754. Received: by apakabar.cc.columbia.edu id AA25333
  10755.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 27 Sep 1994 19:07:25 -0400
  10756. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!news.sprintlink.net!nwnexus!news.halcyon.com!chinook!ken
  10757. From: ken@chinook.halcyon.com (Ken Pizzini)
  10758. Newsgroups: comp.protocols.kermit.misc
  10759. Subject: Re: Kermit Access/Availability
  10760. Date: 27 Sep 1994 20:58:52 GMT
  10761. Organization: What, me?
  10762. Lines: 24
  10763. Distribution: World
  10764. Message-Id: <36a12c$4qu@news.halcyon.com>
  10765. References: <35qtj3$ms6@eis.wfunet.wfu.edu> <35upim$9ol@apakabar.cc.columbia.edu>
  10766. Nntp-Posting-Host: chinook.halcyon.com
  10767. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  10768.  
  10769. In article <35upim$9ol@apakabar.cc.columbia.edu>,
  10770. Frank da Cruz <fdc@fdc.cc.columbia.edu> wrote:
  10771. >In article <35qtj3$ms6@eis.wfunet.wfu.edu> matthews@wfu.edu (Rick Matthews)  
  10772. >writes:
  10773. >> : zmodem is a lot faster for the turnkey user.
  10774. >> Agreed.  Kermit is not for the turnkey user, unless the user is
  10775. >> unusually patient.  Creating the three-line ".kermrc" file is
  10776. >> essential for reasonable throughput with kermit.
  10777. >> 
  10778. >Matter of preference.  If by "turnkey user" you mean somebody who wants a 
  10779. >file transfer to either be fast or else fail, you're right.  On the other 
  10780. >hand, if a turnkey user is someone who wants a transfer to work out of the
  10781. >box, even if it is slow, then I'd say Kermit is the ticket.
  10782.  
  10783. Okay then, an idea for a future release: have a "set transfer fast" and
  10784. "set transfer robust" (or the moral equivalent) option: the former will
  10785. work as fast as possible over a reliable 8-bit clean link, and the
  10786. latter is the current situation.  This is similar to the current
  10787. situation, but requires less knowledge/guesswork on the part of the "I
  10788. just want to run this thing" user.  (As to the exact command to use,
  10789. try for something that will be somewhat self-apparent in the online
  10790. help.)
  10791.  
  10792.         --Ken Pizzini
  10793.  
  10794. From news@columbia.edu Tue Sep 27 08:46:34 1994
  10795. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA23529
  10796.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 27 Sep 1994 19:17:41 -0400
  10797. Received: by apakabar.cc.columbia.edu id AA26206
  10798.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 27 Sep 1994 19:17:40 -0400
  10799. Path: news.columbia.edu!panix!MathWorks.Com!news.duke.edu!convex!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  10800. From: jrd@cc.usu.edu (Joe Doupnik)
  10801. Newsgroups: comp.protocols.kermit.misc
  10802. Subject: Re: Dumb question...
  10803. Message-Id: <1994Sep27.144634.27987@cc.usu.edu>
  10804. Date: 27 Sep 94 14:46:34 MDT
  10805. References: <35k8j5$mph@dsm6.dsmnet.com> <35ktea$8cn@apakabar.cc.columbia.edu> <jhurwitCwsEG1.wu@netcom.com>
  10806. Distribution: world
  10807. Organization: Utah State University
  10808. Lines: 21
  10809. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  10810.  
  10811. In article <jhurwitCwsEG1.wu@netcom.com>, jhurwit@netcom.com (Jeffrey Hurwit) writes:
  10812. > In article <35ktea$8cn@apakabar.cc.columbia.edu>, 
  10813. > Frank da Cruz (fdc@fdc.cc.columbia.edu) wrote:
  10814. >>In article <35k8j5$mph@dsm6.dsmnet.com> rich@dsm1.dsmnet.com writes:
  10815. >>> In article <35ghag$274@telerama.lm.com>, huzacec@telerama.lm.com writes:
  10816. >     Y'know what?  There ought to be...  I've been using C-Kermit on my
  10817. >     Unix account for a while, now.  Though I don't use most of its
  10818. >     features (I use it as a remote only), I've noticed in glancing
  10819. >     through the docs that it has a more powerful script language, and
  10820. >     some other features that MS-Kermit lacks.  I could use those
  10821. >     features (especially the script language) on my PC.  What gives?
  10822. >     DOS won't support them (it would figure :-/ )?  The expanded Kermit
  10823. >     wouldn't run on a poor old XT with floppy drives like mine?
  10824. >                         Jeff
  10825. ----------
  10826.     Vaguenes Jeff, so vague. MS-DOS Kermit should run just fine on
  10827. your XT if it has enough memory (512KB is more than enough); floppy
  10828. based is ok too if you don't mind the delays.
  10829.     Joe D.
  10830.  
  10831. From news@columbia.edu Tue Sep 27 21:35:03 1994
  10832. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA24110
  10833.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 27 Sep 1994 19:24:53 -0400
  10834. Received: by apakabar.cc.columbia.edu id AA26666
  10835.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 27 Sep 1994 19:24:52 -0400
  10836. Newsgroups: comp.protocols.kermit.misc
  10837. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!swrinde!elroy.jpl.nasa.gov!ucla-cs!news.cs.ucla.edu!bern
  10838. From: bern@maui.cs.ucla.edu (Bernard Chen)
  10839. Subject: initialization string
  10840. Message-Id: <BERN.94Sep27143504@maui.cs.ucla.edu>
  10841. Sender: usenet@cs.ucla.edu (Mr Usenet)
  10842. Nntp-Posting-Host: maui.cs.ucla.edu
  10843. Organization: UCLA, Computer Science Department
  10844. Date: 27 Sep 1994 21:35:03 GMT
  10845. Lines: 10
  10846. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  10847.  
  10848. i just compiled cku190 for my machine (sonynews, although i don't know
  10849. if that matters), and tried dialing with the same .kermrc as i was
  10850. using with cku189.  the modem is a microcom.  i keep getting an error:
  10851. TIMEOUT in initializing modem.  i didn't copy down the exact error
  10852. message, but it was a TIMEOUT in initializing the modem.  this
  10853. initialization string should work with the modem, since it works fine
  10854. with cku189.  would anyone have any ideas why this isn't working?
  10855.  
  10856. bern
  10857. bern@cs.ucla.edu
  10858.  
  10859. From news@columbia.edu Tue Sep 27 23:27:33 1994
  10860. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA24245
  10861.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 27 Sep 1994 19:27:37 -0400
  10862. Received: by apakabar.cc.columbia.edu id AA26938
  10863.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 27 Sep 1994 19:27:36 -0400
  10864. Path: news.columbia.edu!usenet
  10865. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  10866. Newsgroups: comp.protocols.kermit.misc
  10867. Subject: Re: Kermit Access/Availability
  10868. Date: 27 Sep 1994 23:27:33 GMT
  10869. Organization: Columbia University
  10870. Lines: 37
  10871. Distribution: World
  10872. Message-Id: <36a9p5$q9n@apakabar.cc.columbia.edu>
  10873. References: <36a12c$4qu@news.halcyon.com>
  10874. Nntp-Posting-Host: fdc.cc.columbia.edu
  10875. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  10876.  
  10877. In article <36a12c$4qu@news.halcyon.com> ken@chinook.halcyon.com (Ken  
  10878. Pizzini) writes:
  10879. > Okay then, an idea for a future release: have a "set transfer fast" and
  10880. > "set transfer robust" (or the moral equivalent) option: the former will
  10881. > work as fast as possible over a reliable 8-bit clean link, and the
  10882. > latter is the current situation.  This is similar to the current
  10883. > situation, but requires less knowledge/guesswork on the part of the "I
  10884. > just want to run this thing" user.
  10885. >
  10886. Au contraire -- today's user does not want to learn any commands, and is
  10887. no more likely to stumble upon this one than any other.
  10888.  
  10889. This is sad, because the slick software industry has put forward the
  10890. idea that all one needs to do is click on something and the magic is
  10891. unleashed, which is completely untrue and misleading in the case of
  10892. communications software.  They raise the expectations of users unreasonably
  10893. high.  There is no way that communications software can know what is going
  10894. on outside the computer, and I maintain that there is no way that it can
  10895. even test for this in a nonobtrusive, nondestructive fashion.
  10896.  
  10897. At some point, the user has to learn something, at least when things don't
  10898. work.  So yes, maybe you have a point.  Maybe Kermit should be tuned for
  10899. "damn the torpedoes, full speed ahead", and then it would fail about half
  10900. the time, and then the user would be forced to look stuff up in the
  10901. documentation and learn about the things that every user must know in order
  10902. to communicate successfully in a diverse or hostile environment.
  10903.  
  10904. Or not.  More likely they would be so angry and frustrated that they would
  10905. just give up.  Which is worse? 
  10906.  
  10907. I think that those of us on this newsgroup are capable of entering the
  10908. two or three commands needed to make Kermit transfers default any way we
  10909. want them to.  The question is what the DEFAULT defaults should be for
  10910. somebody who doesn't know anything and swallows the hype.  I think the
  10911. conservative ones are still the most appropriate.
  10912.  
  10913. - Frank
  10914.  
  10915. From news@columbia.edu Tue Sep 27 23:36:56 1994
  10916. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA24704
  10917.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 27 Sep 1994 19:37:06 -0400
  10918. Received: by apakabar.cc.columbia.edu id AA27642
  10919.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 27 Sep 1994 19:37:05 -0400
  10920. Path: news.columbia.edu!usenet
  10921. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  10922. Newsgroups: comp.protocols.kermit.misc
  10923. Subject: Re: initialization string
  10924. Date: 27 Sep 1994 23:36:56 GMT
  10925. Organization: Columbia University
  10926. Lines: 26
  10927. Distribution: World
  10928. Message-Id: <36aaao$qv6@apakabar.cc.columbia.edu>
  10929. References: <BERN.94Sep27143504@maui.cs.ucla.edu>
  10930. Nntp-Posting-Host: fdc.cc.columbia.edu
  10931. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  10932.  
  10933. In article <BERN.94Sep27143504@maui.cs.ucla.edu> bern@maui.cs.ucla.edu  
  10934. (Bernard Chen) writes:
  10935. > i just compiled cku190 for my machine (sonynews, although i don't know
  10936. > if that matters), and tried dialing with the same .kermrc as i was
  10937. > using with cku189.  the modem is a microcom.  i keep getting an error:
  10938. > TIMEOUT in initializing modem.  i didn't copy down the exact error
  10939. > message, but it was a TIMEOUT in initializing the modem.  this
  10940. > initialization string should work with the modem, since it works fine
  10941. > with cku189.  would anyone have any ideas why this isn't working?
  10942. As you know, C-Kermit 5A(190) is in Beta test.  You should send bug
  10943. reports straight to me.  In this case, I would have asked you to collect
  10944. a debug log ("log debug", makes a big file called debug.log) and email
  10945. it to me.
  10946.  
  10947. Here's another thing you can do.  First, run C-Kermit 5A(189), tell it
  10948. to "set dial display on", and give a dial command.  Watch what happens.
  10949. Better still, record it in a typescript.  Then do the same with 190.
  10950. Then look at the typescript and see if you can dope out what is different.
  10951. Send me the typescript by email.  If I can't figure it out from the type-
  10952. script, then we can go to the big debug log.
  10953.  
  10954. Also, bear in mind that I don't have a Microcom modem, so this debugging
  10955. might have to be carried out by "remote control".
  10956.  
  10957. - Frank
  10958.  
  10959. From news@columbia.edu Tue Sep 27 22:41:57 1994
  10960. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA24902
  10961.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 27 Sep 1994 19:39:39 -0400
  10962. Received: by apakabar.cc.columbia.edu id AA27806
  10963.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 27 Sep 1994 19:39:37 -0400
  10964. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!cs.utexas.edu!utnut!torn!news.ccs.queensu.ca!news
  10965. From: mike@ccs.queensu.ca (Mike Smith)
  10966. Newsgroups: comp.protocols.kermit.misc
  10967. Subject: Re: Quoting 255 on Telnet Connections
  10968. Date: 27 Sep 1994 22:41:57 GMT
  10969. Organization: Queen's University, Kingston
  10970. Lines: 11
  10971. Distribution: world
  10972. Message-Id: <36a73l$dke@knot.queensu.ca>
  10973. References: <36761n$3ia@knot.queensu.ca> <367d3p$ddh@apakabar.cc.columbia.edu>
  10974. Nntp-Posting-Host: ccs-sparc2.ccs
  10975. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  10976.  
  10977. Thanks to Frank for his explanation.
  10978.  
  10979. Last night I was doing some more testing with the same Kermit programs, the
  10980. same test files, the same PC, the same telnet server, and a different Unix
  10981. host.  When I configured the host to unprefix 255, uploads caused retries.
  10982. When I prefixed 255 the retries went away.  
  10983. -- 
  10984.  
  10985.  Mike Smith                                  mike@ccs.queensu.ca
  10986.  Queen's University                          Michael.D.Smith@QueensU.CA
  10987.  Computing and Communications Services       (613) 545-2024
  10988.  
  10989. From news@columbia.edu Tue Sep 27 23:04:14 1994
  10990. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA25178
  10991.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 27 Sep 1994 19:43:31 -0400
  10992. Received: by apakabar.cc.columbia.edu id AA28097
  10993.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 27 Sep 1994 19:43:30 -0400
  10994. Path: news.columbia.edu!panix!MathWorks.Com!news.duke.edu!news-feed-1.peachnet.edu!gatech!swrinde!cs.utexas.edu!utnut!torn!mcshub!informer1.cis.McMaster.CA!muss.cis.McMaster.CA!not-for-mail
  10995. From: dfraser@muss.cis.McMaster.CA (Doug Fraser)
  10996. Newsgroups: comp.protocols.kermit.misc
  10997. Subject: Re: Kermit via tn3270
  10998. Date: 27 Sep 1994 19:04:14 -0400
  10999. Organization: McMaster University, Hamilton, Ontario, Canada.
  11000. Lines: 30
  11001. Message-Id: <36a8de$pri@muss.cis.McMaster.CA>
  11002. References: <36481e$3bv@gwis2.circ.gwu.edu>
  11003. Nntp-Posting-Host: muss.cis.mcmaster.ca
  11004. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  11005.  
  11006. In article <36481e$3bv@gwis2.circ.gwu.edu>,
  11007. Philip Wirtz <pww@gwis2.circ.gwu.edu> wrote:
  11008. >I use MSDOS Kermit on a PC-compatible machine to emulate a VT100 when
  11009. >connecting (over a modem) to a Sun running Solaris.  I can upload,
  11010. >download, and "transparent print" without problem.  When logged on to the
  11011. >Sun, I use tn3270 to connect to an IBM mainframe running VM/CMS.  As an
  11012. >alternative route to the IBM mainframe, I can use MSDOS Kermit to dial up
  11013. >through a 7171 protocol emulator.  I have no problem using Kermit to
  11014. >upload, download, or transparent print when I use the ALTERNATIVE route to
  11015. >the IBM mainframe (i.e., dialing up through the 7171).  However, when
  11016. >using the tn3270 route (which of course bypasses the 7171), I cannot
  11017. >upload, download or transparent print.  Speculatively, it appears that
  11018. >escape sequences are not being properly passed to the Sun (and therefore
  11019. >to my PC), so (for example) the PC Kermit does not know that it needs to
  11020.  
  11021. a 7171 looks like a local 3274 type control unit to the ibm mainframe and 
  11022. translate the special 3270 type control characters to the async terminal 
  11023. connectedt to it.  tn3270 does the same thing however, the 7171 has 
  11024. already translated the characters.
  11025.  
  11026. To use tn3270, you have to connect to something like a 8232 (I can't 
  11027. remember if this is the right number) or a BTI box.  There is associated 
  11028. tcp software on the ibm mainframe.  
  11029.  
  11030. The 7171 does not have associated software on the mainframe as it does 
  11031. the necessary translation inside.
  11032.  
  11033. Doug Fraser
  11034. (use the above answer as if I hadn't worked hands on with mvs for three 
  11035. years)
  11036.  
  11037. From news@columbia.edu Tue Sep 27 23:41:01 1994
  11038. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA25631
  11039.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 27 Sep 1994 19:50:38 -0400
  11040. Received: by apakabar.cc.columbia.edu id AA28565
  11041.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 27 Sep 1994 19:50:37 -0400
  11042. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!vixen.cso.uiuc.edu!bach.cogsci.uiuc.edu!jycha
  11043. From: jycha@bach.cogsci.uiuc.edu (Jong-Yul Cha)
  11044. Newsgroups: comp.protocols.kermit.misc
  11045. Subject: [Q] Initializing kermit
  11046. Date: 27 Sep 1994 23:41:01 GMT
  11047. Organization: University of Illinois at Urbana
  11048. Lines: 5
  11049. Message-Id: <36aaid$4q9@vixen.cso.uiuc.edu>
  11050. Nntp-Posting-Host: bach.cogsci.uiuc.edu
  11051. X-Newsreader: TIN [version 1.2 PL2]
  11052. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  11053.  
  11054. I mostly use kermit to get a slip connection via 14.4K modem.
  11055. Is it possible to put the dialing number and prefix (such as
  11056. atdt 123-4567) into the initializing file (mskermit.ini or
  11057. .kermrc) to have an automated call?  Thank you.
  11058.  
  11059.  
  11060. From news@columbia.edu Tue Sep 27 23:42:49 1994
  11061. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA25785
  11062.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 27 Sep 1994 19:54:55 -0400
  11063. Received: by apakabar.cc.columbia.edu id AA28910
  11064.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 27 Sep 1994 19:54:52 -0400
  11065. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!swiss.ans.net!prodigy.com!prodigy.com!not-for-mail
  11066. From: davidsen@usenety1.news.prodigy.com (Bill Davidsen)
  11067. Newsgroups: comp.protocols.kermit.misc
  11068. Subject: Re: FTP for Current MS-DOS Kermit?
  11069. Date: 27 Sep 1994 19:42:49 -0400
  11070. Organization: Prodigy Services
  11071. Lines: 36
  11072. Distribution: World
  11073. Message-Id: <36aalp$9pe@usenety1.news.prodigy.com>
  11074. References: <368187$ms3@zippo.uwasa.fi> <369777$qfs@apakabar.cc.columbia.edu>
  11075. Nntp-Posting-Host: loopback.news.prodigy.com
  11076. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  11077.  
  11078.  
  11079. If you want to make some money you can start trying to collect from
  11080. these CD publishers, but if you want to keep Kermit spreading you better
  11081. let people spread the programs any way they can, and *sell* the manuals.
  11082. Actually I thought you did that anyway.
  11083.  
  11084. People tend to use zmodem over Kermit because it has so many old
  11085. versions out there. The latest version may outperform zmodem in some
  11086. test or other, but when calling another system chances are that the
  11087. speed will be poor because one end didn't set left handed sliding
  11088. hexadecimal escape packets or some such.
  11089.  
  11090. The next enhancement to Kermit better be teaching it to configure
  11091. itself, because the current version has enough bells and whistles to
  11092. tune to discourage the business person who just wants it to work.
  11093.  
  11094. I get little consulting calls fairly frequently to tune complex stuff,
  11095. and the only thing which brings in more calls than getting Kermit to
  11096. really fly is Telebit modems.
  11097.  
  11098. I think you should make your money from leting these people go and
  11099. selling the manuals and a CD with the latest versions of every Kermit
  11100. version you have. I don't speak for other UNIX users, but I certainly
  11101. would buy a reasonably priced Kermit snapshot once a year. I'd probably
  11102. even put a stack on the corner of my table at the next computer show if
  11103. I could buy for a few bucks off in small quantity, and I bet clubs would
  11104. order copies too.
  11105.  
  11106. I respect what you are trying to do here, but I seriously believe that
  11107. you don't have a clear marketing plan here. Set up an "official Kermit
  11108. Answer Center" with a 950 area code and charge a small fee. You may not
  11109. be as much fun as phone sex, but I bet you can make a buck at it!
  11110. -- 
  11111. Speaking *from* but never *for* Prodigy
  11112.     "Pain builds moral fiber"  -my dad
  11113.     "Pain hurts"  -me
  11114.  
  11115. From news@columbia.edu Wed Sep 28 00:04:57 1994
  11116. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA26266
  11117.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 27 Sep 1994 20:05:03 -0400
  11118. Received: by apakabar.cc.columbia.edu id AA29742
  11119.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 27 Sep 1994 20:05:00 -0400
  11120. Path: news.columbia.edu!usenet
  11121. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  11122. Newsgroups: comp.protocols.kermit.misc
  11123. Subject: Re: [Q] Initializing kermit
  11124. Date: 28 Sep 1994 00:04:57 GMT
  11125. Organization: Columbia University
  11126. Lines: 25
  11127. Distribution: World
  11128. Message-Id: <36abv9$t18@apakabar.cc.columbia.edu>
  11129. References: <36aaid$4q9@vixen.cso.uiuc.edu>
  11130. Nntp-Posting-Host: fdc.cc.columbia.edu
  11131. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  11132.  
  11133. In article <36aaid$4q9@vixen.cso.uiuc.edu> jycha@bach.cogsci.uiuc.edu  
  11134. (Jong-Yul Cha) writes:
  11135. > I mostly use kermit to get a slip connection via 14.4K modem.
  11136. > Is it possible to put the dialing number and prefix (such as
  11137. > atdt 123-4567) into the initializing file (mskermit.ini or
  11138. > ..kermrc) to have an automated call?  Thank you.
  11139. >
  11140. Of course.  I'd recommend something like this.  Create a DOS Batch
  11141. file, say SLIP.BAT, that starts up Kermit for SLIP, something like:
  11142.  
  11143.   kermit -f slip.scr
  11144.  
  11145. And then the SLIP.SCR file would contain the needed Kermit commands,
  11146. which depend on your modem and so on.  But, as you know, this is only
  11147. the first step.  Now you need to exit from Kermit, leaving the connection
  11148. open, and then start your SLIP8250 or ETHERSLIP driver, and then start
  11149. Kermit again to actually use the SLIP connection (or you can start any
  11150. other TCP/IP application that uses SLIP).  You should not start the
  11151. packet driver from the Kermit prompt, because that will result in
  11152. fragmented memory, and you might not be able to load other applications
  11153. after that.
  11154.  
  11155. - Frank
  11156.  
  11157.  
  11158.  
  11159. From news@columbia.edu Wed Sep 28 00:16:52 1994
  11160. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA27075
  11161.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 27 Sep 1994 20:24:03 -0400
  11162. Received: by apakabar.cc.columbia.edu id AA01318
  11163.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 27 Sep 1994 20:24:02 -0400
  11164. Path: news.columbia.edu!panix!MathWorks.Com!yeshua.marcam.com!charnel.ecst.csuchico.edu!nic-nac.CSU.net!tem
  11165. From: tem@scout.humboldt.edu (Tom Mendenhall)
  11166. Newsgroups: comp.protocols.kermit.misc
  11167. Subject: transmit command 7 bit only?
  11168. Date: 28 Sep 1994 00:16:52 GMT
  11169. Organization: HSU Library
  11170. Lines: 10
  11171. Message-Id: <36aclk$okp@nic-nac.CSU.net>
  11172. Reply-To: tem@scout.humboldt.edu
  11173. Nntp-Posting-Host: scout.humboldt.edu
  11174. X-Newsreader: TIN [version 1.2 PL2]
  11175. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  11176.  
  11177. I am trying to send a file with the transmit command. The diacritic
  11178. characters are being replaced with "b" characters. Due to limitations
  11179. with the host software, this is the only method I can use. Does anyone
  11180. know if transmit is limited to 7 bits or is there some other reason
  11181. why this is happening.
  11182.  
  11183. Thanks,
  11184. Tom Mendenhall
  11185. tem@scout.humboldt.edu
  11186.  
  11187.  
  11188. From news@columbia.edu Wed Sep 28 00:42:07 1994
  11189. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA27913
  11190.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 27 Sep 1994 20:42:12 -0400
  11191. Received: by apakabar.cc.columbia.edu id AA02607
  11192.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 27 Sep 1994 20:42:10 -0400
  11193. Path: news.columbia.edu!usenet
  11194. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  11195. Newsgroups: comp.protocols.kermit.misc
  11196. Subject: Re: transmit command 7 bit only?
  11197. Date: 28 Sep 1994 00:42:07 GMT
  11198. Organization: Columbia University
  11199. Lines: 25
  11200. Distribution: World
  11201. Message-Id: <36ae4v$2hb@apakabar.cc.columbia.edu>
  11202. References: <36aclk$okp@nic-nac.CSU.net>
  11203. Nntp-Posting-Host: fdc.cc.columbia.edu
  11204. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  11205.  
  11206. In article <36aclk$okp@nic-nac.CSU.net> tem@scout.humboldt.edu (Tom  
  11207. Mendenhall) writes:
  11208. > I am trying to send a file with the transmit command. The diacritic
  11209. > characters are being replaced with "b" characters. Due to limitations
  11210. > with the host software, this is the only method I can use. Does anyone
  11211. > know if transmit is limited to 7 bits or is there some other reason
  11212. > why this is happening.
  11213. You did not say which Kermit program you are using.  Assuming it is
  11214. MS-DOS Kermit or C-Kermit...  Terminal connections -- including the
  11215. TRANSMIT command, which uses the terminal connection to upload a file
  11216. as if you were typing it -- are 7 bits by default.  This is explained
  11217. repeatedly in the documentation.  The reason is that many hosts and
  11218. services use parity, but the poor user doesn't know it, and if terminal
  11219. connections were 8 bits by default, users would see garbage on their
  11220. screens.
  11221.  
  11222. To use 8-bit text in a terminal session, you must do two things:
  11223. (1) Tell Kermit to SET TERMINAL BYTESIZE 8, and (2) set up the
  11224. appropriate character-set translations.
  11225.  
  11226. Please read the chapter on International Character Sets in the appropriate
  11227. manual, "Using MS-DOS Kermit" or "Using C-Kermit".
  11228.  
  11229. - Frank
  11230.  
  11231. From news@columbia.edu Wed Sep 28 00:14:00 1994
  11232. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA00320
  11233.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 27 Sep 1994 21:33:04 -0400
  11234. Received: by apakabar.cc.columbia.edu id AA06295
  11235.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 27 Sep 1994 21:33:02 -0400
  11236. Newsgroups: comp.protocols.kermit.misc
  11237. Path: news.columbia.edu!panix!MathWorks.Com!news.duke.edu!news-feed-1.peachnet.edu!emory!swrinde!ihnp4.ucsd.edu!dog.ee.lbl.gov!news.cs.utah.edu!emba-news.uvm.edu!moose.uvm.edu!rdangel
  11238. From: rdangel@moose.uvm.edu (Robert S. Dangel)
  11239. Subject: Windows Kermit?
  11240. Message-Id: <1994Sep28.001400.10550@emba.uvm.edu>
  11241. Originator: rdangel@moose.uvm.edu
  11242. Sender: news@emba.uvm.edu
  11243. Organization: EMBA Computer Facility, University of Vermont
  11244. Date: Wed, 28 Sep 1994 00:14:00 GMT
  11245. Lines: 3
  11246. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  11247.  
  11248. Is there a windows version of PC Kermit? I have qmodem Pro and
  11249. the Kermit protocol doesn't work with the UNIX machines..  
  11250.  
  11251.  
  11252. From news@columbia.edu Sun Sep 28 04:30:29 1994
  11253. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA10738
  11254.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 28 Sep 1994 00:56:59 -0400
  11255. Received: by apakabar.cc.columbia.edu id AA19518
  11256.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 28 Sep 1994 00:56:57 -0400
  11257. Path: news.columbia.edu!panix!MathWorks.Com!news.kei.com!ddsw1!not-for-mail
  11258. From: les@MCS.COM (Leslie Mikesell)
  11259. Newsgroups: comp.protocols.kermit.misc
  11260. Subject: Re: Columbia University MS-Kermit files removed from SimTel
  11261. Date: 27 Sep 1994 23:30:29 -0500
  11262. Organization: /usr/lib/news/organi[sz]ation
  11263. Lines: 22
  11264. Message-Id: <36arh5$qpp@Mercury.mcs.com>
  11265. References: <9409270646.kp1130@simtel.coast.net> <3699u3$fe9@Venus.mcs.com> <1994Sep27.125004.27971@cc.usu.edu>
  11266. Nntp-Posting-Host: mercury.mcs.com
  11267. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  11268.  
  11269. In article <1994Sep27.125004.27971@cc.usu.edu>,
  11270. Joe Doupnik <jrd@cc.usu.edu> wrote:
  11271. >The notice
  11272. >says, amongst other things, a person/organization can't redistribute
  11273. >the Columbia material for profit etc without prior clearance. That
  11274. >seems to be very reasonable to me.
  11275. >    Guess what's lacking about the Simtel CDROM distribution
  11276. >process.
  11277.  
  11278. The part that I don't understand is how the CDROM distribution is
  11279. somehow different from the profit made by the internet providers
  11280. and phone companies when someone arranges to ftp the files directly
  11281. from Columbia. The only difference from this end is that you have
  11282. a choice about the CDROMs and for most people it is a cheaper alternative.
  11283. Since the CDROM distributers don't attempt to restrict your access
  11284. by other means or prevent futher redistribution of the contents they
  11285. are clearly selling the service of distribution in the same sense
  11286. that the phone companies do.  If either distribution makes a profit
  11287. it is only indirectly related to the content.
  11288.  
  11289. Les Mikesell
  11290.   les@mcs.com
  11291.  
  11292. From news@columbia.edu Wed Sep 28 05:28:50 1994
  11293. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA21515
  11294.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 28 Sep 1994 06:04:32 -0400
  11295. Received: by apakabar.cc.columbia.edu id AA29522
  11296.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 28 Sep 1994 06:04:30 -0400
  11297. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!swiss.ans.net!cmcl2!cmcl2.nyu.edu!oconnort
  11298. From: oconnort@acf2.nyu.edu (Tim O'Connor)
  11299. Newsgroups: comp.protocols.kermit.misc
  11300. Subject: Re: Just Say "RTFM" To Documented Kermit Questions
  11301. Date: 28 Sep 1994 05:28:50 GMT
  11302. Organization: New York University
  11303. Lines: 21
  11304. Distribution: World
  11305. Message-Id: <36auui$f89@cmcl2.NYU.EDU>
  11306. References: <35scpt$lki@agate.berkeley.edu> <361ifo$rje@apakabar.cc.columbia.edu>
  11307. Nntp-Posting-Host: acf2.nyu.edu
  11308. X-Newsreader: TIN [version 1.2 PL2]
  11309. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  11310.  
  11311. Frank da Cruz (fdc@fdc.cc.columbia.edu) wrote:
  11312.  
  11313. >  2. It will answer most of your questions -- we put a lot of work into
  11314. >     it -- hundreds of examples, step-by-step instructions, illustrations,
  11315. >     tables, appendices, tutorials, glossaries, a comprehensive index.
  11316.  
  11317. ... and the hard work shows on every page.  
  11318.  
  11319. The first chapter in the MS Kermit book alone is worth the price.  I get 
  11320. a steady parade of lost souls at my door, some of them terrified of their 
  11321. modems and utterly confused about how a file gets from Point A to Point B.  
  11322. In every case but one, I have been able to explain how things work by 
  11323. pulling the book off the shelf and reviewing the pictures in the first 
  11324. chapter.  (The one exception was a lost cause!)  
  11325.  
  11326. --tim o'connor
  11327.  
  11328. +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  11329. Tim O'Connor                                        tim.oconnor@nyu.edu
  11330. NYU Academic Computing Facility                   Phone: (212) 998-3024
  11331. 251 Mercer St., New York, NY 10012                  Fax: (212) 995-4120
  11332.  
  11333. From news@columbia.edu Wed Sep 28 08:31:03 1994
  11334. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA26449
  11335.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 28 Sep 1994 06:37:22 -0400
  11336. Received: by apakabar.cc.columbia.edu id AA00950
  11337.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 28 Sep 1994 06:37:20 -0400
  11338. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!EU.net!sunic!trane.uninett.no!nac.no!eunet.no!nuug!telepost.no!hydro.com!usenet
  11339. From: terjem@hda.hydro.com (Terje Mathisen)
  11340. Newsgroups: comp.protocols.kermit.misc
  11341. Subject: Selective quoting of control chars
  11342. Date: 28 Sep 1994 08:31:03 GMT
  11343. Organization: Hydro Data, Norsk Hydro (Norway)
  11344. Lines: 14
  11345. Message-Id: <36b9k7$2vdl@vkhdib01.hda.hydro.com>
  11346. Reply-To: terjem@hda.hydro.com (Terje Mathisen)
  11347. Nntp-Posting-Host: sk08ts.hda.hydro.com
  11348. X-Newsreader: IBM NewsReader/2 v1.02
  11349. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  11350.  
  11351. I wrote my own Kermit implementation from scratch about 10 years ago, using
  11352. just the protocol spec. A couple of years later I extended it with sliding
  11353. window and large packets, whereupon I finally added the obvious extension
  11354. of allowing a selective set of control chars to be unquoted.
  11355.  
  11356. I've noticed that this capability is now included in CKermit, and I would
  11357. like to make my program compatible with the standard.  (I assume this is
  11358. implemented as a single feature bit in the capability mask, plus a list
  11359. of characters to not quote, probably in the form of a bitset.)
  11360.  
  11361. Where can I find the current (190) protocol spec?
  11362.  
  11363. -Terje
  11364.  
  11365.  
  11366. From news@columbia.edu Wed Sep 28 14:36:54 1994
  11367. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA02312
  11368.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 28 Sep 1994 10:37:30 -0400
  11369. Received: by apakabar.cc.columbia.edu id AA26460
  11370.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 28 Sep 1994 10:37:29 -0400
  11371. Path: news.columbia.edu!panix!MathWorks.Com!yeshua.marcam.com!zip.eecs.umich.edu!quip.eecs.umich.edu!huggins
  11372. From: huggins@quip.eecs.umich.edu (Jim Huggins)
  11373. Newsgroups: comp.protocols.kermit.misc
  11374. Subject: MS-Kermit 3.13, TCP/IP, and PPP dial-in
  11375. Date: 28 Sep 1994 14:36:54 GMT
  11376. Organization: University of Michigan EECS Dept.
  11377. Lines: 18
  11378. Message-Id: <36bv26$8qc@zip.eecs.umich.edu>
  11379. Nntp-Posting-Host: quip.eecs.umich.edu
  11380. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  11381.  
  11382. My local university runs a dial-in port which accepts PPP dial-ins.
  11383. I'm trying to figure out how to get my MS-Kermit 3.13 to interface
  11384. with PPP.  
  11385.  
  11386. I see from the MS-Kermit book that there are a number of
  11387. 'set tcp/ip' commands that can be issued.  I'm also rather new at this
  11388. stuff (I've only used MS-Kermit in the 'usual' asynchronous mode
  11389. until now), so I'm a little unclear as to what I need to do to
  11390. get my PPP dial-in package to work with Kermit TCP/IP support.
  11391.  
  11392. Anyone out there doing this type of thing themselves?  I'd ask 
  11393. clearer questions but as yet I don't know what I don't know.
  11394.  
  11395.  
  11396. -- 
  11397. Jim Huggins, Univ. of Michigan                          huggins@eecs.umich.edu
  11398. "You cannot pray to a personal computer no matter how user-friendly it is."
  11399. (PGP key available upon request)                             W. Bingham Hunter
  11400.  
  11401. From news@columbia.edu Wed Sep 28 14:38:17 1994
  11402. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA02368
  11403.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 28 Sep 1994 10:38:19 -0400
  11404. Received: by apakabar.cc.columbia.edu id AA26507
  11405.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 28 Sep 1994 10:38:18 -0400
  11406. Path: news.columbia.edu!usenet
  11407. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  11408. Newsgroups: comp.protocols.kermit.misc
  11409. Subject: Re: Windows Kermit?
  11410. Date: 28 Sep 1994 14:38:17 GMT
  11411. Organization: Columbia University
  11412. Lines: 15
  11413. Distribution: World
  11414. Message-Id: <36bv4p$ps8@apakabar.cc.columbia.edu>
  11415. References: <1994Sep28.001400.10550@emba.uvm.edu>
  11416. Nntp-Posting-Host: fdc.cc.columbia.edu
  11417. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  11418.  
  11419. In article <1994Sep28.001400.10550@emba.uvm.edu> rdangel@moose.uvm.edu  
  11420. (Robert S. Dangel) writes:
  11421. > Is there a windows version of PC Kermit? I have qmodem Pro and
  11422. > the Kermit protocol doesn't work with the UNIX machines..  
  11423. >
  11424. The only full-function version of Kermit for Windows is MS-DOS Kermit,
  11425. currently version 3.13.  It is a Windows-aware DOS application.  Until
  11426. and unless we are able to create a native Windows version with anywhere
  11427. near the same degree of functionality, we recommend and support MS-DOS
  11428. Kermit for use with Windows.
  11429.  
  11430. Anonymous ftp to kermit.columbia.edu, directory kermit/bin, binary mode,
  11431. file msvibm.zip.
  11432.  
  11433. - Frank
  11434.  
  11435. From news@columbia.edu Wed Sep 28 15:20:29 1994
  11436. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA08371
  11437.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 28 Sep 1994 11:51:57 -0400
  11438. Received: by apakabar.cc.columbia.edu id AA02331
  11439.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 28 Sep 1994 11:51:56 -0400
  11440. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!cs.utexas.edu!uunet!news1.digex.net!usenet
  11441. From: Chris Milton <cmilton@access4.digex.net>
  11442. Newsgroups: comp.protocols.kermit.misc
  11443. Subject: Newer QL-Kermit?
  11444. Date: Wed, 28 Sep 1994 11:20:29 -0400 (EDT)
  11445. Organization: Express Access Online Communications, USA
  11446. Lines: 15
  11447. Message-Id: <Pine.SUN.3.90.940928111444.544A-100000@access4.digex.net>
  11448. Nntp-Posting-Host: access4.digex.net
  11449. Mime-Version: 1.0
  11450. Content-Type: TEXT/PLAIN; charset=US-ASCII
  11451. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  11452.  
  11453.  
  11454. Has anyone written a newer QL-Kermit for the
  11455. Sinclair Quantum Leap computer?
  11456. The QL-Kermit versions available from kermit.columbia.edu
  11457. use proprietary versions of BCPL and C, and
  11458. have few of the currently supported features
  11459. found in C-Kermit and MS-Kermit.
  11460.  
  11461. Christopher Milton  cmilton@access.digex.net
  11462. BA, linguistics, Macalester College, 1989   Work  (703) 358-5945
  11463. Arlington (VA) Central Library/Circulation/Reserves
  11464. My other cumputer {is,will be} a Sinclair QL, eh.
  11465.  
  11466.  
  11467.  
  11468.  
  11469. From news@columbia.edu Wed Sep 28 15:59:00 1994
  11470. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA08978
  11471.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 28 Sep 1994 11:59:09 -0400
  11472. Received: by apakabar.cc.columbia.edu id AA03030
  11473.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 28 Sep 1994 11:59:07 -0400
  11474. Path: news.columbia.edu!usenet
  11475. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  11476. Newsgroups: comp.protocols.kermit.misc
  11477. Subject: FTP Mirror Sites and CDROMs
  11478. Date: 28 Sep 1994 15:59:00 GMT
  11479. Organization: Columbia University
  11480. Lines: 125
  11481. Distribution: World
  11482. Message-Id: <36c3s4$2u4@apakabar.cc.columbia.edu>
  11483. Nntp-Posting-Host: fdc.cc.columbia.edu
  11484. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  11485.  
  11486. Dear friends,
  11487.  
  11488. I suppose I knew that this newsgroup would not last more than a week
  11489. before it deteriorated into a hot debate over software distribution
  11490. policies.  I have received numerous personal message to the effect of
  11491. "you are shooting yourself in the foot", "please reconsider!", "why
  11492. don't you charge for support?", "why don't you set up a 900 number?",
  11493. etc etc.  I don't have time to respond to each of these personally,
  11494. so I trust their senders are reading this.
  11495.  
  11496. The idea of this newsgroup is to exchange useful information about Kermit
  11497. software.  Rather than the developers and tech support people answering
  11498. questions on a one-to-one basis (which, of course, we still do), we hoped
  11499. that also answering them in a public forum would increase our productivity
  11500. and yours -- allowing us to spend less time on tech support and more on
  11501. development, since more people would see each question and answer, and
  11502. allowing users to see answers to their questions in many cases before they
  11503. even asked them.  Meanwhile, we have been working hard on new releases of
  11504. all the major Kermit programs, and the last thing we -- or you, dear
  11505. readers -- need is to be drawn into yet another endless debate over our
  11506. software distribution policies, a debate which has already run its course
  11507. many times over on other newsgroups.
  11508.  
  11509. Please pay attention to the following points:
  11510.  
  11511. NOTHING HAS CHANGED.  There is nothing new going on.  Look at the
  11512. copyright notice (this one is from C-Kermit):
  11513.  
  11514.   Copyright (C) 1985, 1994, Trustees of Columbia University in the City of
  11515.   New York.  The C-Kermit software may not be, in whole or in part,
  11516.   licensed or sold for profit as a software product itself, nor may it be
  11517.   included in or distributed with commercial products or otherwise
  11518.   distributed by commercial concerns to their clients or customers without
  11519.   written permission of the Office of Kermit Development and Distribution,
  11520.   Columbia University.  This copyright notice must not be removed,
  11521.   altered, or obscured.
  11522.  
  11523. What does this mean?  It does NOT mean that there cannot be ftp mirror
  11524. sites.  There have ALWAYS been ftp mirror sites.  It DOES mean that our
  11525. software cannot be SOLD by anyone without our permission.  This is nothing
  11526. more than common sense.  When the proprietor of a particular ftp site
  11527. posts a public message saying "Due to Columbia's restrictive prohibitions
  11528. we are removing all Kermit software from our server", think about what
  11529. they are really saying: "Because Columbia University won't let us copy
  11530. their copyrighted software, without their permission, onto our CDROM which
  11531. we sell, we are taking it off our ftp server, which also serves as the
  11532. master for our CDROM."  Quite honestly, and with no intention of offending
  11533. any particular, this means that they are not willing or able to set up
  11534. special procedures for making CDROMs that are not wholesale copies of
  11535. their ftp directories.
  11536.  
  11537. We have not asked ANYBODY to remove Kermit software from their ftp sites.
  11538.  
  11539. But, as I have stated repeatedly, if you get Kermit software from one of
  11540. these ftp mirror sites, and you have problems with it, it is very likely
  11541. going to be difficult for us to help you with your problems because we
  11542. have no control over those sites and we do not know, and do not have the
  11543. time to learn, which files, which versions, are there and how they might
  11544. have been reorganized, renamed, or edited, and even if we discover
  11545. problems with the Kermit software at these sites, we have no way to
  11546. correct them, and even if we did, it would be a waste of our time.
  11547.  
  11548. If, however, you get Kermit software from Columbia by ftp or by mail
  11549. order, then we can help you because we KNOW what we have, and if there are
  11550. mistakes we can correct them.
  11551.  
  11552. Thus, we RECOMMEND that if you are ftp'ing Kermit software from somewhere,
  11553. that somewhere should be kermit.columbia.edu.
  11554.  
  11555. This is not to say that some of the ftp sites, such as Garbo and Simtel
  11556. (which I have never had the time to check out personally, because I have
  11557. too many other, higher-priority demands on my time), are not 100% faithful
  11558. and up-to-date and perhaps even carry some added value.  If you find an
  11559. ftp site other than Columbia that you can trust, fine -- use it.  But
  11560. before you come to us for help, make sure the problems you are
  11561. experiencing were not introduced at the mirror site.
  11562.  
  11563. Now, about CDROMs...  No, you can't put our software on a CDROM and sell
  11564. it without our permission, period.  You can't put ANYBODY'S copyrighted
  11565. software on a CDROM and sell it without permission of the copyright
  11566. holder.
  11567.  
  11568. They key word here is "permission".  Just ask.  We'll discuss it and see
  11569. how mutually beneficial terms can be arranged.  And in fact that is exactly
  11570. what is happening in numerous cases, including with Garbo and Simtel, and
  11571. some of the Linux distributors, etc.  We don't need to flood the airwaves
  11572. with inflammatory postings based upon incomplete knowledge.
  11573.  
  11574. Just remember that without an agreement that is beneficial to both the
  11575. CDROM maker and Columbia, the CDROM maker gets the money and we get the
  11576. extra work, AND we lose income we might otherwise have had.
  11577.  
  11578. I appreciate the many suggestions about how we can make the money we need,
  11579. but we already know our options.  Please remember that Kermit software
  11580. comes from a University and our "business" operates under constraints that
  11581. you are not familiar with, and you don't need to be.
  11582.  
  11583. As an end-user, you can get Kermit software, with quality control, with
  11584. support, all free (unless of course you elect to purchase the
  11585. documentation, which we view as a good investment -- it saves you time,
  11586. gives you quick access to all the features of the software, frees up our
  11587. time for more productive work, and helps pay for our continued development
  11588. and support efforts).
  11589.  
  11590. As an entrepreneur, however, if you want to make money from our work, you
  11591. have to give something back, and you have to discuss this with us and
  11592. reach an agreement before you can go ahead.
  11593.  
  11594. If there are still people who believe that we should place no restrictions
  11595. on the commercial redistribution of our software, just remember the story
  11596. of the goose that laid the golden egg.  I would like to think that there
  11597. are people who would like to see the Kermit effort continue, and these
  11598. people have to understand that we need to fund our work, and we want to do
  11599. this in the way that is least painful and offensive to the END USER.
  11600.  
  11601. If, however, these constant attacks on our policies continue, forces will
  11602. eventually come into play that will compel us to take a more rigid stance,
  11603. or shut down altogether, and everybody will lose.  So please, let us run
  11604. our own "business", use our software in good health, and let's put this
  11605. newsgroup back as it was last week -- a forum for the exchange of useful
  11606. information.
  11607.  
  11608. Thanks.
  11609.  
  11610. - Frank
  11611.  
  11612. From news@columbia.edu Wed Sep 28 03:33:50 1994
  11613. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA14601
  11614.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 28 Sep 1994 13:01:14 -0400
  11615. Received: by apakabar.cc.columbia.edu id AA08745
  11616.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 28 Sep 1994 13:01:13 -0400
  11617. Path: news.columbia.edu!panix!MathWorks.Com!yeshua.marcam.com!charnel.ecst.csuchico.edu!olivea!sgigate.sgi.com!sgiblab!swrinde!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  11618. From: jrd@cc.usu.edu (Joe Doupnik)
  11619. Newsgroups: comp.protocols.kermit.misc
  11620. Subject: Re: Columbia University MS-Kermit files removed from SimTel
  11621. Message-Id: <1994Sep28.093351.28046@cc.usu.edu>
  11622. Date: 28 Sep 94 09:33:50 MDT
  11623. References: <9409270646.kp1130@simtel.coast.net> <3699u3$fe9@Venus.mcs.com> <1994Sep27.125004.27971@cc.usu.edu> <36arh5$qpp@Mercury.mcs.com>
  11624. Organization: Utah State University
  11625. Lines: 33
  11626. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  11627.  
  11628. In article <36arh5$qpp@Mercury.mcs.com>, les@MCS.COM (Leslie Mikesell) writes:
  11629. > In article <1994Sep27.125004.27971@cc.usu.edu>,
  11630. > Joe Doupnik <jrd@cc.usu.edu> wrote:
  11631. >>The notice
  11632. >>says, amongst other things, a person/organization can't redistribute
  11633. >>the Columbia material for profit etc without prior clearance. That
  11634. >>seems to be very reasonable to me.
  11635. >>    Guess what's lacking about the Simtel CDROM distribution
  11636. >>process.
  11637. > The part that I don't understand is how the CDROM distribution is
  11638. > somehow different from the profit made by the internet providers
  11639. > and phone companies when someone arranges to ftp the files directly
  11640. > from Columbia.
  11641.     <part omitted>
  11642. > Les Mikesell
  11643. >   les@mcs.com
  11644. --------
  11645.     The CDROMs are sold for profit, based on the contained programs.
  11646. The attraction is not a nifty logo on the CDROM or fancy box or terrific
  11647. browser program, though such items are worthy of charging if desired, but
  11648. the target objects themselves, without which there won't be much attraction.
  11649. That's commercial activity, trading for profit in works copyrighted by others
  11650. and covered by copyright restrictions. 
  11651.     BBS operators making a profit offering the programs would be much
  11652. the same as the CDROM case, in my view.
  11653.     Internet service providers are selling time on their wires,
  11654. irrespective of the files or programs used at the other end of the wire.
  11655.     The copyright restriction says you can't make money selling our 
  11656. product without our permission.
  11657.     Guess who is going to all kinds of trouble to ensure that the programs
  11658. remain free?
  11659.     Joe D.
  11660.  
  11661. From news@columbia.edu Wed Sep 28 17:03:34 1994
  11662. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA14840
  11663.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 28 Sep 1994 13:03:41 -0400
  11664. Received: by apakabar.cc.columbia.edu id AA08924
  11665.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 28 Sep 1994 13:03:40 -0400
  11666. Path: news.columbia.edu!usenet
  11667. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  11668. Newsgroups: comp.protocols.kermit.misc
  11669. Subject: Re: Newer QL-Kermit?
  11670. Date: 28 Sep 1994 17:03:34 GMT
  11671. Organization: Columbia University
  11672. Lines: 20
  11673. Distribution: World
  11674. Message-Id: <36c7l6$8mi@apakabar.cc.columbia.edu>
  11675. References: <Pine.SUN.3.90.940928111444.544A-100000@access4.digex.net>
  11676. Nntp-Posting-Host: fdc.cc.columbia.edu
  11677. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  11678.  
  11679. In article <Pine.SUN.3.90.940928111444.544A-100000@access4.digex.net> Chris  
  11680. Milton <cmilton@access4.digex.net> writes:
  11681. > Has anyone written a newer QL-Kermit for the
  11682. > Sinclair Quantum Leap computer?
  11683. > The QL-Kermit versions available from kermit.columbia.edu
  11684. > use proprietary versions of BCPL and C, and
  11685. > have few of the currently supported features
  11686. > found in C-Kermit and MS-Kermit.
  11687. Not to my knowledge.  And knowing nothing about the QL,
  11688. I'd recommend -- if it does not have a restrictive memory
  11689. architecture and if it does have a C compiler -- adapting
  11690. C-Kermit.  If anybody is interested in pursuing this,
  11691. get in touch with me and I'll help get you started.
  11692.  
  11693. - Frank
  11694. x
  11695. x
  11696. x
  11697.  
  11698.  
  11699. From news@columbia.edu Wed Sep 28 17:46:28 1994
  11700. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA19067
  11701.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 28 Sep 1994 13:46:33 -0400
  11702. Received: by apakabar.cc.columbia.edu id AA12533
  11703.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 28 Sep 1994 13:46:31 -0400
  11704. Path: news.columbia.edu!usenet
  11705. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  11706. Newsgroups: comp.protocols.kermit.misc
  11707. Subject: Re: Solved Kermit download problem, sort of
  11708. Date: 28 Sep 1994 17:46:28 GMT
  11709. Organization: Columbia University
  11710. Lines: 107
  11711. Distribution: World
  11712. Message-Id: <36ca5k$c7j@apakabar.cc.columbia.edu>
  11713. Nntp-Posting-Host: fdc.cc.columbia.edu
  11714. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  11715.  
  11716. Roland Kwee <rkwee@ee.pdx.edu> writes:
  11717. >  ... I reduced the packet size all the way down to 500
  11718. > bytes and 1 window. No problem for a file up to 1.2 MB sofar, and a
  11719. > throughput of 1029 cps. (on a 14.4KB V.42b connection). It seems to be a
  11720. > problem of buffer overflow, either in the remote cisco terminal server,
  11721. > or in the remote modem.
  11722. As you may know, Cisco terminal servers (certain models) support hardware
  11723. flow control in one direction only,  In any case, they must be configured
  11724. to use it, and so must the attached modem.
  11725.  
  11726. > By the way, on the cisco, I do a 'terminal download', on the remote
  11727. > Sun, I don't use stty to set crtscts, and the remote Kermit (189)
  11728. > says 'no modem signals available'.
  11729. Right -- it's on a pty.  Since you are coming in through a terminal server,
  11730. you should also tell the remote Kermit to "set flow none" since TCP/IP is
  11731. handling the flow control.
  11732.  
  11733. > Here is my question. What do you know about the packet size used by
  11734. > between the modems? This may be factor both in preventing buffer overflow
  11735. > at the remote cisco, and in the ultimate throughput. Using a small packet
  11736. > size less than 500 bytes, but just filling a modem block might be just
  11737. > very efficient. And the difference in result between my 200 and 250 byte
  11738. > packet size may be caused by the modems too.
  11739. Maybe -- you have many factors in play here: two modems, the serial side
  11740. of the terminal server, the configuration of the two modems, the
  11741. configuration of the terminal server port, the network side of the
  11742. terminal server, the telnet server on the host, the pty driver on the
  11743. host, etc -- you could spend a week or two trying to pin down exactly
  11744. where the bottleneck is.  And then you would know about only one
  11745. connection (on a given day!) out of an infinite number of possible
  11746. connections.
  11747.  
  11748. > So far, in the Kermit books, the issue of the terminal server is
  11749. > mentioned in passing, and the issue of the block protocol between the
  11750. > MNP5 and V42b modems not at all.
  11751. >
  11752. There is not much point in second-guessing the modems.  A detailed study
  11753. of the various MNP levels (at least ten at last count), V.42 and V.42bis,
  11754. and their interaction with the various modulation techniques as
  11755. implemented in a wide variety of chips from different manufacturers, as
  11756. programmed and packaged by an even wider variety of manufacturers, and the
  11757. specific interactions of modem A with modem B over a connection with
  11758. particular characteristics (noise, etc), transmitting a particular type of
  11759. data, would reveal very little that could be applied in the general case.
  11760. Even to the extent that MNPx and V.y are standards, their particular
  11761. implementation -- and variable parameters -- are completely unpredictable
  11762. from modem to modem, and from PROM version to PROM version in the same
  11763. modem make and model.  Some modems even have... bugs.
  11764.  
  11765. > Another, related issue, is that there are rumours that the modems
  11766. > actually connect SYNCHRONOUSLY.  They don't transmit the start and stop
  11767. > bits. As a result, the theoretical 100 percent throughput of a 14.4KB
  11768. > modem is not 1440 cps, but 1800 cps. Do you know anything about this?
  11769. >
  11770. Yes, the higher modem standards do this.  But the serial interfaces, in and
  11771. out, are still asynchronous, 10 bits per character.  And there is some
  11772. overhead to synchronous connections too, though generally far less than the
  11773. 20% overhead added by start & stop bits.  Plus the overhead added by the
  11774. HDLC-like error-correction protocols used by V.42, etc.
  11775.  
  11776. > Another issue that may be very important, but is not in the Kermit books,
  11777. > is what I call the size of the pipeline. With a packet size of p, and
  11778. > window size of w, there is a maximum of p times w bytes at any given 
  11779. > instant in buffers between the two kermits. I guess that if my 
  11780. > system administrator says that I should reduce the blocksize to 1000
  11781. > to prevent problems with the cisco, I should make p * w < 1000.
  11782. Correct.  But most modern Kermit programs will take care of this
  11783. themselves automatically, after the first few buffer overflows.  But of
  11784. course, you can get better performance if you set the optimal limit
  11785. beforehand, assuming you can find out what it is, and then it doesn't
  11786. change out from under you during the course of the transfer.
  11787.  
  11788. > If the flow control is not perfect between all components between
  11789. > the two kermits, those kermits maintain their own handshake with the
  11790. > ACK packets. To be absolutely safe, I should find the smallest buffer
  11791. > and keep p * w smaller than that buffer. And that buffer could well
  11792. > be the block size used by the modems.
  11793. Or any other limiting device.
  11794.  
  11795. > Sorry for my rambling style, but I am very excited that after so many
  11796. > months of struggling I finally get good results.
  11797. While it is sometimes helpful to understand the issues in elaborate
  11798. detail, in the final analysis there are limitations on every connection,
  11799. and the limitations apply to all protocols that want to use it.  The
  11800. easiest way to cope with a difficult connection is to (a) first, ensure
  11801. that you have the most effective possible means of flow control in effect
  11802. at every juncture of the connection, and then (b) conduct a few
  11803. experiments regarding packet length and window size, and use whatever
  11804. combination results in the highest throughput.
  11805.  
  11806. If the efficiency is still really bad, and it is a connection that will be
  11807. used a lot, it makes sense to devote some time to isolating and clearing
  11808. the bottleneck.  In a connection like this one, it is very likely to be
  11809. the buffering and/or flow-control capacity of the terminal server.  Over
  11810. the past years, I've done detailed evaluations of terminal servers and
  11811. found just about every one of them lacking in some crucial area: flow
  11812. control and/or buffer size and/or transparency.  There is also a tendency
  11813. for newer modems to be buggy, and there is also a good chance that your
  11814. line is noisy -- if your modem has a "retrain" light, keep an eye on it.
  11815.  
  11816. - Frank
  11817.  
  11818. From news@columbia.edu Wed Sep 28 19:42:42 1994
  11819. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA26139
  11820.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 28 Sep 1994 15:05:38 -0400
  11821. Received: by apakabar.cc.columbia.edu id AA19276
  11822.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 28 Sep 1994 15:05:37 -0400
  11823. Newsgroups: comp.protocols.kermit.misc
  11824. Path: news.columbia.edu!panix!MathWorks.Com!yeshua.marcam.com!charnel.ecst.csuchico.edu!nic-nac.CSU.net!usc!howland.reston.ans.net!swrinde!ihnp4.ucsd.edu!news.service.uci.edu!ttinews!mosspc.TTI.COM!moss
  11825. From: moss@tti.com (Les Moss)
  11826. Subject: Re: 16550A, PCI (Was: Computer hangs when line is dropped)
  11827. Message-Id: <moss.1.00CDD0BC@tti.com>
  11828. Lines: 105
  11829. Sender: usenet@ttinews.tti.com (Usenet Admin)
  11830. Nntp-Posting-Host: mosspc.tti.com
  11831. Organization: TTI
  11832. X-Newsreader: Trumpet for Windows [Version 1.0 Rev B final beta #1]
  11833. References: <35pesr$sun@liberator.et.tudelft.nl> <35rc73$l8s@archsrv.rz.unibw-muenchen.de>
  11834. Date: Wed, 28 Sep 1994 19:42:42 GMT
  11835. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  11836.  
  11837. In article <35rc73$l8s@archsrv.rz.unibw-muenchen.de> p41bsmk@applsrv.rz.unibw-muenchen.de (Peter Schmolck) writes:
  11838. >From: p41bsmk@applsrv.rz.unibw-muenchen.de (Peter Schmolck)
  11839. >Subject: 16550A, PCI (Was: Computer hangs when line is dropped)
  11840. >Date: 22 Sep 1994 07:37:07 GMT
  11841.  
  11842. >>I recently got a new PC. I transferred Kermit and all the scripts
  11843. >>it uses from my old to my new system. 
  11844. >[......]
  11845. >>On my old system (286, EMS, 16550A) this worked perfect. On my
  11846. >>new system (486, PCI, EMM386, 16550A) the computer hangs as soon
  11847. >>as the line is dropped after filling in all info.
  11848.  
  11849.  
  11850. >>Are there any known problems with PCI systems, 16550A's and Kermit?
  11851.  
  11852. The problem is probably your I/O chip which incorrectly emulates a
  11853. 16550 UART.  Here is a description of the problem and a source of fixes:
  11854.  
  11855. SMC 37C665 SUPER I/O CONTROLLER SERIAL PORT FAILURES 3-22-94
  11856.  
  11857. An incompatibility has been discovered between the Standard Microsystems
  11858. Corporation FDC37C665 Super I/O controller serial port and various
  11859. communication programs and serial port drivers.
  11860.  
  11861. DESCRIPTION OF PROBLEM
  11862.  
  11863. The SMC part powers up in the 16450 UART non-FIFO mode and is later
  11864. programmed by serial port drivers or communication programs "on the fly" to
  11865. operate in the 16550 UART mode with FIFOs.  If data has been received while
  11866. in the 16450 mode (be it power up garbage or valid data), it gets placed
  11867. into a holding buffer and the character pending bit of the status register
  11868. gets set.  Once the FDC37C665 is put in 16550 mode the holding register and
  11869. character pending status bit cannot be cleared.  Communication applications
  11870. see the bit set in the status register and begin reading the FIFO in an
  11871. attempt to empty it and clear the status bit.  The result is the status
  11872. register never gets cleared and the communication application is stuck in a
  11873. loop trying to clear it.
  11874.  
  11875. END USER IMPLICATIONS
  11876.  
  11877. Potentially, any application or driver that makes use of the serial port
  11878. FIFOs may exhibit this failure symptom.  Failures have been reported by
  11879. users running Microsoft Windows For Workgroups V3.11 TERMINAL.EXE
  11880. application with an external modem attached to the on-board serial port.
  11881. One failing scenario starts when the PC system is powered-up prior to the
  11882. modem being powered up and invalid characters get placed into the 16450
  11883. holding register.
  11884.  
  11885. The problem has also been reported when running Microsoft Windows V3.1 and
  11886. using a printer connected to the serial port.  The system experiences a
  11887. "lock -up" condition.
  11888.  
  11889. The problem can also show up while running DOS based communication programs
  11890. such as Procomm+ or Crosstalk.
  11891.  
  11892. SOLUTION
  11893.  
  11894. There are drivers available that allow error free operation in Windows for
  11895. Workgroups, Windows 3.1, and DOS .  The "new" drivers simply clear the 16450
  11896. holding register prior to switching from the 16450 mode to the 16550 mode.
  11897. There is no performance degradation experienced when using the "new"
  11898. drivers.  Please refer to the following description of the drivers.  These
  11899. drivers have been through regression testing and are known to be "robust".
  11900. They are available on the Intel BBS (916-356-3600) under file name
  11901. SMC_FIFO.EXE (a self-extracting ZIP file).  SMC_FIFO.EXE contains the
  11902. following files:
  11903.  
  11904. FILE NAME       OPERATING SYSTEM        COMMENTS
  11905.  
  11906. README.TXT      N/A                     A copy of this text file.
  11907.  
  11908. SERIAL.386      Windows for Workgroups  MS WfW serial port driver.
  11909. SERIAL.TXT      N/A                     Install instructions for SERIAL.386.
  11910.  
  11911. COMM.DRV        Windows 3.1             MS Win3.1 comm port driver.
  11912. COMM.TXT        N/A                     Install instructions for COMM.DRV.
  11913.  
  11914. COMS.EXE        DOS                     Executable file to be run prior to
  11915.                                         starting DOS communications S/W.
  11916. COMS.TXT        N/A                     Readme file for COMS.EXE.
  11917.  
  11918.  
  11919. These drivers are also available on the SMC BBS (516-273-4936) and the
  11920. Microsoft BBS (206-936-6735) under the following file names:
  11921.  
  11922. FILE NAME       OPERATING SYSTEM        COMMENTS
  11923.  
  11924. WG1001.EXE      Windows for Workgroups  Self-extracting zip file.  This 
  11925.                                         driver is currently being shipped 
  11926.                                         with the OEM versions of WFW.
  11927.  
  11928.  
  11929. COMM.ZIP        Windows 3.1             
  11930.  
  11931.  
  11932. UART550.EXE     DOS                     Self-extracting zip file.  The 
  11933.                                         file can be added to a batch file 
  11934.                                         to run prior to running the DOS 
  11935.                                         communication program.
  11936.  
  11937.  
  11938. In the May/June time frame, SMC will release a new stepping of the 
  11939. component that fixes this problem.  We will use this new stepping of the 
  11940. component on new product builds when it becomes available.
  11941.  
  11942.  
  11943. From news@columbia.edu Wed Sep 28 20:52:40 1994
  11944. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA11825
  11945.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 28 Sep 1994 18:19:23 -0400
  11946. Received: by apakabar.cc.columbia.edu id AA06042
  11947.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 28 Sep 1994 18:19:20 -0400
  11948. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!swiss.ans.net!prodigy.com!prodigy.com!not-for-mail
  11949. From: davidsen@usenety1.news.prodigy.com (Bill Davidsen)
  11950. Newsgroups: comp.protocols.kermit.misc
  11951. Subject: Re: Kermit Access/Availability
  11952. Date: 28 Sep 1994 16:52:40 -0400
  11953. Organization: Prodigy Services
  11954. Lines: 62
  11955. Distribution: World
  11956. Message-Id: <36cl2o$cmq@usenety1.news.prodigy.com>
  11957. References: <36a12c$4qu@news.halcyon.com> <36a9p5$q9n@apakabar.cc.columbia.edu>
  11958. Nntp-Posting-Host: loopback.news.prodigy.com
  11959. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  11960.  
  11961. In article <36a9p5$q9n@apakabar.cc.columbia.edu>,
  11962.  
  11963. :This is sad, because the slick software industry has put forward the
  11964. :idea that all one needs to do is click on something and the magic is
  11965. :unleashed, which is completely untrue and misleading in the case of
  11966. :communications software.
  11967.  
  11968. Those of us writing and giving away software are doing a good job of
  11969. making it easier to use, too. My modem accepts incoming calls and
  11970. establishes a connection in the appropriate way, and tells me what it is
  11971. while keeping my DTE at 38400 all the time. I have ripped autobauding
  11972. code out of my getty and every other program because "magic happens."
  11973.  
  11974. :                          They raise the expectations of users unreasonably
  11975. :high.
  11976.  
  11977. Nope they/we raise the expectations of users *reasonably* high.
  11978.  
  11979. :       There is no way that communications software can know what is going
  11980. :on outside the computer, and I maintain that there is no way that it can
  11981. :even test for this in a nonobtrusive, nondestructive fashion.
  11982.  
  11983. You may maintain that, but if Kermit doesn't start negotiating all this
  11984. window size and number of windows stuff between modern implementations,
  11985. then people will go to some program which does "work right" in most
  11986. cases. The idea of sending a "here's the packet size I can talk and my
  11987. windows limit, and my install file says eight bit clean" doesn't sound
  11988. destructive to me, and currect versions of Kermit smile and send back a
  11989. "say what?" message.
  11990.  
  11991. :I think that those of us on this newsgroup are capable of entering the
  11992. :two or three commands needed to make Kermit transfers default any way we
  11993. :want them to.  The question is what the DEFAULT defaults should be for
  11994. :somebody who doesn't know anything and swallows the hype.  I think the
  11995. :conservative ones are still the most appropriate.
  11996.  
  11997. The user community keeps "raising the bar" on ease of use. no one is
  11998. complaining about the defaults, they're complaining about having to tune
  11999. them instead of having them negotiated. About having to set buffer size
  12000. instead of having the program try to get memory and using it well,
  12001. instead of using a reasonable rule of thumb instead of "one miniscule
  12002. buffer." Have the sender start with three 1k buffers and tune up or down
  12003. until a buffer take about 1500-2000ms to send or the error rate goes up.
  12004.  
  12005. The way to fund the Kermit support is to make the program less arcane,
  12006. have it work right more of the time, and use the saved time to program
  12007. improvements. Restricting distribution so average users don't get it
  12008. with popular collections is not going to increase usage, and if there is
  12009. a user who isn't aware that s/he should get newer versions of
  12010. everything, they're hiding.
  12011.  
  12012. In the last week you have gotten two major sites to stop distributing
  12013. Kermit. You may think the world will beat a path to your ftp site now,
  12014. but I bet people will just take another program off the site they know,
  12015. or the CD of the collection from that site, and if it's shareware at
  12016. least a few will register. Chuck Forsberg (sp?) must be dancing in
  12017. glee.
  12018.  
  12019. -- 
  12020. Speaking *from* but never *for* Prodigy
  12021.     "Pain builds moral fiber"  -my dad
  12022.     "Pain hurts"  -me
  12023.  
  12024. From news@columbia.edu Wed Sep 28 22:34:17 1994
  12025. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA12726
  12026.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 28 Sep 1994 18:34:21 -0400
  12027. Received: by apakabar.cc.columbia.edu id AA07204
  12028.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 28 Sep 1994 18:34:20 -0400
  12029. Path: news.columbia.edu!usenet
  12030. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  12031. Newsgroups: comp.protocols.kermit.misc
  12032. Subject: Re: Kermit Access/Availability
  12033. Date: 28 Sep 1994 22:34:17 GMT
  12034. Organization: Columbia University
  12035. Lines: 30
  12036. Distribution: World
  12037. Message-Id: <36cr19$711@apakabar.cc.columbia.edu>
  12038. References: <36cl2o$cmq@usenety1.news.prodigy.com>
  12039. Nntp-Posting-Host: fdc.cc.columbia.edu
  12040. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  12041.  
  12042. In article <36cl2o$cmq@usenety1.news.prodigy.com>  
  12043. davidsen@usenety1.news.prodigy.com (Bill Davidsen) writes:
  12044. > In article <36a9p5$q9n@apakabar.cc.columbia.edu>,
  12045. > ...
  12046. > The user community keeps "raising the bar" on ease of use. no one is
  12047. > complaining about the defaults, they're complaining about having to tune
  12048. > them instead of having them negotiated. About having to set buffer size
  12049. > instead of having the program try to get memory and using it well,
  12050. > instead of using a reasonable rule of thumb instead of "one miniscule
  12051. > buffer." Have the sender start with three 1k buffers and tune up or down
  12052. > until a buffer take about 1500-2000ms to send or the error rate goes up.
  12053. Sure it would be great if we could get it to work automatically every time.
  12054. Perhaps I downplayed what it already does automatically.  Packet size and
  12055. window size are indeed negotiated, and the actual packet length and window
  12056. size varies during the transfer according to prevailing conditions, but
  12057. never above the negotiated lengths.
  12058.  
  12059. Parity (Even, Odd, or Mark) is discovered automatically by the protocol.
  12060.  
  12061. Timers are a bit trickier and need more work to be optimized automatically
  12062. on a dynamic basis as conditions change.
  12063.  
  12064. Control-character unprefixing cannot be negotiated.  That's because neither
  12065. Kermit program knows anything about what boxes are lying between the two
  12066. Kermit programs, and so can never say with any certainty that a particular
  12067. control character is safe.  You can't send a test pattern either, without
  12068. the risk of breaking or hopelessly wedging the connection.
  12069.  
  12070. - Frank
  12071.  
  12072. From news@columbia.edu Wed Sep 28 21:32:09 1994
  12073. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA13409
  12074.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 28 Sep 1994 18:46:06 -0400
  12075. Received: by apakabar.cc.columbia.edu id AA08214
  12076.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 28 Sep 1994 18:46:05 -0400
  12077. Path: news.columbia.edu!panix!MathWorks.Com!yeshua.marcam.com!charnel.ecst.csuchico.edu!nic-nac.CSU.net!usc!math.ohio-state.edu!cs.utexas.edu!swrinde!howland.reston.ans.net!EU.net!sunic!news.funet.fi!zippo.uwasa.fi!uwasa.fi!ts
  12078. From: ts@uwasa.fi (Timo Salmi)
  12079. Newsgroups: comp.protocols.kermit.misc
  12080. Subject: Re: Columbia University MS-Kermit files suspended at Garbo
  12081. Date: 28 Sep 1994 21:32:09 GMT
  12082. Organization: University of Vaasa
  12083. Lines: 15
  12084. Message-Id: <36cncp$oac@zippo.uwasa.fi>
  12085. References: <ts9409272153.29032@chyde.uwasa.fi>
  12086. Nntp-Posting-Host: uwasa.fi
  12087. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  12088.  
  12089. In article <ts9409272153.29032@chyde.uwasa.fi> ts@chyde.uwasa.fi (Timo Salmi) writes:
  12090. :Tue 27-Sep-94: MsKermit utilities have been suspended at Garbo.  The
  12091.  
  12092. The negotiations to resolve the situation between Garbo and Columbia
  12093. have now broken down.  The MsKermit material has been permanently
  12094. withdrawn from Garbo.  From now on I am anwering no questions
  12095. relating to this matter or MsKermit or its availablity.
  12096.  
  12097.    All the best, Timo
  12098.  
  12099. ..................................................................
  12100. Prof. Timo Salmi      Co-moderator of comp.archives.msdos.announce
  12101. Moderating at garbo.uwasa.fi anonymous FTP  archives  128.214.87.1
  12102. Faculty of Accounting & Industrial Management; University of Vaasa
  12103. Internet: ts@uwasa.fi   BBS +(358)-61-3170972; FIN-65101,  Finland
  12104.  
  12105. From news@columbia.edu Wed Sep 28 21:57:30 1994
  12106. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA17622
  12107.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 28 Sep 1994 19:55:13 -0400
  12108. Received: by apakabar.cc.columbia.edu id AA13342
  12109.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 28 Sep 1994 19:55:12 -0400
  12110. Path: news.columbia.edu!panix!MathWorks.Com!solaris.cc.vt.edu!insosf1.infonet.net!mcrware.microware.com!jejones
  12111. From: jejones@microware.com (James Jones)
  12112. Newsgroups: comp.protocols.kermit.misc
  12113. Subject: info utilities and old Kermits
  12114. Date: 28 Sep 1994 21:57:30 GMT
  12115. Organization: Microware Systems Corp., Des Moines, Iowa
  12116. Lines: 12
  12117. Distribution: world
  12118. Message-Id: <36cosa$639@mcrware.microware.com>
  12119. Nntp-Posting-Host: snake.microware.com
  12120. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  12121.  
  12122. I use a certain "information utility," and in the past I used a different
  12123. one (it cost too much).  I'd love to use Kermit for file transfers to/from
  12124. it--end-of-line conversion for text files is a pain--but the utility has
  12125. a very old, limited Kermit, and despite repeated pleas has no apparent
  12126. intention of upgrading.  Does anyone keep track of what services out
  12127. there support up-to-date Kermit file transfer?
  12128.  
  12129.     James Jones
  12130.  
  12131. Opinions herein are those of the author, and not necessarily those of
  12132. any organization.
  12133.  
  12134.  
  12135. From news@columbia.edu Thu Sep 29 00:34:28 1994
  12136. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA23208
  12137.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 28 Sep 1994 21:37:48 -0400
  12138. Received: by apakabar.cc.columbia.edu id AA20823
  12139.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 28 Sep 1994 21:37:45 -0400
  12140. Path: news.columbia.edu!panix!MathWorks.Com!news.duke.edu!concert!balsam!usenet
  12141. From: Honeycutt@unca.edu (Mike Honeycutt)
  12142. Newsgroups: comp.protocols.kermit.misc
  12143. Subject: "Just Send It" mode - possible?
  12144. Date: 29 Sep 1994 00:34:28 GMT
  12145. Organization: UNC Asheville University Computing
  12146. Lines: 12
  12147. Message-Id: <36d22k$9mt@balsam.unca.edu>
  12148. Nntp-Posting-Host: mikeh.cc.unca.edu
  12149. X-Newsreader: WinVN version 0.80
  12150. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  12151.  
  12152. I have a basic understanding of how when downloading/uploading
  12153. a file Kermit sends a packet, waits for other Kermit to acknowledge
  12154. receiving it, sends another packet, etc.
  12155.  
  12156. Would it be possible to tell the sending Kermit to "Just Send It"
  12157. without the error checking?  Most of our asyn lines on campus
  12158. are very clean (not including modems) and I would put up with
  12159. the occasional corrupt file to make the download go faster.
  12160.  
  12161. (BTW, the person who established this newsgroup had a good idea).
  12162.  
  12163. Mike Honeycutt  UNC Asheville University Computing  honeycutt@unca.edu
  12164.  
  12165. From news@columbia.edu Thu Sep 29 01:47:53 1994
  12166. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA23714
  12167.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 28 Sep 1994 21:47:56 -0400
  12168. Received: by apakabar.cc.columbia.edu id AA21534
  12169.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 28 Sep 1994 21:47:54 -0400
  12170. Path: news.columbia.edu!usenet
  12171. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  12172. Newsgroups: comp.protocols.kermit.misc
  12173. Subject: Re: "Just Send It" mode - possible?
  12174. Date: 29 Sep 1994 01:47:53 GMT
  12175. Organization: Columbia University
  12176. Lines: 23
  12177. Distribution: World
  12178. Message-Id: <36d6c9$l0s@apakabar.cc.columbia.edu>
  12179. References: <36d22k$9mt@balsam.unca.edu>
  12180. Nntp-Posting-Host: fdc.cc.columbia.edu
  12181. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  12182.  
  12183. In article <36d22k$9mt@balsam.unca.edu> Honeycutt@unca.edu (Mike Honeycutt)  
  12184. writes:
  12185. > I have a basic understanding of how when downloading/uploading
  12186. > a file Kermit sends a packet, waits for other Kermit to acknowledge
  12187. > receiving it, sends another packet, etc.
  12188. > Would it be possible to tell the sending Kermit to "Just Send It"
  12189. > without the error checking?  Most of our asyn lines on campus
  12190. > are very clean (not including modems) and I would put up with
  12191. > the occasional corrupt file to make the download go faster.
  12192. No.  Noise is not the only reason for having packets with error-checking
  12193. and sequencing information.  I'd go into detail here, but I'm kind of
  12194. tired, and you can read about this in any networking text -- flow control
  12195. at various levels, presentation functions, etc.  And don't forget that
  12196. errors can occur in many places other than the communication medium --
  12197. lost interrupts in a flaky PC, etc.
  12198.  
  12199. > (BTW, the person who established this newsgroup had a good idea).
  12200. I'm beginning to wonder...
  12201.  
  12202. - Frank
  12203.  
  12204. From news@columbia.edu Thu Sep 29 08:43:37 1994
  12205. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA12763
  12206.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 29 Sep 1994 05:23:28 -0400
  12207. Received: by apakabar.cc.columbia.edu id AA13590
  12208.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 29 Sep 1994 05:23:27 -0400
  12209. Path: news.columbia.edu!panix!MathWorks.Com!news.duke.edu!convex!cs.utexas.edu!swrinde!howland.reston.ans.net!EU.net!sun4nl!news.nic.surfnet.nl!tudelft.nl!liberator.et.tudelft.nl!dutepp6.et.tudelft.nl!richard
  12210. From: richard@dutepp6.et.tudelft.nl (Richard Kooijman)
  12211. Newsgroups: comp.protocols.kermit.misc
  12212. Subject: Re: 16550A, PCI (Was: Computer hangs when line is dropped)
  12213. Date: 29 Sep 1994 08:43:37 GMT
  12214. Organization: Delft University of Technology, Dept. of Electrical Engineering
  12215. Lines: 55
  12216. Message-Id: <36dunp$6gh@liberator.et.tudelft.nl>
  12217. References: <35pesr$sun@liberator.et.tudelft.nl> <35rc73$l8s@archsrv.rz.unibw-muenchen.de> <moss.1.00CDD0BC@tti.com>
  12218. Nntp-Posting-Host: dutepp6.et.tudelft.nl
  12219. X-Newsreader: NN version 6.5.0 #1 (NOV)
  12220. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  12221.  
  12222. moss@tti.com (Les Moss) writes:
  12223.  
  12224. >DESCRIPTION OF PROBLEM
  12225.  
  12226. >The SMC part powers up in the 16450 UART non-FIFO mode and is later
  12227. >programmed by serial port drivers or communication programs "on the fly" to
  12228. >operate in the 16550 UART mode with FIFOs.  If data has been received while
  12229. >in the 16450 mode (be it power up garbage or valid data), it gets placed
  12230. >into a holding buffer and the character pending bit of the status register
  12231. >gets set.  Once the FDC37C665 is put in 16550 mode the holding register and
  12232. >character pending status bit cannot be cleared.  Communication applications
  12233. >see the bit set in the status register and begin reading the FIFO in an
  12234. >attempt to empty it and clear the status bit.  The result is the status
  12235. >register never gets cleared and the communication application is stuck in a
  12236. >loop trying to clear it.
  12237.  
  12238. In my case Kermit started up just fine, apparently using the chips in FIFO
  12239. mode, run a script, hung up the line and then failed.
  12240. It seems to me that after the hang-up Kermit is reinitializing the ports
  12241. all over again without testing first while the chips were already in FIFO mode.
  12242.  
  12243. BTW Kermit 3.14 (I got a beta version to test and they asked me not
  12244. to distribute, so don't ask) works fine, but I don't understand Joe's remarks
  12245. that only 2x4 cures helped. I don't think this is such a big problem with
  12246. the chips.
  12247.  
  12248. >There are drivers available that allow error free operation in Windows for
  12249. >Workgroups, Windows 3.1, and DOS .  The "new" drivers simply clear the 16450
  12250. >holding register prior to switching from the 16450 mode to the 16550 mode.
  12251.  
  12252. Is it just me or is this a wise thing to do anyway?
  12253. You'll lose a character I guess but you are switching modes and not picking
  12254. up on an existing communication.
  12255. BTW why doesn't the computer (or chips) come back to the living when
  12256. a character arrives that CAN be retrieved?
  12257.  
  12258. >They are available on the Intel BBS (916-356-3600) under file name
  12259. >SMC_FIFO.EXE (a self-extracting ZIP file).  SMC_FIFO.EXE contains the
  12260. >following files:
  12261.  
  12262. Could somebody place these files up for ftp somewhere?
  12263. Please, please.
  12264.  
  12265. >In the May/June time frame, SMC will release a new stepping of the 
  12266. >component that fixes this problem.  We will use this new stepping of the 
  12267. >component on new product builds when it becomes available.
  12268.  
  12269. I purchased my computer and card in September. I can't imagine my supplier
  12270. has a backlog of old components (or they are buying them cheap), so has there
  12271. been a delay in getting these new components out?
  12272.  
  12273. Thanks for the info!
  12274.  
  12275.  
  12276. Richard.
  12277.  
  12278. From news@columbia.edu Thu Sep 29 09:52:16 1994
  12279. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA13921
  12280.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 29 Sep 1994 06:01:43 -0400
  12281. Received: by apakabar.cc.columbia.edu id AA14391
  12282.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 29 Sep 1994 06:01:41 -0400
  12283. Path: news.columbia.edu!panix!MathWorks.Com!news.duke.edu!convex!cs.utexas.edu!howland.reston.ans.net!EU.net!sunic!news.funet.fi!zippo.uwasa.fi!uwasa.fi!ts
  12284. From: ts@uwasa.fi (Timo Salmi)
  12285. Newsgroups: comp.protocols.kermit.misc,comp.archives.msdos.d
  12286. Subject: Re: Columbia University MS-Kermit files removed from SimTel
  12287. Followup-To: comp.protocols.kermit.misc
  12288. Date: 29 Sep 1994 09:52:16 GMT
  12289. Organization: University of Vaasa
  12290. Lines: 32
  12291. Message-Id: <36e2og$4ad@zippo.uwasa.fi>
  12292. References: <1994Sep27.125004.27971@cc.usu.edu> <36arh5$qpp@Mercury.mcs.com> <1994Sep28.093351.28046@cc.usu.edu>
  12293. Nntp-Posting-Host: uwasa.fi
  12294. Xref: news.columbia.edu comp.protocols.kermit.misc:293 comp.archives.msdos.d:8832
  12295. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  12296.  
  12297. In article <1994Sep28.093351.28046@cc.usu.edu> jrd@cc.usu.edu (Joe Doupnik) writes:
  12298. :    The CDROMs are sold for profit, based on the contained programs.
  12299. :The attraction is not a nifty logo on the CDROM or fancy box or terrific
  12300. :browser program, though such items are worthy of charging if desired, but
  12301. :the target objects themselves, without which there won't be much attraction.
  12302. :That's commercial activity, trading for profit in works copyrighted by others
  12303. :and covered by copyright restrictions. 
  12304.  
  12305. Partly, but it is much more than that.  For example SimTel (and
  12306. Garbo if we'll have a CDROM) sell the directory arrangements, the
  12307. index files, the huge amount of work done in preselection, the virus
  12308. and integrity testing performed on the material.  Of course those
  12309. could not exists without the existence of the actual authors'
  12310. product, but saying "trading for profit in works copyrighted by
  12311. others and covered by copyright restrictions" is far too narrow a
  12312. view to this issue as I have tried to point out in private
  12313. conversation. 
  12314.  
  12315. You have all the right to forbid us having your material on our
  12316. archives as a result of our material going to CDROMs.  That is
  12317. unequivocal, and we abide without a protest in that respect.  But
  12318. presenting us as commercially utilizing the work others is
  12319. inaccurate and highly oversimplified.  There is a considerable value
  12320. added in maintaining and making such colections.
  12321.  
  12322.    All the best, Timo
  12323.  
  12324. ..................................................................
  12325. Prof. Timo Salmi      Co-moderator of comp.archives.msdos.announce
  12326. Moderating at garbo.uwasa.fi anonymous FTP  archives  128.214.87.1
  12327. Faculty of Accounting & Industrial Management; University of Vaasa
  12328. Internet: ts@uwasa.fi   BBS +(358)-61-3170972; FIN-65101,  Finland
  12329.  
  12330. From news@columbia.edu Tue Sep 27 04:00:44 1994
  12331. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA17553
  12332.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 29 Sep 1994 07:06:59 -0400
  12333. Received: by apakabar.cc.columbia.edu id AA16136
  12334.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 29 Sep 1994 07:06:49 -0400
  12335. Newsgroups: comp.protocols.kermit.misc
  12336. Path: news.columbia.edu!panix!MathWorks.Com!news.duke.edu!convex!cs.utexas.edu!utnut!torn!uunet.ca!uunet.ca!xenitec!nic.hookup.net!matrix!matrix.ajlc.waterloo.on.ca!ajlill
  12337. From: ajlill@matrix.AJLC.Waterloo.On.Ca (Tony Lill)
  12338. Subject: Re: Exiting kermit without modem hangup
  12339. In-Reply-To: fdc@fdc.cc.columbia.edu's message of 20 Sep 1994 18:28:06 GMT
  12340. Message-Id: <AJLILL.94Sep27000044@matrix.AJLC.Waterloo.On.Ca>
  12341. Sender: news@tlill.hookup.net (Net News Admin)
  12342. Organization: A. J. Lill Consultants, Cambridge, Ont.
  12343. References: <35koc2INNvl@ope001.iao.ford.com> <35n9jm$kui@apakabar.cc.columbia.edu>
  12344. Date: Tue, 27 Sep 1994 04:00:44 GMT
  12345. Lines: 36
  12346. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  12347.  
  12348. >>>>> "Frank" == Frank da Cruz <fdc@fdc.cc.columbia.edu> writes:
  12349. In article <35n9jm$kui@apakabar.cc.columbia.edu> fdc@fdc.cc.columbia.edu (Frank da Cruz) writes:
  12350.  
  12351.  
  12352.     Frank> In article <35koc2INNvl@ope001.iao.ford.com>
  12353.     Frank> jamulla@iao.ford.com (John Jamulla) writes:
  12354.     >> Is it possible to exit kermit without dropping the phone line?
  12355.     >> 
  12356.     Frank> Remember there are hundreds of different Kermit programs.
  12357.     Frank> For some the answer is yes, for others it is no.  In UNIX,
  12358.     Frank> of course, the answer is no.  A fundamental aspect of the
  12359.     Frank> UNIX operating system is that when a process exits, all of
  12360.     Frank> its open files are closed.  There is no way around it.  But
  12361.     Frank> this is not really the question you wanted to ask.
  12362.  
  12363. Right answer, but wrong reason. I use a kermit script to automate
  12364. dialing up my IP providor on my UNIX box, and then it runs a script to
  12365. start up the slip link. When the slip link is up, the is another
  12366. process holding the device open, but much to my chagrin, when I exited
  12367. Kermit, it went out ot it's way to hang up the modem. What I ended up
  12368. doing was at the end ot the shell script that started slip, I grabbed
  12369. kermit's pid from the lock file and killed process (after playing with
  12370. the lock files so nothing else tried to go for the tty). This left the
  12371. device open, and slip running.
  12372.  
  12373. It would be nice if there was a cleaner way to exit Kermit without it
  12374. hanging up. If someone else is using kermit at the same time my slip
  12375. link comes up, they will be most dis-pleased! Now that I've grabbed
  12376. the source for C-Kermit 188, maybe I'll hack it in.
  12377.  
  12378. --
  12379. Tony Lill,                         Tony.Lill@AJLC.Waterloo.ON.CA
  12380. President, A. J. Lill Consultants                 (519) 241 2461
  12381. 539 Grand Valley Dr., Cambridge, Ont.    fax/data (519) 650 3571
  12382.  
  12383. "Welcome to All Things UNIX, where if it's not UNIX, it's CRAP!"
  12384.  
  12385. From news@columbia.edu Thu Sep 29 12:46:27 1994
  12386. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA16497
  12387.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 29 Sep 1994 08:46:31 -0400
  12388. Received: by apakabar.cc.columbia.edu id AA20884
  12389.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 29 Sep 1994 08:46:30 -0400
  12390. Path: news.columbia.edu!usenet
  12391. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  12392. Newsgroups: comp.protocols.kermit.misc
  12393. Subject: Re: Exiting kermit without modem hangup
  12394. Date: 29 Sep 1994 12:46:27 GMT
  12395. Organization: Columbia University
  12396. Lines: 20
  12397. Message-Id: <36ecv3$kci@apakabar.cc.columbia.edu>
  12398. References: <AJLILL.94Sep27000044@matrix.AJLC.Waterloo.On.Ca>
  12399. Nntp-Posting-Host: fdc.cc.columbia.edu
  12400. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  12401.  
  12402. In article <AJLILL.94Sep27000044@matrix.AJLC.Waterloo.On.Ca>  
  12403. ajlill@matrix.AJLC.Waterloo.On.Ca (Tony Lill) writes:
  12404. > It would be nice if there was a cleaner way to exit Kermit without it
  12405. > hanging up. If someone else is using kermit at the same time my slip
  12406. > link comes up, they will be most dis-pleased! Now that I've grabbed
  12407. > the source for C-Kermit 188, maybe I'll hack it in.
  12408. When Kermit exits (_exit's), all open file descriptors are closed.  In
  12409. most UNIX operating systems, if you close a file descriptor on a tty
  12410. device, it turns off DTR, either momentarily or until the next open, thus
  12411. causing any attached modem to hang up unless it has been configured to
  12412. ignore DTR.  If you are able to prevent that from happening by having
  12413. another process use the same file descriptor, fine, but I can't swear that
  12414. this will work in all UNIX implementations -- any close vs last close, etc.
  12415.  
  12416. What you might be experiencing is a hangup due to Kermit sending the *modem*
  12417. command to hang up: <sec>plus-plus-plus<sec>ATH0<cr>.  To defeat this, all
  12418. you need to do is tell Kermit to "set dial modem-hangup off".
  12419.  
  12420. - Frank
  12421.  
  12422. From news@columbia.edu Thu Sep 29 13:31:31 1994
  12423. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA19634
  12424.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 29 Sep 1994 09:31:35 -0400
  12425. Received: by apakabar.cc.columbia.edu id AA23866
  12426.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 29 Sep 1994 09:31:33 -0400
  12427. Path: news.columbia.edu!usenet
  12428. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  12429. Newsgroups: comp.protocols.kermit.misc
  12430. Subject: FTP Mirrors and CDROMs - again
  12431. Date: 29 Sep 1994 13:31:31 GMT
  12432. Organization: Columbia University
  12433. Lines: 26
  12434. Message-Id: <36efjj$n9m@apakabar.cc.columbia.edu>
  12435. Nntp-Posting-Host: fdc.cc.columbia.edu
  12436. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  12437.  
  12438. Yes, indeed, some sites like Garbo and Simtel add value to their
  12439. collections by adding an index, or scanning for viruses, or packaging
  12440. the files up in different ways, before copying them to CDROM.
  12441.  
  12442. But I'm willing to bet that the majority of CDROMs out there are nothing
  12443. more than get-rich-quick schemes.  Start up gopher in the evening, come
  12444. back in the morning, copy everything that came in to a tape, take it to a
  12445. fulfillment house that will cut 1000 CDROMs from it for a dollar each,
  12446. then advertise them for sale at $20 per.  Anybody can do it.
  12447.  
  12448. How do we tell the difference?  Even when a company adds value to our
  12449. product, why is it that their work should be compensated and not ours?
  12450.  
  12451. Finally, once again and for the last time:  We, Columbia University,
  12452. did not and never have told Garbo, Simtel, or any other site to remove
  12453. Kermit software from their archives.  These sites elected to remove
  12454. Kermit software for their own reasons, having nothing to do with our
  12455. policy -- or lack thereof -- toward ftp mirror sites.
  12456.  
  12457. I posted a long message about this yesterday, explaining our position in
  12458. detail, but Keith Peterson (of Simtel) was kind enough to point out that I
  12459. had mistakenly capitalized "World" in the Distribution field, and so many
  12460. sites might have rejected it, since the planets did not match.  I hesitate
  12461. to post it again lest the embers be fanned again into flames.
  12462.  
  12463. - Frank
  12464.  
  12465. From news@columbia.edu Wed Sep 28 11:29:13 1994
  12466. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA21307
  12467.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 29 Sep 1994 09:59:29 -0400
  12468. Received: by apakabar.cc.columbia.edu id AA25721
  12469.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 29 Sep 1994 09:59:28 -0400
  12470. Path: news.columbia.edu!panix!MathWorks.Com!news.duke.edu!convex!cs.utexas.edu!usc!howland.reston.ans.net!agate!msuinfo!harbinger.cc.monash.edu.au!news.cs.su.oz.au!news.adelaide.edu.au!gateway.dircsa.org.au!gateway.dircsa.org.au!not-for-mail
  12471. From: arthur@gateway.dircsa.org.au (Arthur Marsh)
  12472. Newsgroups: comp.protocols.kermit.misc
  12473. Subject: Re: MS-Kermit with FOSSIL
  12474. Date: 28 Sep 1994 20:59:13 +0930
  12475. Organization: DIRCSA - Disability Information and Resource Centre
  12476. Lines: 30
  12477. Message-Id: <36bk29$mb9@gateway.dircsa.org.au>
  12478. References: <1994Sep23.130448.27699@cc.usu.edu>
  12479. Nntp-Posting-Host: gateway.dircsa.org.au
  12480. X-Newsreader: TIN [version 1.1 PL8]
  12481. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  12482.  
  12483. Joe Doupnik (jrd@cc.usu.edu) wrote:
  12484.  
  12485. : >   Bnu /F+ /L:1=19200 /M- /T=256 /R=4096 /Z2
  12486. : > 
  12487. : > MS-Kermit is quite happy with a simple set port 2 command to
  12488. : > work with BNU loaded on COM2:.
  12489. : > 
  12490. : > Are there any pitfalls to using kermit this way?
  12491. : -------------
  12492. :     If it works then the answer is no problem. Be sure to tell MSK
  12493. : to use a BIOS serial port (SET PORT BIOSn, n=1..4) rather than the hardware 
  12494. : port (COMx) so there will be no bus wars about hardware ownership. Your
  12495. : example suggests that you told Kermit to use the hardware, which it is
  12496. : able to do better than Fossil drivers. Since MSK tries to restore hardware
  12497. : to its pre-use state (but leaves DTR high and the speed where Kermit last
  12498. : used it, etc) you probably got away with stealing the port from BNU; no 
  12499. : guarantees that this always works.
  12500. :     The BNU docs should say that all applications should use it via
  12501. : Bios serial port Int 14h functions. I don't know if they do.
  12502.  
  12503. Hmm, I'll check with David Nugent (BNU author) about it, as SET PORT BIOS 2 
  12504. hasn't worked for me when BNU was loaded.
  12505.  
  12506. BTW, MS-Kermit has been great for logging modem connect failure diagnostics
  12507. when running a bbs.
  12508.  
  12509. -- 
  12510. Arthur Marsh, telephone +61-8-370-2365, fax +61-8-370-2133, +61-8-223-5082 
  12511.                arthur@gateway.dircsa.org.au, arthur@cswamp.apana.org.au
  12512. .endofsig
  12513.  
  12514. From news@columbia.edu Thu Sep 29 13:28:02 1994
  12515. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA22665
  12516.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 29 Sep 1994 10:16:52 -0400
  12517. Received: by apakabar.cc.columbia.edu id AA27205
  12518.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 29 Sep 1994 10:16:51 -0400
  12519. Path: news.columbia.edu!panix!MathWorks.Com!zombie.ncsc.mil!news.duke.edu!convex!cs.utexas.edu!uunet!hearst.acc.Virginia.EDU!gems.vcu.edu!agnew
  12520. From: agnew@gems.vcu.edu (Brainwave Surfer)
  12521. Newsgroups: comp.protocols.kermit.misc
  12522. Subject: Are Columbia U's files still avial for FTP?
  12523. Message-Id: <1994Sep29.092803.1960@gems.vcu.edu>
  12524. Date: 29 Sep 94 09:28:02 -0400
  12525. References: <ts9409272153.29032@chyde.uwasa.fi> <36cncp$oac@zippo.uwasa.fi>
  12526. Organization: Medical College of Virginia
  12527. Lines: 12
  12528. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  12529.  
  12530.  
  12531. I can see both sides of this, Columbia U's, and us...  I still mourn the
  12532. loss of Kermit from the Net.  However, will the Columbia U's FTP site still
  12533. be open?  Do they have a Gopher server up yet?  
  12534.  
  12535. Jim
  12536.  
  12537.          /^^^\   \ /   Jim Agnew         | AGNEW@RUBY.VCU.EDU  (Internet)
  12538.         /      >  ||   Neurosurgery,     | AGNEW@VCUVAX        (Bitnet)
  12539.    /\_/     '   \  /   MCV-VCU           | This disc will self destruct in
  12540.  /________________>    Richmond, VA, USA | five seconds.  Good luck, Jim..."
  12541.     *** Error, brain bugcheck, mind rebooted...
  12542.  
  12543. From news@columbia.edu Thu Sep 29 15:22:39 1994
  12544. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA28127
  12545.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 29 Sep 1994 11:22:45 -0400
  12546. Received: by apakabar.cc.columbia.edu id AA02461
  12547.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 29 Sep 1994 11:22:43 -0400
  12548. Path: news.columbia.edu!usenet
  12549. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  12550. Newsgroups: comp.protocols.kermit.misc
  12551. Subject: Re: Are Columbia U's files still avial for FTP?
  12552. Date: 29 Sep 1994 15:22:39 GMT
  12553. Organization: Columbia University
  12554. Lines: 19
  12555. Message-Id: <36em3v$2cm@apakabar.cc.columbia.edu>
  12556. References: <1994Sep29.092803.1960@gems.vcu.edu>
  12557. Nntp-Posting-Host: fdc.cc.columbia.edu
  12558. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  12559.  
  12560. In article <1994Sep29.092803.1960@gems.vcu.edu> agnew@gems.vcu.edu (Brainwave  
  12561. Surfer) writes:
  12562. > I can see both sides of this, Columbia U's, and us...  I still mourn the
  12563. > loss of Kermit from the Net.  However, will the Columbia U's FTP site still
  12564. > be open?  Do they have a Gopher server up yet?  
  12565. >
  12566. Come on, everybody -- nothing has changed.  Of course Kermit software is
  12567. available via ftp, just as it always was.  Once again, for the umpteenth
  12568. time, nobody has told ANYBODY to take Kermit software off their ftp sites.
  12569.  
  12570. Let me explain again, for the benefit of those who did not read my earlier
  12571. messages, some of which might not have been delivered.  The two sites who
  12572. posted announcements to this effect removed the Kermit files from their
  12573. archives because we could not reach an agreement about their SELLING our
  12574. software on CDROM.  There was no need at all for them to remove Kermit
  12575. from their ftp sites.  Complain to them about it, we had nothing to do with
  12576. it.  Our policies have not changed.
  12577.  
  12578. - Frank
  12579.  
  12580. From news@columbia.edu Thu Sep 29 15:04:00 1994
  12581. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA01261
  12582.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 29 Sep 1994 11:49:00 -0400
  12583. Received: by apakabar.cc.columbia.edu id AA04674
  12584.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 29 Sep 1994 11:48:53 -0400
  12585. Path: news.columbia.edu!panix!MathWorks.Com!news.duke.edu!convex!cs.utexas.edu!swrinde!elroy.jpl.nasa.gov!netline-fddi.jpl.nasa.gov!news.byu.edu!cwis.isu.edu!u.cc.utah.edu!xmission!xmission!not-for-mail
  12586. From: fozz@xmission.com (Fozziliny Moo)
  12587. Newsgroups: comp.protocols.kermit.misc
  12588. Subject: Which ethernet card for MS-Kermit?
  12589. Date: 29 Sep 1994 09:04:00 -0600
  12590. Organization: XMission Public Access Internet (801 539 0900)
  12591. Lines: 23
  12592. Message-Id: <36el10$5hq@xmission.xmission.com>
  12593. Nntp-Posting-Host: xmission
  12594. Summary: Need recomendation on Net card.
  12595. Keywords: TCPIP, MS-Kermit, Ethernet
  12596. X-Newsreader: NN version 6.5.0 #2 (NOV)
  12597. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  12598.  
  12599.  
  12600. I need some recomendations for ethernet cards for PC's to connect a few
  12601. machines to a thin-coax feed which goes to a couple of Unix boxes (AIX,
  12602. but that probably doesn't matter). 
  12603.  
  12604. I've worked with MS-Kermit over Novell Netware on several occassions, but
  12605. now I am working in the absence of a PC network medium and would like to
  12606. use the thin coax just to Telnet (via MS-Kermit) to the Unix machines. 
  12607.  
  12608. Is an NE2000 compatible card going to work for me? Then do I just load 
  12609. IPX? Or do I use a different driver software? And then, if I understand
  12610. correctly, upon knowing the software interrupt of the device driver I 
  12611. can just go into MS-Kermit and say SET TCP/IP PACKET-DRIVER-INTERRUPT \xXX.
  12612.  
  12613. If someone can confirm or correct my assumptions here, I would appreciate it.
  12614. (Joe maybe?)
  12615.  
  12616. -Fozz (D L Barton)
  12617.  
  12618. -- 
  12619. ----fozz@xmission.com---------In Real Life: Doran L. Barton-----------------
  12620. ``Praise to the man who has commuted with Jehovah.''
  12621.     -A common misconception in Christian theology.
  12622.  
  12623. From news@columbia.edu Thu Sep 29 02:20:03 1994
  12624. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA07756
  12625.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 29 Sep 1994 12:44:22 -0400
  12626. Received: by apakabar.cc.columbia.edu id AA09693
  12627.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 29 Sep 1994 12:44:17 -0400
  12628. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!agate!dog.ee.lbl.gov!news.cs.utah.edu!cc.usu.edu!jrd
  12629. From: jrd@cc.usu.edu (Joe Doupnik)
  12630. Newsgroups: comp.protocols.kermit.misc
  12631. Subject: Re: Kermit Access/Availability
  12632. Message-Id: <1994Sep29.082003.28169@cc.usu.edu>
  12633. Date: 29 Sep 94 08:20:03 MDT
  12634. References: <36a12c$4qu@news.halcyon.com> <36a9p5$q9n@apakabar.cc.columbia.edu> <36cl2o$cmq@usenety1.news.prodigy.com>
  12635. Distribution: world
  12636. Organization: Utah State University
  12637. Lines: 55
  12638. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  12639.  
  12640. In article <36cl2o$cmq@usenety1.news.prodigy.com>, davidsen@usenety1.news.prodigy.com (Bill Davidsen) writes:
  12641. > In article <36a9p5$q9n@apakabar.cc.columbia.edu>,
  12642. > :This is sad, because the slick software industry has put forward the
  12643. > :idea that all one needs to do is click on something and the magic is
  12644. > :unleashed, which is completely untrue and misleading in the case of
  12645. > :communications software.
  12646. > Those of us writing and giving away software are doing a good job of
  12647. > making it easier to use, too. My modem accepts incoming calls and
  12648. > establishes a connection in the appropriate way, and tells me what it is
  12649. > while keeping my DTE at 38400 all the time. I have ripped autobauding
  12650. > code out of my getty and every other program because "magic happens."
  12651. > :                          They raise the expectations of users unreasonably
  12652. > :high.
  12653. > Nope they/we raise the expectations of users *reasonably* high.
  12654. > :       There is no way that communications software can know what is going
  12655. > :on outside the computer, and I maintain that there is no way that it can
  12656. > :even test for this in a nonobtrusive, nondestructive fashion.
  12657. > You may maintain that, but if Kermit doesn't start negotiating all this
  12658. > window size and number of windows stuff between modern implementations,
  12659. > then people will go to some program which does "work right" in most
  12660. > cases. The idea of sending a "here's the packet size I can talk and my
  12661. > windows limit, and my install file says eight bit clean" doesn't sound
  12662. > destructive to me, and currect versions of Kermit smile and send back a
  12663. > "say what?" message.
  12664.     May I interject a little reality check here? Thanks.
  12665.     You are inventing straw men, those windows things. What you clearly
  12666. do not know is the protocol negotiates such items to the maximum common
  12667. denominator of both sides. That's exactly what you want isn't it: max
  12668. capability, automatically.
  12669.     You seem to think that a person can Command a comms channel into
  12670. submission ("here's the packet size...eight bit clean") and it will work. 
  12671. I wish you were correct so we could have less code and commands to give.
  12672. As we have been trying to explain, there are situations where one can't
  12673. run an automatic check, 8-bit cleanliness being one of them, buffer capacity
  12674. being another. Things break outside of the programs, they really do.
  12675.     So what's your real complaint?
  12676.     Well, I suspect it might be "It doesn't go at warp speed in MY
  12677. particular situation right out of the box." Right? Do you ever have to
  12678. adjust any comms program at all? No boxes to check, etc? What do you tell 
  12679. customers when the program doesn't work in their nebulous environment?
  12680.     Kermit settings are shipped to work the first time, which I presume
  12681. is a worthy goal of any program. Working faster (but one goal, another being
  12682. reliably) is available to anyone who reads a few pages and tries things in
  12683. their particular enviroment. And we provide the tools and documentation to 
  12684. cope with a wide variety of "their particular environments", yet you complain 
  12685. about that.
  12686.  
  12687.     Joe D.
  12688.  
  12689.  
  12690. From news@columbia.edu Thu Sep 29 06:00:38 1994
  12691. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA18435
  12692.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 29 Sep 1994 15:17:42 -0400
  12693. Received: by apakabar.cc.columbia.edu id AA04568
  12694.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 29 Sep 1994 15:17:41 -0400
  12695. Path: news.columbia.edu!panix!MathWorks.Com!yeshua.marcam.com!zip.eecs.umich.edu!newsxfer.itd.umich.edu!gatech!swrinde!howland.reston.ans.net!wupost!kuhub.cc.ukans.edu!falcon.cc.ukans.edu!jeff
  12696. Newsgroups: comp.protocols.kermit.misc
  12697. Subject: Re: Columbia University MS-Kermit files suspended at Garbo
  12698. Message-Id: <1994Sep29.110039.73644@kuhub.cc.ukans.edu>
  12699. From: jeff@falcon.cc.ukans.edu (Jeff Bangert)
  12700. Date: 29 Sep 94 11:00:38 CDT
  12701. References: <ts9409272153.29032@chyde.uwasa.fi>
  12702. Nntp-Posting-Host: falcon.cc.ukans.edu
  12703. X-Newsreader: TIN [version 1.2 PL2]
  12704. Lines: 16
  12705. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  12706.  
  12707. Timo Salmi (ts@chyde.uwasa.fi) wrote:
  12708. : Tue 27-Sep-94: MsKermit utilities have been suspended at Garbo.  The
  12709. : files have not yet been physically deleted, but their read
  12710. : permissions have been removed.  For all details of the situation
  12711. : please see the comp.protocols.kermit.misc newsgroup.  Please do not
  12712. : direct any queries about this to Garbo moderators.  Kermit is
  12713. : distributed from the Columbia University.  The support person there
  12714. : is Frank da Cruz fdc@watsun.cc.columbia.edu.
  12715.  
  12716. I just scanned all the messages on this group -- could not find an
  12717. announcement.  Could someone point me to it?
  12718.  
  12719. Thanks,
  12720.  
  12721. Jeff Bangert, Computer Center, University of Kansas
  12722. jeff@falcon.cc.ukans.edu
  12723.  
  12724. From news@columbia.edu Thu Sep 29 18:10:26 1994
  12725. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA18645
  12726.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 29 Sep 1994 15:21:50 -0400
  12727. Received: by apakabar.cc.columbia.edu id AA04839
  12728.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 29 Sep 1994 15:21:49 -0400
  12729. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!math.ohio-state.edu!usenet
  12730. From: davis@pacific.mps.ohio-state.edu
  12731. Newsgroups: comp.protocols.kermit.misc
  12732. Subject: MS-Kermit question
  12733. Date: 29 Sep 1994 18:10:26 GMT
  12734. Organization: None
  12735. Lines: 26
  12736. Message-Id: <36evui$9t@mathserv.mps.ohio-state.edu>
  12737. Reply-To: davis@amy.tch.harvard.edu
  12738. Nntp-Posting-Host: pacific.mps.ohio-state.edu
  12739. X-Newsreader: S-Lang: slrn (0.1.4.0)
  12740. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  12741.  
  12742. Hi,
  12743.  
  12744.   This has been bugging me for a long time but I do not know what to do
  12745. about it:  Ctrl-ENTER returns a Ctrl-J character (linefeed).  Is there
  12746. anyway to suppress this?   That is, have Ctrl-ENTER simply return a RET
  12747. character?
  12748.  
  12749.   The reason I would like to see this is that I use the Ctrl key alot.
  12750. I hold down the Ctrl key using my left hand and somtimes press another
  12751. character using my right hand (e.g., Ctrl-k).  Then I will move my right
  12752. hand and press `enter'.  However, sometimes my left hand has not fully
  12753. released the Ctrl key yet and as a result, I get Ctrl-ENTER which Kermit
  12754. maps to a ^J.
  12755.  
  12756.   This might be a silly issue for most but I find it frustrating.
  12757.   
  12758. Thanks,  
  12759. --
  12760.      _____________
  12761. #___/John E. Davis\_________________________________________________________
  12762. #
  12763. # internet: davis@amy.tch.harvard.edu
  12764. #   bitnet: davis@ohstpy
  12765. #   office: 617-735-6746
  12766. #
  12767.  
  12768.  
  12769. From news@columbia.edu Thu Sep 29 19:39:46 1994
  12770. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA20041
  12771.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 29 Sep 1994 15:39:54 -0400
  12772. Received: by apakabar.cc.columbia.edu id AA06278
  12773.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 29 Sep 1994 15:39:52 -0400
  12774. Path: news.columbia.edu!usenet
  12775. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  12776. Newsgroups: comp.protocols.kermit.misc
  12777. Subject: Re: MS-Kermit question
  12778. Date: 29 Sep 1994 19:39:46 GMT
  12779. Organization: Columbia University
  12780. Lines: 28
  12781. Message-Id: <36f562$63q@apakabar.cc.columbia.edu>
  12782. References: <36evui$9t@mathserv.mps.ohio-state.edu>
  12783. Nntp-Posting-Host: fdc.cc.columbia.edu
  12784. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  12785.  
  12786. In article <36evui$9t@mathserv.mps.ohio-state.edu>  
  12787. davis@pacific.mps.ohio-state.edu writes:
  12788. >   This has been bugging me for a long time but I do not know what to do
  12789. > about it:  Ctrl-ENTER returns a Ctrl-J character (linefeed).  Is there
  12790. > anyway to suppress this?   That is, have Ctrl-ENTER simply return a RET
  12791. > character?
  12792. Type "show key"
  12793. Kermit says: "Push key to be shown:"
  12794. Push Ctrl-Enter
  12795. Kermit says:
  12796. Scan code \5386 is defined as
  12797. Ascii char: ^J \10
  12798.  
  12799. Now you see the scan code and the definition.  Now use SET KEY
  12800. to change the definition:
  12801.  
  12802. set key \5386 \13
  12803.  
  12804. (13 is the ASCII code for carriage return).
  12805.  
  12806. Put the "set key" command in your MSCUSTOM.INI file if you always want
  12807. this definition in effect.
  12808.  
  12809. Do the same thing for any other keys or key combos that you would like
  12810. to remap.
  12811.  
  12812. - Frank
  12813.  
  12814. From news@columbia.edu Thu Sep 29 18:45:41 1994
  12815. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA25697
  12816.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 29 Sep 1994 16:58:39 -0400
  12817. Received: by apakabar.cc.columbia.edu id AA13552
  12818.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 29 Sep 1994 16:58:37 -0400
  12819. Path: news.columbia.edu!panix!zip.eecs.umich.edu!newsxfer.itd.umich.edu!gatech!swiss.ans.net!howland.reston.ans.net!wupost!simtel.coast.net!w8sdz
  12820. From: w8sdz@SimTel.Coast.NET (Keith Petersen)
  12821. Newsgroups: comp.protocols.kermit.misc
  12822. Subject: Re: Are Columbia U's files still avial for FTP?
  12823. Message-Id: <9409291845.AA6057@SimTel.Coast.NET>
  12824. Date: Thu, 29 Sep 1994 18:45:41 GMT
  12825. Organization: SimTel, the Coast to Coast Software Repository (tm)
  12826. References: <1994Sep29.092803.1960@gems.vcu.edu> <36em3v$2cm@apakabar.cc.columbia.edu>
  12827. Lines: 26
  12828. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  12829.  
  12830. fdc@fdc.cc.columbia.edu (Frank da Cruz) writes:
  12831. >Let me explain again, for the benefit of those who did not read my earlier
  12832. >messages, some of which might not have been delivered.  The two sites who
  12833. >posted announcements to this effect removed the Kermit files from their
  12834. >archives because we could not reach an agreement about their SELLING our
  12835. >software on CDROM.  There was no need at all for them to remove Kermit
  12836. >from their ftp sites.  Complain to them about it, we had nothing to do with
  12837. >it.  Our policies have not changed.
  12838.  
  12839. Frank, this is not true.  SimTel does NOT sell programs.  The CD-ROMs
  12840. provide DISTRIBUTION OF PROGRAMS and the proceeds are used to support
  12841. the cost of maintaining the collection and providing a site for them to
  12842. be distributed free of charge to users on the Internet.  Without this
  12843. income SimTel would cease to exist.
  12844.  
  12845. There are 11,000 programs on the CDROMs made from the SimTel collection.
  12846. Beaking that down, the cost of distributing each program is US$0.003177.
  12847. For those not familar with U.S. currancy, that is 3/10ths of ONE CENT! 
  12848. It takes 100 cents to make one dollar.
  12849.  
  12850. Keith
  12851. --
  12852. Keith Petersen
  12853. General Manager of SimTel, the Coast to Coast Software Repository (tm)
  12854. Internet: w8sdz@SimTel.Coast.NET    or      w8sdz@Vela.ACS.Oakland.Edu
  12855. Uucp: uunet!umich!vela!w8sdz                     BITNET: w8sdz@OAKLAND
  12856.  
  12857. From news@columbia.edu Tue Sep 27 16:00:11 1994
  12858. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA26541
  12859.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 29 Sep 1994 17:09:22 -0400
  12860. Received: by apakabar.cc.columbia.edu id AA14563
  12861.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 29 Sep 1994 17:09:21 -0400
  12862. Newsgroups: comp.protocols.kermit.misc
  12863. Path: news.columbia.edu!panix!MathWorks.Com!solaris.cc.vt.edu!swiss.ans.net!howland.reston.ans.net!news.sprintlink.net!uunet!newsgw.mentorg.com!oddball.sjc.mentorg.com!sdl!plts!big.info.att.com!allegra!ulysses!nntpa!erredfs1!not-for-mail
  12864. From: pd@erredfs1.er.att.com (Paul Davidson)
  12865. Subject: Kermit for SUN UNIX ?
  12866. Message-Id: <CwspsE.3xH@nntpa.cb.att.com>
  12867. Originator: lsl@erredfs1
  12868. Sender: lsl%erredfs1@apakabar.cc.columbia.edu (Lisa Paterno)
  12869. Nntp-Posting-Host: erredfs1.er.att.com
  12870. Organization: Paul Davidson INC.
  12871. Distribution: att
  12872. Date: Tue, 27 Sep 1994 16:00:11 GMT
  12873. Lines: 8
  12874. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  12875.  
  12876.  
  12877.     The Subject says it all Where can I get the source or
  12878. binaries for kermit on SUN OS (UNIX) ?/
  12879. -- 
  12880.  
  12881. The Opinions Expressed Are Soley Mine And Do Not
  12882. In Any Way Express The Opinions Of My Employer.
  12883.  
  12884.  
  12885. From news@columbia.edu Thu Sep 29 14:57:18 1994
  12886. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA28610
  12887.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 29 Sep 1994 17:33:22 -0400
  12888. Received: by apakabar.cc.columbia.edu id AA16812
  12889.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 29 Sep 1994 17:33:20 -0400
  12890. Path: news.columbia.edu!panix!MathWorks.Com!news.duke.edu!news-feed-1.peachnet.edu!gatech!psuvax1!news.cc.swarthmore.edu!netnews.upenn.edu!msuinfo!harbinger.cc.monash.edu.au!news.cs.su.oz.au!news.adelaide.edu.au!gateway.dircsa.org.au!gateway.dircsa.org.au!not-for-mail
  12891. From: arthur@gateway.dircsa.org.au (Arthur Marsh)
  12892. Newsgroups: comp.protocols.kermit.misc
  12893. Subject: Re: MS-Kermit with FOSSIL
  12894. Date: 30 Sep 1994 00:27:18 +0930
  12895. Organization: DIRCSA - Disability Information and Resource Centre
  12896. Lines: 33
  12897. Message-Id: <36ekke$7o2@gateway.dircsa.org.au>
  12898. References: <1994Sep23.130448.27699@cc.usu.edu>
  12899. Nntp-Posting-Host: gateway.dircsa.org.au
  12900. X-Newsreader: TIN [version 1.1 PL8]
  12901. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  12902.  
  12903. Joe Doupnik (jrd@cc.usu.edu) wrote:
  12904.  
  12905. : >   Bnu /F+ /L:1=19200 /M- /T=256 /R=4096 /Z2
  12906. : > 
  12907. : > MS-Kermit is quite happy with a simple set port 2 command to
  12908. : > work with BNU loaded on COM2:.
  12909. : > 
  12910. : > Are there any pitfalls to using kermit this way?
  12911. : -------------
  12912. :     If it works then the answer is no problem. Be sure to tell MSK
  12913. : to use a BIOS serial port (SET PORT BIOSn, n=1..4) rather than the hardware 
  12914. : port (COMx) so there will be no bus wars about hardware ownership. Your
  12915. : example suggests that you told Kermit to use the hardware, which it is
  12916. : able to do better than Fossil drivers. Since MSK tries to restore hardware
  12917. : to its pre-use state (but leaves DTR high and the speed where Kermit last
  12918. : used it, etc) you probably got away with stealing the port from BNU; no 
  12919. : guarantees that this always works.
  12920. :     The BNU docs should say that all applications should use it via
  12921. : Bios serial port Int 14h functions. I don't know if they do.
  12922. :     Joe D.
  12923.  
  12924. I gave using the BIOS serial port a try, using BNU/I=1+ as David Nugent 
  12925. suggested. 
  12926.  
  12927. Kermit didn't like BIOS2 at 19200 bps though...
  12928.  
  12929. My original means of operation (leaving BNU loaded and running MS-Kermit
  12930. on Port 2) seems to work fine.
  12931.  
  12932. -- 
  12933. Arthur Marsh, telephone +61-8-370-2365, fax +61-8-370-2133, +61-8-223-5082 
  12934.                arthur@gateway.dircsa.org.au, arthur@cswamp.apana.org.au
  12935. .endofsig
  12936.  
  12937. From news@columbia.edu Thu Sep 29 19:02:06 1994
  12938. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA28821
  12939.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 29 Sep 1994 17:36:46 -0400
  12940. Received: by apakabar.cc.columbia.edu id AA17044
  12941.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 29 Sep 1994 17:36:44 -0400
  12942. Path: news.columbia.edu!panix!MathWorks.Com!news2.near.net!das-news.harvard.edu!cantaloupe.srv.cs.cmu.edu!bb3.andrew.cmu.edu!andrew.cmu.edu!pf2d+
  12943. From: Pedro Ferroni <pf2d+@andrew.cmu.edu>
  12944. Newsgroups: comp.protocols.kermit.misc
  12945. Subject: kermit script
  12946. Date: Thu, 29 Sep 1994 15:02:06 -0400
  12947. Organization: Carnegie Mellon, Pittsburgh, PA
  12948. Lines: 14
  12949. Message-Id: <kiWkwiK00WB7B75aIr@andrew.cmu.edu>
  12950. Nntp-Posting-Host: po5.andrew.cmu.edu
  12951. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  12952.  
  12953. I have a kermit version that responds
  12954.  
  12955. IBM-PC Kermit-MS v2.29b 19 Feb87
  12956.  
  12957. 1) Should I get a new one ? (and how)
  12958. 2) How do I find instructions to set up a scrip so i don't have do enter
  12959. password, user id, telent unix, etc every time.
  12960.  
  12961. Thanks for the info.
  12962.  
  12963. Pedro
  12964. Westinghouse Pittsburgh
  12965. ferroni.ped%wec@dialcom.tymnet.com
  12966.  
  12967.  
  12968. From news@columbia.edu Thu Sep 29 19:31:03 1994
  12969. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA01097
  12970.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 29 Sep 1994 18:03:47 -0400
  12971. Received: by apakabar.cc.columbia.edu id AA19346
  12972.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 29 Sep 1994 18:03:45 -0400
  12973. Path: news.columbia.edu!panix!MathWorks.Com!solaris.cc.vt.edu!swiss.ans.net!howland.reston.ans.net!news.sprintlink.net!nwnexus!news.halcyon.com!chinook!ken
  12974. From: ken@chinook.halcyon.com (Ken Pizzini)
  12975. Newsgroups: comp.protocols.kermit.misc
  12976. Subject: Re: "Just Send It" mode - possible?
  12977. Date: 29 Sep 1994 19:31:03 GMT
  12978. Organization: What, me?
  12979. Lines: 28
  12980. Distribution: World
  12981. Message-Id: <36f4ln$fja@news.halcyon.com>
  12982. References: <36d22k$9mt@balsam.unca.edu> <36d6c9$l0s@apakabar.cc.columbia.edu>
  12983. Nntp-Posting-Host: chinook.halcyon.com
  12984. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  12985.  
  12986. In article <36d6c9$l0s@apakabar.cc.columbia.edu>,
  12987. Frank da Cruz <fdc@fdc.cc.columbia.edu> wrote:
  12988. >In article <36d22k$9mt@balsam.unca.edu> Honeycutt@unca.edu (Mike Honeycutt)  
  12989. >writes:
  12990. >> I have a basic understanding of how when downloading/uploading
  12991. >> a file Kermit sends a packet, waits for other Kermit to acknowledge
  12992. >> receiving it, sends another packet, etc.
  12993. >> 
  12994. >> Would it be possible to tell the sending Kermit to "Just Send It"
  12995. >> without the error checking?  Most of our asyn lines on campus
  12996. >> are very clean (not including modems) and I would put up with
  12997. >> the occasional corrupt file to make the download go faster.
  12998. >> 
  12999. >No.  Noise is not the only reason for having packets with error-checking
  13000. >and sequencing information.  I'd go into detail here, but I'm kind of
  13001. >tired, and you can read about this in any networking text -- flow control
  13002. >at various levels, presentation functions, etc.  And don't forget that
  13003. >errors can occur in many places other than the communication medium --
  13004. >lost interrupts in a flaky PC, etc.
  13005.  
  13006. Also with proper settings kermit does not run in the start-stop mode
  13007. described by Honeycutt.  As I understand it, that's what the
  13008. "set window-size" command deals with -- you can have as many
  13009. as 31 unacknowledged packets pending, so the sender has only
  13010. a most negligable delay when checking for ACKs (assuming the
  13011. transmission is going smoothly).
  13012.  
  13013.         --Ken Pizzini
  13014.  
  13015. From news@columbia.edu Thu Sep 29 21:08:53 1994
  13016. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA01177
  13017.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 29 Sep 1994 18:05:22 -0400
  13018. Received: by apakabar.cc.columbia.edu id AA19459
  13019.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 29 Sep 1994 18:05:21 -0400
  13020. Path: news.columbia.edu!panix!MathWorks.Com!news.duke.edu!convex!cs.utexas.edu!math.ohio-state.edu!usenet
  13021. From: davis@pacific.mps.ohio-state.edu
  13022. Newsgroups: comp.protocols.kermit.misc
  13023. Subject: Re: MS-Kermit question
  13024. Date: 29 Sep 1994 21:08:53 GMT
  13025. Organization: The Ohio State University, Department of Mathematics
  13026. Lines: 33
  13027. Message-Id: <36fad5$6bm@mathserv.mps.ohio-state.edu>
  13028. References: <36evui$9t@mathserv.mps.ohio-state.edu> <36f562$63q@apakabar.cc.columbia.edu>
  13029. Reply-To: davis@amy.tch.harvard.edu
  13030. Nntp-Posting-Host: pacific.mps.ohio-state.edu
  13031. X-Newsreader: S-Lang: slrn (0.1.4.0)
  13032. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  13033.  
  13034. In article <36f562$63q@apakabar.cc.columbia.edu>, fdc@fdc.cc.columbia.edu
  13035. (Frank da Cruz) writes: 
  13036.  : In article <36evui$9t@mathserv.mps.ohio-state.edu>  
  13037.  : davis@pacific.mps.ohio-state.edu writes:
  13038.  : >   This has been bugging me for a long time but I do not know what to do
  13039.  : > about it:  Ctrl-ENTER returns a Ctrl-J character (linefeed).  Is there
  13040.  : > anyway to suppress this?   That is, have Ctrl-ENTER simply return a RET
  13041.  : > character?
  13042.  : > 
  13043.  : Type "show key"
  13044.  : Kermit says: "Push key to be shown:"
  13045.  : Push Ctrl-Enter
  13046.  : Kermit says:
  13047.  : Scan code \5386 is defined as
  13048.  : Ascii char: ^J \10
  13049.  
  13050. This is the obvious thing to do and it is the first thing I thought of.
  13051. However, this does not work on my version of MS-Kermit (3.13 patch level 0).
  13052. It does not report the scan code for Ctrl-Enter.  It shows:
  13053.  
  13054.    Ascii char: ^J  \10 decimal is defined as 
  13055.    self, no translation.
  13056.    
  13057. Was this fixed in a patch?   
  13058.    
  13059.      _____________
  13060. #___/John E. Davis\_________________________________________________________
  13061. #
  13062. # internet: davis@amy.tch.harvard.edu
  13063. #   bitnet: davis@ohstpy
  13064. #   office: 617-735-6746
  13065. #
  13066.  
  13067.  
  13068. From news@columbia.edu Thu Sep 29 22:12:13 1994
  13069. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA01527
  13070.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 29 Sep 1994 18:12:17 -0400
  13071. Received: by apakabar.cc.columbia.edu id AA19892
  13072.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 29 Sep 1994 18:12:15 -0400
  13073. Path: news.columbia.edu!usenet
  13074. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  13075. Newsgroups: comp.protocols.kermit.misc
  13076. Subject: Re: Are Columbia U's files still avial for FTP?
  13077. Date: 29 Sep 1994 22:12:13 GMT
  13078. Organization: Columbia University
  13079. Lines: 39
  13080. Message-Id: <36fe3t$jdi@apakabar.cc.columbia.edu>
  13081. References: <9409291845.AA6057@SimTel.Coast.NET>
  13082. Nntp-Posting-Host: fdc.cc.columbia.edu
  13083. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  13084.  
  13085. In article <9409291845.AA6057@SimTel.Coast.NET> w8sdz@SimTel.Coast.NET (Keith  
  13086. Petersen) writes:
  13087. > Frank, this is not true.  SimTel does NOT sell programs.  The CD-ROMs
  13088. > provide DISTRIBUTION OF PROGRAMS and the proceeds are used to support
  13089. > the cost of maintaining the collection and providing a site for them to
  13090. > be distributed free of charge to users on the Internet.  Without this
  13091. > income SimTel would cease to exist.
  13092. > There are 11,000 programs on the CDROMs made from the SimTel collection.
  13093. > Beaking that down, the cost of distributing each program is US$0.003177.
  13094. > For those not familar with U.S. currancy, that is 3/10ths of ONE CENT! 
  13095. > It takes 100 cents to make one dollar.
  13096. Making every effort to clear the air on a cordial note -- and despite the
  13097. appearance of a flame war, we're all friends here...
  13098.  
  13099. Keith is correct.  I misspoke if I said that Simtel was selling software.
  13100. Organizations like Simtel provide a valuable service, provided they do a
  13101. good and consciencious job, as (I am sure) Simtel does.  Unfortunately,
  13102. in the case of Kermit, which is not shareware, there is a conflict that
  13103. can't be resolved easily or at all.  And so we agree that mail-order
  13104. distribution of Kermit software on physical media will be done by Columbia,
  13105. or by agreement with Columbia, so we can get the income we need to continue
  13106. our work.
  13107.  
  13108. I admit, 11,000 software programs for a fraction of a cent each is a pretty
  13109. good deal!  But as I said earlier (I hate having to use that phrase all the
  13110. time) we can't afford to sell Kermit that inexpensively because we not only
  13111. distribute the software, we write it, document it, and provide tech support
  13112. for it, and these are labor-intensive jobs.
  13113.  
  13114. With shareware, it's a different story -- CDROM distributions such as
  13115. Simtel's are perfect for shareware.  All the author has to do is write
  13116. the software and then sit back and collect money.  However, despite
  13117. suggestions from a few people, I don't think the majority of Kermit users
  13118. want to see it turned into shareware, and I'm not sure we could do this
  13119. even if you wanted us to, and we wanted to.
  13120.  
  13121. - Frank
  13122.  
  13123. From news@columbia.edu Thu Sep 29 22:13:33 1994
  13124. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA01572
  13125.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 29 Sep 1994 18:13:36 -0400
  13126. Received: by apakabar.cc.columbia.edu id AA20067
  13127.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 29 Sep 1994 18:13:35 -0400
  13128. Path: news.columbia.edu!usenet
  13129. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  13130. Newsgroups: comp.protocols.kermit.misc
  13131. Subject: Re: Kermit for SUN UNIX ?
  13132. Date: 29 Sep 1994 22:13:33 GMT
  13133. Organization: Columbia University
  13134. Lines: 11
  13135. Message-Id: <36fe6d$jiu@apakabar.cc.columbia.edu>
  13136. References: <CwspsE.3xH@nntpa.cb.att.com>
  13137. Nntp-Posting-Host: fdc.cc.columbia.edu
  13138. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  13139.  
  13140. In article <CwspsE.3xH@nntpa.cb.att.com> pd@erredfs1.er.att.com (Paul  
  13141. Davidson) writes:
  13142. > The Subject says it all Where can I get the source or
  13143. > binaries for kermit on SUN OS (UNIX) ?/
  13144. >
  13145. kermit.columbia.edu:kermit/test/bin/cku190.tar.Z (or .gz).
  13146.  
  13147. - Frank
  13148. x
  13149. x
  13150. x
  13151.  
  13152. From news@columbia.edu Thu Sep 29 22:18:10 1994
  13153. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA01796
  13154.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 29 Sep 1994 18:18:21 -0400
  13155. Received: by apakabar.cc.columbia.edu id AA20553
  13156.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 29 Sep 1994 18:18:19 -0400
  13157. Path: news.columbia.edu!usenet
  13158. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  13159. Newsgroups: comp.protocols.kermit.misc
  13160. Subject: Re: kermit script
  13161. Date: 29 Sep 1994 22:18:10 GMT
  13162. Organization: Columbia University
  13163. Lines: 64
  13164. Message-Id: <36fef2$k1t@apakabar.cc.columbia.edu>
  13165. References: <kiWkwiK00WB7B75aIr@andrew.cmu.edu>
  13166. Nntp-Posting-Host: fdc.cc.columbia.edu
  13167. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  13168.  
  13169. In article <kiWkwiK00WB7B75aIr@andrew.cmu.edu> Pedro Ferroni  
  13170. <pf2d+@andrew.cmu.edu> writes:
  13171. > I have a kermit version that responds
  13172. > IBM-PC Kermit-MS v2.29b 19 Feb87
  13173. > 1) Should I get a new one ? (and how)
  13174. >
  13175. Yes.  Anonymous ftp to kermit.columbia.edu, directory kermit/bin,
  13176. binary mode, file msvibm.zip.
  13177.  
  13178. > 2) How do I find instructions to set up a scrip so i don't have do enter
  13179. > password, user id, telent unix, etc every time.
  13180. Purchase and read the manual.  It has an entire chapter devoted to script
  13181. programming, with plenty of examples (language of your choice):
  13182.  
  13183.   Christine M. Gianone, "Using MS-DOS Kermit", Second Edition, Digital
  13184.   Press / Butterworth-Heinemann, Woburn, MA, 1992, 345 pages, ISBN
  13185.   1-55558-082-3.  Packaged with version 3.13 of MS-DOS Kermit for the
  13186.   IBM PC, PS/2, and compatibles on a 3.5-inch diskette.
  13187.  
  13188.   US single-copy price: $34.95; quantity discounts available.  Available
  13189.   in computer bookstores or directly from:
  13190.  
  13191.     Kermit Development and Distribution
  13192.     Columbia University Academic Information Systems
  13193.     612 West 115th Street
  13194.     New York, NY  10025  USA
  13195.     Telephone: (USA) 212 854-3703
  13196.  
  13197.   Domestic and overseas orders accepted.  Price: $34.95 (US, Canada, and
  13198.   Mexico), $45 elsewhere.  Orders may be paid by MasterCard or Visa, or
  13199.   prepaid by check in US dollars.  Add $35 bank fee for checks not drawn
  13200.   on a US bank.  Price includes shipping.  Do not include sales tax.
  13201.  
  13202.   You can also order by phone from the publisher, Digital Press /
  13203.   Butterworth-Heinemann, with MasterCard, Visa, or American Express:
  13204.  
  13205.     +1 800 366-2665 (Woburn, Massachusetts office for USA and Canada)
  13206.     +1 800 665-1148 (Logan Bros, Winnepeg, Manitoba office for Canada)
  13207.     +44 993 58521   (Rushden, England office for Europe)
  13208.     +61 02 372-5511 (Chatswood, NSW office for Australia & New Zealand)
  13209.     +65 220-3684    (Singapore office for Asia)
  13210.  
  13211.   A German-language edition is also available:
  13212.  
  13213.     Christine M. Gianone, "MS-DOS Kermit, das universelle
  13214.     Kommunikationsprogramm", Verlag Heinz Heise, Hannover, Germany
  13215.     (1991), 414 pages.  Packaged with version 3.12 of MS-DOS Kermit for
  13216.     the IBM PC, PS/2, and compatibles on a 5.25-inch diskette, including
  13217.     German-language help files.  Deutsch von Gisbert W. Selke.  Price:
  13218.     DM 69,00.  ISBN 3-88229-006-4.  Verlag Heinz Heise GmbH & Co. KG,
  13219.     Helstorfer Strasse 7, D-30625 Hannover.  Tel. +49 (05 11) 53 52-0,
  13220.     Fax. +49 (05 11) 53 53-1 29.
  13221.  
  13222.   And a French-language edition:
  13223.  
  13224.     Christine M. Gianone, "Kermit MS-DOS mode d'emploi", Heinz Schiefer
  13225.     & Cie., Versailles (1993), 406 pages.  Packaged with version 3.11 of
  13226.     MS-DOS Kermit for the IBM PC, PS/2, and compatibles on a 5.25-inch
  13227.     diskette.  Adaption francaise: Jean Dutertre.  ISBN 2-901143-20-2.
  13228.     Heinz Schiefer & Cie., 45 rue Henri de Regnier, F-78000 Versailles.
  13229.     Tel. +33 39 53 95 26, Fax. +33 39 02 39 71.
  13230.  
  13231. - Frank
  13232.  
  13233. From news@columbia.edu Thu Sep 29 22:22:52 1994
  13234. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA01964
  13235.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 29 Sep 1994 18:22:57 -0400
  13236. Received: by apakabar.cc.columbia.edu id AA20865
  13237.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 29 Sep 1994 18:22:55 -0400
  13238. Path: news.columbia.edu!usenet
  13239. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  13240. Newsgroups: comp.protocols.kermit.misc
  13241. Subject: Re: MS-Kermit question
  13242. Date: 29 Sep 1994 22:22:52 GMT
  13243. Organization: Columbia University
  13244. Lines: 23
  13245. Message-Id: <36fens$kbt@apakabar.cc.columbia.edu>
  13246. References: <36fad5$6bm@mathserv.mps.ohio-state.edu>
  13247. Nntp-Posting-Host: fdc.cc.columbia.edu
  13248. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  13249.  
  13250. In article <36fad5$6bm@mathserv.mps.ohio-state.edu>  
  13251. davis@pacific.mps.ohio-state.edu writes:
  13252. >  : ...
  13253. >  : Kermit says:
  13254. >  : Scan code \5386 is defined as
  13255. >  : Ascii char: ^J \10
  13256. > This is the obvious thing to do and it is the first thing I thought of.
  13257. > However, this does not work on my version of MS-Kermit (3.13 patch level
  13258. > 0).  It does not report the scan code for Ctrl-Enter.
  13259. >
  13260. Oops, silly me!  You're right -- I was using the "other" Enter key.
  13261. Sorry.
  13262.  
  13263. I think this is a bug, and we'll have to fix it in version 3.14.  I'll
  13264. check with Joe.
  13265.  
  13266. - Frank
  13267. x
  13268. x
  13269. x
  13270. x
  13271. x
  13272.  
  13273. From news@columbia.edu Thu Sep 29 18:15:45 1994
  13274. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA02814
  13275.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 29 Sep 1994 18:37:23 -0400
  13276. Received: by apakabar.cc.columbia.edu id AA21876
  13277.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 29 Sep 1994 18:37:21 -0400
  13278. Newsgroups: comp.protocols.kermit.misc
  13279. Path: news.columbia.edu!panix!MathWorks.Com!news.duke.edu!convex!cs.utexas.edu!swrinde!howland.reston.ans.net!EU.net!sunic!seunet!news2.swip.net!seunet!kullmar!bk
  13280. From: bk@kullmar.se (Bo Kullmar)
  13281. Subject: A Kermit library for MS-Windows
  13282. Message-Id: <1994Sep29.181545.11830@kullmar.se>
  13283. Organization: ABC-Klubben
  13284. Date: Thu, 29 Sep 1994 18:15:45 GMT
  13285. Lines: 8
  13286. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  13287.  
  13288. I am looking for a good commercial communication package for MS-Windows
  13289. with fast kermit functions. I need a kermit that can use larger packages
  13290. than 94 bytes.
  13291.  
  13292. Any suggestion? (The Kermit server on the other end is C-Kermit 5A(188)).
  13293.  
  13294. --Bo Kullmar
  13295.  
  13296.  
  13297. From news@columbia.edu Thu Sep 29 23:04:22 1994
  13298. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA08543
  13299.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 29 Sep 1994 20:41:58 -0400
  13300. Received: by apakabar.cc.columbia.edu id AA01293
  13301.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 29 Sep 1994 20:41:57 -0400
  13302. Path: news.columbia.edu!panix!MathWorks.Com!news.duke.edu!convex!cs.utexas.edu!swrinde!news.uh.edu!uuneo.neosoft.com!Starbase.NeoSoft.COM!billw
  13303. From: billw@starbase.neosoft.com (Bill West)
  13304. Newsgroups: comp.protocols.kermit.misc
  13305. Subject: stuttering screen display
  13306. Date: 29 Sep 1994 23:04:22 GMT
  13307. Organization: NeoSoft Internet Services   +1 713 684 5969
  13308. Lines: 26
  13309. Message-Id: <36fh5m$nn3@uuneo.neosoft.com>
  13310. Nntp-Posting-Host: starbase.neosoft.com
  13311. X-Newsreader: TIN [version 1.2 PL2]
  13312. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  13313.  
  13314.  
  13315. I just upgraded my modem from a PPI 9600 ext. to a Cardinal ext. 14400
  13316. fax/modem and can't quite get the setup right since I have not had to deal
  13317. with the high speed features before. I find myself having to manually
  13318. refresh the screen constantly since about halfway through changing from one
  13319. display to another the screen will freeze up and I can get the display back
  13320. by doing a ctrl-R and it will be fine for one or two screen changes such as
  13321. reading one or two news articles.
  13322.  
  13323. I am running c-kermit 5A(190) BETA.23 but have also tried c-kermit 5A(188).
  13324. I have tried serveral differant at command configs and still get the  same
  13325. results. What am I missing here? If I hook the 9600 back up it works fine.
  13326.  
  13327. Any help or pointers via email or post  would be greatly appreciated since
  13328. I have gotten totaly frustrated and out of options and I can't figure out if
  13329. it is the modem or kermit.
  13330.  
  13331. On downloads the most I have been able to get out of the 14400 is 1200cps
  13332. but most of the time it is lower with multiple retries.
  13333.  
  13334. --
  13335. ******************************************************************************
  13336. Bill West
  13337. Houston TX
  13338. email: billw@starbase.neosoft.com
  13339. ******************************************************************************
  13340.  
  13341. From news@columbia.edu Fri Sep 30 02:46:38 1994
  13342. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA14528
  13343.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 29 Sep 1994 23:01:47 -0400
  13344. Received: by apakabar.cc.columbia.edu id AA11755
  13345.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 29 Sep 1994 23:01:46 -0400
  13346. Path: news.columbia.edu!panix!MathWorks.Com!yeshua.marcam.com!charnel.ecst.csuchico.edu!olivea!uunet!winternet.com!jamess
  13347. From: jamess@winternet.com (James Sturdevant)
  13348. Newsgroups: comp.protocols.kermit.misc
  13349. Subject: Re: MS-Kermit question
  13350. Date: 30 Sep 1994 02:46:38 GMT
  13351. Organization: StarNet Communications, Inc
  13352. Lines: 15
  13353. Message-Id: <36fu6e$jd@blackice.winternet.com>
  13354. References: <36evui$9t@mathserv.mps.ohio-state.edu> <36f562$63q@apakabar.cc.columbia.edu>
  13355. Nntp-Posting-Host: icicle.winternet.com
  13356. X-Newsreader: TIN [version 1.2 PL2]
  13357. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  13358.  
  13359. Frank da Cruz (fdc@fdc.cc.columbia.edu) wrote:
  13360. : In article <36evui$9t@mathserv.mps.ohio-state.edu>  
  13361. : davis@pacific.mps.ohio-state.edu writes:
  13362. : >   This has been bugging me for a long time but I do not know what to do
  13363. : > about it:  Ctrl-ENTER returns a Ctrl-J character (linefeed).  Is there
  13364. : > anyway to suppress this?   That is, have Ctrl-ENTER simply return a RET
  13365. : > character?
  13366. : > 
  13367. [Snip] Advice on redefining keys...
  13368.  
  13369. That works on most keys...  Two keys left of the the "dual entry" table are
  13370. Ctrl-J/Ctrl-Enter and Esc/Ctrl-[.  I believe that these are the only two (on
  13371. standard 101 keyboards) that cannot be independently defined.
  13372.  
  13373. JamesS
  13374.  
  13375. From news@columbia.edu Thu Sep 29 15:12:52 1994
  13376. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA18370
  13377.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 30 Sep 1994 00:13:48 -0400
  13378. Received: by apakabar.cc.columbia.edu id AA16740
  13379.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 30 Sep 1994 00:13:47 -0400
  13380. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  13381. From: jrd@cc.usu.edu (Joe Doupnik)
  13382. Newsgroups: comp.protocols.kermit.misc
  13383. Subject: Re: Which ethernet card for MS-Kermit?
  13384. Message-Id: <1994Sep29.211252.28265@cc.usu.edu>
  13385. Date: 29 Sep 94 21:12:52 MDT
  13386. References: <36el10$5hq@xmission.xmission.com>
  13387. Organization: Utah State University
  13388. Lines: 31
  13389. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  13390.  
  13391. In article <36el10$5hq@xmission.xmission.com>, fozz@xmission.com (Fozziliny Moo) writes:
  13392. > I need some recomendations for ethernet cards for PC's to connect a few
  13393. > machines to a thin-coax feed which goes to a couple of Unix boxes (AIX,
  13394. > but that probably doesn't matter). 
  13395. > I've worked with MS-Kermit over Novell Netware on several occassions, but
  13396. > now I am working in the absence of a PC network medium and would like to
  13397. > use the thin coax just to Telnet (via MS-Kermit) to the Unix machines. 
  13398. > Is an NE2000 compatible card going to work for me? Then do I just load 
  13399. > IPX? Or do I use a different driver software? And then, if I understand
  13400. > correctly, upon knowing the software interrupt of the device driver I 
  13401. > can just go into MS-Kermit and say SET TCP/IP PACKET-DRIVER-INTERRUPT \xXX.
  13402. > If someone can confirm or correct my assumptions here, I would appreciate it.
  13403. > (Joe maybe?)
  13404. ---------
  13405. Doran,
  13406.     I guess you could have asked me directly. The Kermit Project does
  13407. not endorse any network adapter. That's a choice well out of our domain.
  13408. Any of the three common driver/handler programs: ODI, NDIS, Packet Drivers,
  13409. will work with MS-DOS Kermit (NDIS requires the dis_pkt9 shim). If you
  13410. are accustomed to ODI then please remember that IPX is just an ODI client,
  13411. just the same as Kermit is, side by side. Please see the distribution
  13412. file MSKERM.BWR on kermit.columbia.edu, cd kermit/a.
  13413.         One more thing. Kermit does NOT contain an Ethernet driver.
  13414. Consequently the Packet Driver interrupt has no relation with a hardware IRQ
  13415. from a board. Kermit will find a Packet Driver all by itself, or you can
  13416. force its attention on one interrupt.
  13417.     Joe D.
  13418.  
  13419. From news@columbia.edu Sun Sep 30 04:29:01 1994
  13420. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA18972
  13421.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 30 Sep 1994 00:27:39 -0400
  13422. Received: by apakabar.cc.columbia.edu id AA17900
  13423.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 30 Sep 1994 00:27:37 -0400
  13424. Path: news.columbia.edu!panix!MathWorks.Com!news.duke.edu!convex!cs.utexas.edu!swrinde!sgiblab!sisters.cs.uoregon.edu!cs.uoregon.edu!usenet.ee.pdx.edu!not-for-mail
  13425. From: rkwee@ee.pdx.edu (Roland Kwee)
  13426. Newsgroups: comp.protocols.kermit.misc
  13427. Subject: Why is Kermit not popular on BBS-es?
  13428. Date: 29 Sep 1994 21:29:01 -0700
  13429. Lines: 16
  13430. Message-Id: <36g46d$m36@cruella.ee.pdx.edu>
  13431. Nntp-Posting-Host: cruella.ee.pdx.edu
  13432. Summary: Most BBS-es have old, lame Kermit versions built-in
  13433. Keywords: BBS download-protocol zmodem performance popularity
  13434. X-Newsreader: NN version 6.4.19 #2
  13435. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  13436.  
  13437. This provocative posting is an effort to distract from the current
  13438. discussion about the copyright issue and ftp sites.
  13439.  
  13440. While I like the Kermit protocol, the terminal emulator, the fact
  13441. that it is available for free, and runs on nearly every platform,
  13442. I am often unhappily surprised that many (most?) bulletin board
  13443. systems offer an outdated and slow version of Kermit for downloading
  13444. files. Also, products like Procomm show this trend.
  13445.  
  13446. Is there a conspiracy against Kermit? Is it that because it is not
  13447. a commercial enterprise that nobody lobbies for it? Are the owners
  13448. of zmodem lobbying against it?
  13449.  
  13450. Kermit deserves better.
  13451.  
  13452. --Roland          email: RolandKwee@ACM.org
  13453.  
  13454. From news@columbia.edu Sun Sep 30 04:32:35 1994
  13455. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA20404
  13456.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 30 Sep 1994 00:46:57 -0400
  13457. Received: by apakabar.cc.columbia.edu id AA18836
  13458.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 30 Sep 1994 00:46:55 -0400
  13459. Path: news.columbia.edu!panix!MathWorks.Com!usenet.eel.ufl.edu!news.uoregon.edu!cs.uoregon.edu!usenet.ee.pdx.edu!not-for-mail
  13460. From: rkwee@ee.pdx.edu (Roland Kwee)
  13461. Newsgroups: comp.protocols.kermit.misc
  13462. Subject: Re: Solved Kermit download problem, sort of
  13463. Date: 29 Sep 1994 21:32:35 -0700
  13464. Lines: 17
  13465. Distribution: World
  13466. Message-Id: <36g4d3$m42@cruella.ee.pdx.edu>
  13467. References: <36ca5k$c7j@apakabar.cc.columbia.edu>
  13468. Nntp-Posting-Host: cruella.ee.pdx.edu
  13469. X-Newsreader: NN version 6.4.19 #2
  13470. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  13471.  
  13472. fdc@fdc.cc.columbia.edu (Frank da Cruz) writes:
  13473.  
  13474. >Roland Kwee <rkwee@ee.pdx.edu> writes:
  13475. >>  ... I reduced the packet size all the way down to 500
  13476. >> bytes and 1 window. No problem for a file up to 1.2 MB sofar, and a
  13477. >> throughput of 1029 cps. (on a 14.4KB V.42b connection). It seems to be a
  13478. >> problem of buffer overflow, either in the remote cisco terminal server,
  13479. >> or in the remote modem.
  13480.  
  13481. (many lines deleted)
  13482.  
  13483. Please be informed that my problems seem to be linked to running Kermit 
  13484. under Linux. When rebooting with DOS on the same hardware, KErmit seems
  13485. to be able to download with 1000-byte packets with no problem. Now I am
  13486. rather thinking of a problem with Linux instead of with the protocol.
  13487.  
  13488. --Roland
  13489.  
  13490. From news@columbia.edu Fri Sep 30 05:57:14 1994
  13491. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA24020
  13492.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 30 Sep 1994 02:10:46 -0400
  13493. Received: by apakabar.cc.columbia.edu id AA22298
  13494.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 30 Sep 1994 02:10:45 -0400
  13495. Path: news.columbia.edu!panix!zip.eecs.umich.edu!newsxfer.itd.umich.edu!gatech!howland.reston.ans.net!wupost!simtel.coast.net!w8sdz
  13496. From: w8sdz@SimTel.Coast.NET (Keith Petersen)
  13497. Newsgroups: comp.protocols.kermit.misc
  13498. Subject: Columbia University's Kermit copyright
  13499. Message-Id: <9409300557.AA12036@simtel.coast.net>
  13500. Date: Fri, 30 Sep 1994 05:57:14 GMT
  13501. Organization: SimTel, the Coast to Coast Software Repository (tm)
  13502. Lines: 35
  13503. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  13504.  
  13505. Quoting the copyright included with MS-Kermit:
  13506.  
  13507.   Copyright (C) 1985, 1993, Trustees of Columbia University in the City
  13508.   of New York.  The MS-DOS Kermit software may be reproduced and shared
  13509.   without restriction as long as this copyright notice is retained,
  13510.   except that it may not be licensed or sold for profit as a software
  13511.   product itself, and it may not be included in or distributed with
  13512.   commercial products or otherwise distributed by commercial concerns to
  13513.   their clients or customers without written permission of the Office of
  13514.   Kermit Development and Distribution, Columbia University.
  13515.  
  13516. In the process of reviewing programs submitted to the SimTel collection
  13517. I have seen many different ways of expressing distribution limitations. 
  13518. This simple well-worded statement would solve the confrontation between
  13519. Columbia, SimTel and Garbo, while keeping the spirit of free distribution
  13520. of Kermit.
  13521.  
  13522.    You may freely distribute the original [program name] in any way
  13523.    you see fit other than selling it.  Users' groups and shareware
  13524.    distribution services may charge a reasonable fee for the medium
  13525.    and duplication costs.  Bulletin boards may not charge additional
  13526.    fees for downloading this specific program, other than normal
  13527.    connect-time and/or membership charges.
  13528.  
  13529.    You may charge a maximum of US $5 for each disk you sell.  In the
  13530.    case of CD-ROM compilations, the selling price is calculated as the
  13531.    price of the CD-ROM divided by the number of products on the CD-ROM.
  13532.    Thus, in such cases, the price is usually only a few cents.
  13533.  
  13534. Keith
  13535. --
  13536. Keith Petersen
  13537. General Manager of SimTel, the Coast to Coast Software Repository (tm)
  13538. Internet: w8sdz@SimTel.Coast.NET    or      w8sdz@Vela.ACS.Oakland.Edu
  13539. Uucp: uunet!umich!vela!w8sdz                     BITNET: w8sdz@OAKLAND
  13540.  
  13541. From news@columbia.edu Fri Sep 30 08:47:01 1994
  13542. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA01575
  13543.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 30 Sep 1994 05:48:25 -0400
  13544. Received: by apakabar.cc.columbia.edu id AA29195
  13545.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 30 Sep 1994 05:48:25 -0400
  13546. Newsgroups: comp.protocols.kermit.misc
  13547. Path: news.columbia.edu!spcuna!solaris.cc.vt.edu!MathWorks.Com!yeshua.marcam.com!usc!howland.reston.ans.net!EU.net!Germany.EU.net!news.dfn.de!news.belwue.de!news.uni-ulm.de!rz.uni-karlsruhe.de!stepsun.uni-kl.de!uklirb.informatik.uni-kl.de!rhein!jreinert
  13548. From: jreinert@rhein.informatik.uni-kl.de (Joachim Reinert - AG DVS)
  13549. Subject: [Q] Is there a Kermit implemented in BASIC?
  13550. Message-Id: <jreinert.780914821@rhein>
  13551. Keywords: BASIC,Kermit
  13552. Sender: news@uklirb.informatik.uni-kl.de (Unix-News-System)
  13553. Nntp-Posting-Host: rhein.informatik.uni-kl.de
  13554. Organization: University of Kaiserslautern, Germany
  13555. Date: Fri, 30 Sep 1994 08:47:01 GMT
  13556. Lines: 18
  13557. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  13558.  
  13559. Hi!
  13560.  
  13561. I am in need for a file transfer between maschines which are
  13562. programmable in BASIC (to be precise Business Basic) only.
  13563. The Simtel Collection includes a "receive kermit" which will
  13564. serve as a startingpoint. To avoid unecessary lost of sparetime:
  13565. Is there a send/receive kermit implemented in BASIC anywhere in
  13566. the public domain?
  13567.  
  13568. Thanks for any input
  13569.  
  13570. Joachim Reinert
  13571.  
  13572. -- 
  13573. Joachim Reinert              UNI Kaiserslautern, AG-DVS
  13574. fax   : +49 631 205 3558     P.O. Box 3049
  13575. phone : +49 631 205 3282     67653 Kaiserslautern - Germany 
  13576. e-mail: jreinert@informatik.uni-kl.de
  13577.  
  13578. From news@columbia.edu Thu Sep 29 20:44:58 1994
  13579. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA13649
  13580.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 30 Sep 1994 07:16:36 -0400
  13581. Received: by apakabar.cc.columbia.edu id AA02549
  13582.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 30 Sep 1994 07:16:35 -0400
  13583. Newsgroups: comp.protocols.kermit.misc
  13584. Path: news.columbia.edu!panix!MathWorks.Com!yeshua.marcam.com!zip.eecs.umich.edu!newsxfer.itd.umich.edu!gumby!wupost!howland.reston.ans.net!usc!elroy.jpl.nasa.gov!decwrl!amd!netcomsv!netcom.com!jhurwit
  13585. From: jhurwit@netcom.com (Jeffrey Hurwit)
  13586. Subject: Re: "Just Send It" mode - possible?
  13587. Message-Id: <jhurwitCwwsAz.Erz@netcom.com>
  13588. Organization: Organization?  What organization?
  13589. X-Newsreader: TIN [version 1.2 PL1]
  13590. References: <36d22k$9mt@balsam.unca.edu>
  13591. Date: Thu, 29 Sep 1994 20:44:58 GMT
  13592. Lines: 44
  13593. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  13594.  
  13595. In article <36d22k$9mt@balsam.unca.edu>, 
  13596. Mike Honeycutt (Honeycutt@unca.edu) wrote:
  13597.  
  13598. >Would it be possible to tell the sending Kermit to "Just Send It"
  13599. >without the error checking?  Most of our asyn lines on campus
  13600. >are very clean (not including modems) and I would put up with
  13601. >the occasional corrupt file to make the download go faster.
  13602.  
  13603.     From the help file for MS-Kermit 3.13:
  13604.  
  13605. * COMMANDS FOR FILE TRANSFER WITHOUT ERROR CHECKING
  13606.  
  13607. Kermit can also transfer files or other information with remote computers,
  13608. services, or devices that do not support the Kermit file transfer protocol.
  13609. These methods provide no error detection or correction.     Use with caution.
  13610.  
  13611. TRANSMIT <filename>
  13612.   Send a text file to the host as if you were typing it at the keyboard
  13613.   a line at a time.  Waits for linefeed (\10) to echo before sending next
  13614.   line.     Uses all current communication settings (parity, flow, etc).
  13615.   Doesn't translate character sets.  CRLF is sent as CR only unless SET
  13616.   TRANSMIT LINE-FEEDS ON.  Empty lines are sent as pairs of CRs (or CRLFS)
  13617.   unless SET TRANSMIT FILL is used.
  13618.  
  13619. SET TRANSMIT <parameter> <value>
  13620.   Various parameters used to control TRANSMIT command.
  13621.   FILL-EMPTY-LINE { NONE, SPACE, <char> }
  13622.   LINE-FEEDS-SENT { ON, OFF }
  13623.   PAUSE <number> - pause <number> milliseconds after sending each line.
  13624.   PROMPT <char> - character to wait for before sending next line (= \10)
  13625.  
  13626. LOG SESSION <filename>
  13627.   Capture a remote file, which you must TYPE, into the named file
  13628.   (SESSION.LOG by default).  Use \Klogoff and \Klogon keyboard verbs to
  13629.   stop and restart logging (Ctrl-]Q, Ctrl-]R).
  13630.  
  13631. CLOSE SESSION
  13632.   Stop capturing and close the session log file.
  13633.  
  13634.  
  13635.     There should be commands in the other versions of Kermit similar to
  13636.     these.
  13637.  
  13638.                         Jeff
  13639.  
  13640. From news@columbia.edu Fri Sep 30 02:38:01 1994
  13641. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA18899
  13642.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 30 Sep 1994 07:22:15 -0400
  13643. Received: by apakabar.cc.columbia.edu id AA02678
  13644.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 30 Sep 1994 07:22:13 -0400
  13645. Newsgroups: comp.protocols.kermit.misc
  13646. Path: news.columbia.edu!panix!MathWorks.Com!yeshua.marcam.com!zip.eecs.umich.edu!newsxfer.itd.umich.edu!news1.oakland.edu!rcsuna.gmr.com!kocrsv01!koicds01!tvmyers
  13647. From: tvmyers@koicds01.icdc.delcoelect.com (Thomas V. Myers)
  13648. Subject: Re: Columbia University MS-Kermit files removed from SimTel
  13649. Sender: news@icdc.delcoelect.com (News Manager)
  13650. Message-Id: <Cwx8nD.5EB@icdc.delcoelect.com>
  13651. Date: Fri, 30 Sep 1994 02:38:01 GMT
  13652. References: <9409270646.kp1130@SimTel.Coast.NET>
  13653. Organization: Frodo Was Here
  13654. X-Newsreader: TIN [version 1.2 PL2]
  13655. Lines: 44
  13656. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  13657.  
  13658. Keith Petersen (w8sdz@SimTel.Coast.NET) wrote:
  13659. > According to e-mail I received this evening it appears that Columbia
  13660. > University now feels that SimTel should no longer distribute MS-Kermit.
  13661.  
  13662. > SimTel's policy is:
  13663.  
  13664. >   Programs submitted to the SimTel collection may appear on CD-ROMs
  13665. >   offered by several vendors.  If the program submitted should not
  13666. >   be distributed this way, or has restrictions on such distribution,
  13667. >   it will not be accepted.
  13668.  
  13669. > Quoting the copyright included with MS-Kermit:
  13670.  
  13671. >   Copyright (C) 1985, 1993, Trustees of Columbia University in the City
  13672. >   of New York.  The MS-DOS Kermit software may be reproduced and shared
  13673. >   without restriction as long as this copyright notice is retained,
  13674. >   except that it may not be licensed or sold for profit as a software
  13675. >   product itself, and it may not be included in or distributed with
  13676. >   commercial products or otherwise distributed by commercial concerns to
  13677. >   their clients or customers without written permission of the Office of
  13678. >   Kermit Development and Distribution, Columbia University.
  13679.  
  13680. > Because of this restrictive distribution policy all MS-Kermit programs
  13681. > and other associated files bearing the Columbia University copyright have
  13682. > been removed from SimTel, the Coast to Coast Software Repository (tm).
  13683.  
  13684. > Questions and comments should be sent to Columbia, *not* to SimTel.
  13685. > The e-mail address is:  fdc@watsun.cc.columbia.edu (Frank da Cruz)
  13686.  
  13687. > Keith
  13688. > --
  13689. > Keith Petersen
  13690. > General Manager of SimTel, the Coast to Coast Software Repository (tm)
  13691. > Internet: w8sdz@SimTel.Coast.NET    or      w8sdz@Vela.ACS.Oakland.Edu
  13692. > Uucp: uunet!umich!vela!w8sdz                     BITNET: w8sdz@OAKLAND
  13693.  
  13694. That copyright notice has been there for years but Frank makes a comment about
  13695. source code on CD-ROMs becoming stale on the shelf and you decide that it's suddenly
  13696. time to pull Kermit off your distribution.  Either you don't enforce your policy
  13697. except when questioned, or you don't bother to read any of the copyright notices
  13698. until somebody asks about them.
  13699.  
  13700. --
  13701. Tom Myers : tvmyers@icdc.delcoelect.com
  13702.  
  13703. From news@columbia.edu Thu Sep 29 21:00:45 1994
  13704. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA20542
  13705.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 30 Sep 1994 07:23:54 -0400
  13706. Received: by apakabar.cc.columbia.edu id AA02709
  13707.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 30 Sep 1994 07:23:53 -0400
  13708. Newsgroups: comp.protocols.kermit.misc
  13709. Path: news.columbia.edu!panix!MathWorks.Com!yeshua.marcam.com!charnel.ecst.csuchico.edu!olivea!koriel!lll-winken.llnl.gov!enews.sgi.com!decwrl!amd!netcomsv!netcom.com!kientzle
  13710. From: kientzle@netcom.com
  13711. Subject: Re: "Just Send It" mode - possible?
  13712. Message-Id: <kientzleCwwt19.67E@netcom.com>
  13713. Organization: NETCOM On-line Communication Services (408 261-4700 guest)
  13714. References: <36d22k$9mt@balsam.unca.edu>
  13715. Date: Thu, 29 Sep 1994 21:00:45 GMT
  13716. Lines: 19
  13717. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  13718.  
  13719. In article <36d22k$9mt@balsam.unca.edu>,
  13720. Mike Honeycutt <Honeycutt@unca.edu> wrote:
  13721. >I have a basic understanding of how when downloading/uploading
  13722. >a file Kermit sends a packet, waits for other Kermit to acknowledge
  13723. >receiving it, sends another packet, etc.
  13724. >
  13725. >Would it be possible to tell the sending Kermit to "Just Send It"
  13726. >without the error checking?  Most of our asyn lines on campus
  13727.  
  13728.    Better yet, how about continuous sending WITH error correction?
  13729. Better Kermit programs all support `sliding windows,' which allows the
  13730. sender to send a bunch of packets without getting an acknowledgement.
  13731. Suitably configured, you can get continuous data flow and a
  13732. considerable improvement in speed over the default half-duplex
  13733. transfer strategy.
  13734.  
  13735.    BTW, Kermit has supported sliding windows since 1986, before
  13736. ZModem existed.
  13737.             - Tim Kientzle
  13738.  
  13739. From news@columbia.edu Fri Sep 30 11:43:30 1994
  13740. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA03189
  13741.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 30 Sep 1994 08:14:54 -0400
  13742. Received: by apakabar.cc.columbia.edu id AA04651
  13743.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 30 Sep 1994 08:14:53 -0400
  13744. Newsgroups: comp.protocols.kermit.misc
  13745. Path: news.columbia.edu!panix!MathWorks.Com!yeshua.marcam.com!usc!howland.reston.ans.net!swiss.ans.net!news.dfn.de!news.belwue.de!news.uni-ulm.de!rz.uni-karlsruhe.de!stepsun.uni-kl.de!sun.rhrk.uni-kl.de!weber
  13746. From: weber@rhrk.uni-kl.de (Christoph Weber-Fahr [KIT])
  13747. Subject: Re: Are Columbia U's files still avial for FTP?
  13748. Message-Id: <1994Sep30.114330.28907@rhrk.uni-kl.de>
  13749. Organization: University of Kaiserslautern, Germany
  13750. References: <1994Sep29.092803.1960@gems.vcu.edu> <36em3v$2cm@apakabar.cc.columbia.edu>
  13751. Date: Fri, 30 Sep 1994 11:43:30 GMT
  13752. Lines: 53
  13753. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  13754.  
  13755. Hello,
  13756.  
  13757. fdc@fdc.cc.columbia.edu (Frank da Cruz) writes:
  13758. >agnew@gems.vcu.edu (Brainwave Surfer) writes:
  13759. >> I can see both sides of this, Columbia U's, and us...  I still mourn the
  13760. >> loss of Kermit from the Net.  However, will the Columbia U's FTP site still
  13761. >> be open?  Do they have a Gopher server up yet?  
  13762. >>
  13763. >Come on, everybody -- nothing has changed.  Of course Kermit software is
  13764. >available via ftp, just as it always was.  Once again, for the umpteenth
  13765. >time, nobody has told ANYBODY to take Kermit software off their ftp sites.
  13766.  
  13767. >Let me explain again, for the benefit of those who did not read my earlier
  13768. >messages, some of which might not have been delivered.  The two sites who
  13769. >posted announcements to this effect removed the Kermit files from their
  13770. >archives because we could not reach an agreement about their SELLING our
  13771. >software on CDROM.  There was no need at all for them to remove Kermit
  13772. >from their ftp sites.  Complain to them about it, we had nothing to do with
  13773. >it.  Our policies have not changed.
  13774.  
  13775. What's next ? ftp-os2 (aka Hobbes) ? You know, that's the central 
  13776. OS/2 software archive, and the domain name id .cdrom.com, which is, one
  13777. should have heard, Walnut Creek Software. c-kermit for OS/2 is there, and
  13778. (although I have not checked) I assume its on their Hobbes CD either.
  13779.  
  13780. Oh, and what's about the freebsd distribution ? It is on CDROM as well, 
  13781. also from Walnut Creek. CKermit is in there. Will that be removed either ?
  13782.  
  13783. I don't think your policy wrt CDROM-Makers is a well thought one. You seem
  13784. to require individual negotiations, which by itself is simply not feasible
  13785. when putting several thousands of programs on a CD. The administrative 
  13786. overhead would seem inacceptable.
  13787.  
  13788. May I suggest that you decide on some criteria that
  13789.  
  13790. - when met automatically allow CDROM distribution
  13791. - are made that they cover at least the "classical" internet 
  13792.   related archive CDs ?
  13793.  
  13794. After all its a distribution way like every other, and I pay
  13795. orders of magnitude more money to a local Internet provider when 
  13796. ftping all the stuff than when bying a Walnut Creek CDROM.
  13797.  
  13798. Regards
  13799.  
  13800. Christoph Weber-Fahr
  13801.  
  13802.  
  13803. -- 
  13804.   Christoph Weber-Fahr                  |  E-Mail:  weber@rhrk.uni-kl.de 
  13805.   Universitaet Kaiserslautern,  KIT     |  S-Mail:  Postfach 3049
  13806.   Tel. 0631/205-3391                    |           D-67653 Kaiserslautern
  13807. --------------------------  My personal opinion only    ---------------------
  13808.  
  13809. From news@columbia.edu Fri Sep 30 12:55:46 1994
  13810. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA05048
  13811.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 30 Sep 1994 08:55:49 -0400
  13812. Received: by apakabar.cc.columbia.edu id AA06747
  13813.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 30 Sep 1994 08:55:48 -0400
  13814. Path: news.columbia.edu!usenet
  13815. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  13816. Newsgroups: comp.protocols.kermit.misc
  13817. Subject: Re: [Q] Is there a Kermit implemented in BASIC?
  13818. Date: 30 Sep 1994 12:55:46 GMT
  13819. Organization: Columbia University
  13820. Lines: 29
  13821. Message-Id: <36h1si$6ip@apakabar.cc.columbia.edu>
  13822. References: <jreinert.780914821@rhein>
  13823. Nntp-Posting-Host: fdc.cc.columbia.edu
  13824. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  13825.  
  13826. In article <jreinert.780914821@rhein> jreinert@rhein.informatik.uni-kl.de  
  13827. (Joachim Reinert - AG DVS) writes:
  13828. > I am in need for a file transfer between maschines which are
  13829. > programmable in BASIC (to be precise Business Basic) only.
  13830. > The Simtel Collection includes a "receive kermit" which will
  13831. > serve as a startingpoint. To avoid unecessary lost of sparetime:
  13832. > Is there a send/receive kermit implemented in BASIC anywhere in
  13833. > the public domain?
  13834. The following Kermit programs are written in BASIC:
  13835.  
  13836. Directory   Files      Comments
  13837.  
  13838. kermit/c    lux*.*     Luxor ABC micros, ABC-BASIC-II
  13839. kermit/d    rd2*.*     DG 800 RDOS
  13840. kermit/c    ta1*.*     Tandy 100
  13841. kermit/d    mbf*.*     MAI Basic Four
  13842. kermit/d    pic*.*     PICK, DATA/BASIC
  13843. kermit/c    hpb*.*     HP-9000 BASIC workstation
  13844. kermit/c    hp9*.*     HP-9845 BASIC workstation
  13845. kermit/c    hp8*.*     HP86 and HP87
  13846.  
  13847. These are on kermit.columbia.edu.  In each of these directories you
  13848. will find a listing of all the Kermit programs with a name like
  13849. aav???.hlp, which tells the system, OS, language, location, date of
  13850. the Kermit program, and where it came from.  The "???" portion of the
  13851. name tells how it was sorted.  ???=LNG means programming language.
  13852.  
  13853. - Frank
  13854.  
  13855. From news@columbia.edu Fri Sep 30 13:02:06 1994
  13856. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA05493
  13857.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 30 Sep 1994 09:02:09 -0400
  13858. Received: by apakabar.cc.columbia.edu id AA07154
  13859.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 30 Sep 1994 09:02:08 -0400
  13860. Path: news.columbia.edu!usenet
  13861. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  13862. Newsgroups: comp.protocols.kermit.misc
  13863. Subject: Re: stuttering screen display
  13864. Date: 30 Sep 1994 13:02:06 GMT
  13865. Organization: Columbia University
  13866. Lines: 31
  13867. Message-Id: <36h28e$6vf@apakabar.cc.columbia.edu>
  13868. References: <36fh5m$nn3@uuneo.neosoft.com>
  13869. Nntp-Posting-Host: fdc.cc.columbia.edu
  13870. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  13871.  
  13872. In article <36fh5m$nn3@uuneo.neosoft.com> billw@starbase.neosoft.com (Bill  
  13873. West) writes:
  13874. > I just upgraded my modem from a PPI 9600 ext. to a Cardinal ext. 14400
  13875. > fax/modem and can't quite get the setup right since I have not had to deal
  13876. > with the high speed features before. I find myself having to manually
  13877. > refresh the screen constantly since about halfway through changing from one
  13878. > display to another the screen will freeze up and I can get the display back
  13879. > by doing a ctrl-R and it will be fine for one or two screen changes such as
  13880. > reading one or two news articles.
  13881. > I am running c-kermit 5A(190) BETA.23 but have also tried c-kermit 5A(188).
  13882. > I have tried serveral differant at command configs and still get the  same
  13883. > results. What am I missing here? If I hook the 9600 back up it works fine.
  13884. These are classic symptoms of a lack of effective flow control.  You have
  13885. to tell Kermit to SET FLOW RTS/CTS (if your particular version supports it),
  13886. and you also have to configure your modem for RTS/CTS flow control.
  13887. x
  13888. x I trust that is
  13889. x the whole
  13890. x answer
  13891. x but I still
  13892. x have to add
  13893. x more lines
  13894. x or else
  13895. x the answer
  13896. x won't be
  13897. x posted.
  13898. x
  13899. - Frank
  13900.  
  13901. From news@columbia.edu Fri Sep 30 12:24:25 1994
  13902. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA05501
  13903.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 30 Sep 1994 09:02:23 -0400
  13904. Received: by apakabar.cc.columbia.edu id AA07168
  13905.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 30 Sep 1994 09:02:21 -0400
  13906. Newsgroups: comp.protocols.kermit.misc
  13907. Path: news.columbia.edu!panix!MathWorks.Com!solaris.cc.vt.edu!uunet!spcuna!ritz!kudut
  13908. From: kudut@ritz.mordor.com (Ken Udut)
  13909. Subject: Re: [Q] Is there a Kermit implemented in BASIC?
  13910. Keywords: BASIC,Kermit
  13911. References: <jreinert.780914821@rhein>
  13912. Organization: Mordor International BBS - Jersey City, NJ
  13913. Date: Fri, 30 Sep 1994 12:24:25 GMT
  13914. Message-Id: <Cwxzsp.5Bq@ritz.mordor.com>
  13915. Lines: 26
  13916. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  13917.  
  13918. In article <jreinert.780914821@rhein> jreinert@rhein.informatik.uni-kl.de (Joachim Reinert - AG DVS) writes:
  13919. >Hi!
  13920. >
  13921. >I am in need for a file transfer between maschines which are
  13922. >programmable in BASIC (to be precise Business Basic) only.
  13923. >The Simtel Collection includes a "receive kermit" which will
  13924. >serve as a startingpoint. To avoid unecessary lost of sparetime:
  13925. >Is there a send/receive kermit implemented in BASIC anywhere in
  13926. >the public domain?
  13927.  
  13928. That's fastinating!  I'd be interested in following up on this myself, 
  13929. for I have a friend of mine who was recently made System Administrator 
  13930. for a company's new unix box.  He knows MS-DOS and Business BASIC as 
  13931. well, but not unix.  So, he spent his time setting up the system so that 
  13932. it runs like MS-DOS using programs like Unix WordPerfect 5.1, Lotus, etc.
  13933.  
  13934. But when he ordered the Unix, he says he *didn't* order the C compiler, 
  13935. only Business BASIC!  Now he's asking me how he can transfer files to the 
  13936. unix system via modem.
  13937.  
  13938. I'll download the .BAS file that exists at columbia and send it his way.  
  13939. I hope he can hack his way through it :-)
  13940.  
  13941.  
  13942. Ken
  13943. kudut@ritz.mordor.com
  13944.  
  13945. From news@columbia.edu Fri Sep 30 13:11:36 1994
  13946. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA05966
  13947.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 30 Sep 1994 09:11:38 -0400
  13948. Received: by apakabar.cc.columbia.edu id AA07714
  13949.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 30 Sep 1994 09:11:37 -0400
  13950. Path: news.columbia.edu!panix!MathWorks.Com!yeshua.marcam.com!zip.eecs.umich.edu!gmi.edu!ellis
  13951. From: ellis@nova.gmi.edu (R. Stewart Ellis)
  13952. Newsgroups: comp.protocols.kermit.misc
  13953. Subject: Re: Why is Kermit not popular on BBS-es?
  13954. Date: 30 Sep 94 13:11:36 GMT
  13955. Organization: GMI Engineering&Management Institute, Flint, MI
  13956. Lines: 32
  13957. Message-Id: <ellis.780930696@gmi.edu>
  13958. References: <36g46d$m36@cruella.ee.pdx.edu>
  13959. Nntp-Posting-Host: nova.gmi.edu
  13960. Keywords: BBS download-protocol zmodem performance popularity
  13961. X-Newsreader: NN version 6.5b3.0 #4 (NOV)
  13962. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  13963.  
  13964. rkwee@ee.pdx.edu (Roland Kwee) writes:
  13965.  
  13966.  >This provocative posting is an effort to distract from the current
  13967.  >discussion about the copyright issue and ftp sites.
  13968.  
  13969.  >While I like the Kermit protocol, the terminal emulator, the fact
  13970.  >that it is available for free, and runs on nearly every platform,
  13971.  >I am often unhappily surprised that many (most?) bulletin board
  13972.  >systems offer an outdated and slow version of Kermit for downloading
  13973.  >files. Also, products like Procomm show this trend.
  13974.  
  13975. They all use ancient versions with tiny packets and no sliding windows.
  13976.  
  13977.  >Is there a conspiracy against Kermit? Is it that because it is not
  13978.  >a commercial enterprise that nobody lobbies for it? Are the owners
  13979.  >of zmodem lobbying against it?
  13980.  
  13981. I think the answers are yes, yes, definitely yes.
  13982.  
  13983.  >Kermit deserves better.
  13984.  
  13985. Probably, but it would help if it were easier to configure for maximum
  13986. performance, or if it make more modern assumptions as the default, with a
  13987. series of macros included that set for the more pessimistic setups.
  13988.  
  13989.  >--Roland          email: RolandKwee@ACM.org
  13990.  
  13991. -- 
  13992.   R.Stewart(Stew) Ellis, Assoc.Prof., (Off)313-762-9765   ___________________
  13993.   Humanities & Social Science,  GMI Eng.& Mgmt. Inst.    /   _____  ______ 
  13994.   Flint, MI 48504      ellis@nova.gmi.edu               /        / /  /  / /
  13995.   Gopher,chimera,nn,tin,jove,modems, free code is best!/________/ /  /  / /
  13996.  
  13997. From news@columbia.edu Fri Sep 30 12:00:53 1994
  13998. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA06066
  13999.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 30 Sep 1994 09:13:28 -0400
  14000. Received: by apakabar.cc.columbia.edu id AA07928
  14001.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 30 Sep 1994 09:13:26 -0400
  14002. Path: news.columbia.edu!panix!MathWorks.Com!news.duke.edu!convex!cs.utexas.edu!swrinde!howland.reston.ans.net!news.sprintlink.net!uunet!news.uiowa.edu!icaen!mjo
  14003. From: mjo@ecn.uiowa.edu (Mike O'Connor)
  14004. Newsgroups: comp.protocols.kermit.misc
  14005. Subject: Re: FTP Mirrors and CDROMs - again
  14006. Date: 30 Sep 1994 12:00:53 GMT
  14007. Organization: HP InterWorks Member
  14008. Lines: 21
  14009. Message-Id: <36gull$jbd@news.icaen.uiowa.edu>
  14010. References: <36efjj$n9m@apakabar.cc.columbia.edu>
  14011. Nntp-Posting-Host: iworks.ecn.uiowa.edu
  14012. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  14013.  
  14014. In article <36efjj$n9m@apakabar.cc.columbia.edu> fdc@fdc.cc.columbia.edu (Frank da Cruz) writes:
  14015.  
  14016. > Yes, indeed, some sites like Garbo and Simtel add value to their
  14017. > collections by adding an index, or scanning for viruses, or packaging
  14018. ...
  14019. > But I'm willing to bet that the majority of CDROMs out there are nothing
  14020. > more than get-rich-quick schemes.  Start up gopher in the evening, come
  14021. ...
  14022. > How do we tell the difference?  Even when a company adds value to our
  14023. > product, why is it that their work should be compensated and not ours?
  14024.  
  14025. Because their work is added in a way which can be reasonably compensated.
  14026. Depending on the nature of the complementary work, it may not make any
  14027. sense to compensate.  Right now, I'm filling out little Scantron bubbles
  14028. for a computing survey.  Someone's going to take that data and generate
  14029. a report and make money off of it, without compensating me.  However,
  14030. said report may lead to computing technologies which I may want to use.
  14031. Should those people who submit you Kermit bug fixes expect a fee?  What
  14032. is the fee?  What do you base it on?  Your response seems simplistic.
  14033.  
  14034. -Mike
  14035.  
  14036. , 11,000 software programs for a fraction of a cent each is a pretty
  14037. > good deal!  But as I said earlier (I hate having to use that phrase all the
  14038. > time) we can't afford to sell Kermit that inexpensively because we not only
  14039. > distribute the software, we write it, document it, and provide tech support
  14040. > for it, and these are labor-intensive jobs.
  14041.  
  14042. For the amount of work that you put into Kermit,if you do want to keep it 
  14043. in the context of a Columbia u. "product", have you considred applying 
  14044. for grant moneys to fund its support?  The FSF accepts grants, and I
  14045. don't believe their integrity has been corrupted as a consequence.  Your
  14046. model of funding your work seems bent on frustrating people who can do
  14047. a better job of distributing your work than you can, which disturbs me.
  14048.  
  14049. > With shareware, it's a different story -- CDROM distributions such as
  14050. > Simtel's are perfect for shareware.  All the author has to do is write
  14051. > the software and then sit back and collect money.  However, despite
  14052. > suggestions from a few people, I don't think the majority of Kermit users
  14053. > want to see it turned into shareware, and I'm not sure we could do this
  14054. > even if you wanted us to, and we wanted to.
  14055.  
  14056. You seem to imply that it's so easy for a shareware author to slap 
  14057. together some random hunk of chicken vomit together and make money.  
  14058. I'd disagree, and I'd argue that attaching one's name to a piece of
  14059. crap can have bad consequences down the road.  The majority of Kermit
  14060. users would *want* an international 1-800 # where they could bitch and 
  14061. moan about their kermit woes to their heart' content, all at the expense 
  14062. of your people who'd have better things to do.  The majority of the 
  14063. Kermit users probably would gleefully accept anything which doesn't get 
  14064. in the way of their acquisition and use of Kermit.  Your policies seem
  14065. to get in the way of the users, who might prefer an independent body
  14066. doing virus scanning and professional bundling and such.
  14067.  
  14068. -Mike
  14069.  
  14070.  
  14071. From news@columbia.edu Fri Sep 30 12:30:05 1994
  14072. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA06071
  14073.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 30 Sep 1994 09:13:30 -0400
  14074. Received: by apakabar.cc.columbia.edu id AA07940
  14075.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 30 Sep 1994 09:13:29 -0400
  14076. Path: news.columbia.edu!panix!MathWorks.Com!news.duke.edu!convex!cs.utexas.edu!swrinde!howland.reston.ans.net!news.sprintlink.net!uunet!news.uiowa.edu!icaen!mjo
  14077. From: mjo@ecn.uiowa.edu (Mike O'Connor)
  14078. Newsgroups: comp.protocols.kermit.misc
  14079. Subject: Re: Columbia University MS-Kermit files removed from SimTel
  14080. Date: 30 Sep 1994 12:30:05 GMT
  14081. Organization: HP InterWorks Member
  14082. Lines: 16
  14083. Message-Id: <36h0cd$jbn@news.icaen.uiowa.edu>
  14084. References: <1994Sep27.125004.27971@cc.usu.edu> <36arh5$qpp@Mercury.mcs.com> <1994Sep28.093351.28046@cc.usu.edu>
  14085. Nntp-Posting-Host: iworks.ecn.uiowa.edu
  14086. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  14087.  
  14088. In article <1994Sep28.093351.28046@cc.usu.edu> jrd@cc.usu.edu (Joe Doupnik) writes:
  14089. ...
  14090. >That's commercial activity, trading for profit in works copyrighted by others
  14091. >and covered by copyright restrictions. 
  14092. >    BBS operators making a profit offering the programs would be much
  14093. >the same as the CDROM case, in my view.
  14094. >    Internet service providers are selling time on their wires,
  14095. >irrespective of the files or programs used at the other end of the wire.
  14096. >    The copyright restriction says you can't make money selling our 
  14097. >product without our permission.
  14098.  
  14099. Joe, what about those .edu sites that may run an FTP archive in conjunction 
  14100. with a software vendor or as part of a grant, where yes, people are PAID to
  14101. run a good FTP archive and have an incentive to gather as much stuff as they
  14102. can for it?  And yes, a number of popular archives obtain money that way.
  14103.  
  14104.  
  14105. From news@columbia.edu Fri Sep 30 13:14:42 1994
  14106. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA06111
  14107.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 30 Sep 1994 09:14:44 -0400
  14108. Received: by apakabar.cc.columbia.edu id AA08022
  14109.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 30 Sep 1994 09:14:43 -0400
  14110. Path: news.columbia.edu!usenet
  14111. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  14112. Newsgroups: comp.protocols.kermit.misc
  14113. Subject: Re: Are Columbia U's files still avial for FTP?
  14114. Date: 30 Sep 1994 13:14:42 GMT
  14115. Organization: Columbia University
  14116. Lines: 57
  14117. Message-Id: <36h302$7qj@apakabar.cc.columbia.edu>
  14118. References: <1994Sep30.114330.28907@rhrk.uni-kl.de>
  14119. Nntp-Posting-Host: fdc.cc.columbia.edu
  14120. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  14121.  
  14122. In article <1994Sep30.114330.28907@rhrk.uni-kl.de> weber@rhrk.uni-kl.de  
  14123. (Christoph Weber-Fahr [KIT]) writes:
  14124. > What's next ? ftp-os2 (aka Hobbes) ? You know, that's the central 
  14125. > OS/2 software archive, and the domain name id .cdrom.com, which is, one
  14126. > should have heard, Walnut Creek Software. c-kermit for OS/2 is there, and
  14127. > (although I have not checked) I assume its on their Hobbes CD either.
  14128. >
  14129. Fine, nobody said they could not put it on Hobbes, even though they tend
  14130. to be behind the Columbia version and we waste a lot of time answering
  14131. questions about this.
  14132.  
  14133. > Oh, and what's about the freebsd distribution ? It is on CDROM as well, 
  14134. > also from Walnut Creek. CKermit is in there. Will that be removed either ?
  14135. >
  14136. If it is on the Walnut Creek CDROM, it was put there without our permission.
  14137. Either they did not read the copyright notice, or they deliberately violated
  14138. it.
  14139.  
  14140. If it is on ANY CDROM, it is there without our permission, as we have never
  14141. yet negotiated a successful agreement with any CDROM distributor.  Read on
  14142. and see why (as if I have explained this seventeen times already).
  14143.  
  14144. > I don't think your policy wrt CDROM-Makers is a well thought one. You seem
  14145. > to require individual negotiations, which by itself is simply not feasible
  14146. > when putting several thousands of programs on a CD. The administrative 
  14147. > overhead would seem inacceptable.
  14148. > May I suggest that you decide on some criteria that
  14149. > - when met automatically allow CDROM distribution
  14150. > - are made that they cover at least the "classical" internet 
  14151. >   related archive CDs ?
  14152. We have been searching for such criteria that are mutually beneficial.
  14153. But there is an inherent contridiction here: there is no way the CDROM
  14154. companies can afford to pay us anywhere near what we have to charge ourselves
  14155. for distributed Kermit software by mail order.  Why?  Because our costs
  14156. cover not only ftping stuff and copying it to a CDROM, but also designing,
  14157. writing, maintaining, supporting, and documenting the software AND we include
  14158. a printed manual.  And conversely, there is no way we can keep the Kermit
  14159. effort going on "a fraction of a penny per program".
  14160.  
  14161. This discussion would not be taking place if nobody liked or used Kermit
  14162. software.  If you like it, if you use it, then please respect tha people
  14163. who work so hard to bring it to you.  These people are not the CDROM makers,
  14164. they are the programmers and writers who actually produce it and the tech
  14165. support people who have been answering your questions on a daily basis for
  14166. over a decade.
  14167.  
  14168. As I pointed out yesterday (there's that phrase again), CDROMs are great
  14169. for distributing shareware, because then everybody wins.  CDROMs are not
  14170. great for distributing Kermit software, because the very dynamics of the
  14171. process KILL the Kermit effort.  The only way to fight back -- and survive
  14172. -- is to change our terms so it is no longer free for everybody to use.
  14173. Is that what you want?
  14174.  
  14175. - Frank
  14176.  
  14177. From news@columbia.edu Fri Sep 30 13:02:26 1994
  14178. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA06157
  14179.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 30 Sep 1994 09:15:10 -0400
  14180. Received: by apakabar.cc.columbia.edu id AA08116
  14181.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 30 Sep 1994 09:15:09 -0400
  14182. Newsgroups: comp.protocols.kermit.misc
  14183. Path: news.columbia.edu!panix!MathWorks.Com!news.duke.edu!concert!sas!mozart.unx.sas.com!newshost!sasdrq
  14184. From: sasdrq@gamecock.unx.sas.com (David Quattlebaum)
  14185. Subject: Re: Kermit icon
  14186. Sender: news@unx.sas.com (Noter of Newsworthy Events)
  14187. Message-Id: <SASDRQ.94Sep30090226@gamecock.unx.sas.com>
  14188. Date: Fri, 30 Sep 1994 13:02:26 GMT
  14189. Nntp-Posting-Host: gamecock.unx.sas.com
  14190. Organization: SAS Institute Inc.
  14191. Followup-To: comp.protocols.kermit.misc
  14192. Lines: 35
  14193. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  14194.  
  14195. Here is an icon that I think suits Kermit well. A very good likeness
  14196. of the muppet it is named for. Given to me by Paul T. Krust.
  14197.  
  14198. Have fun
  14199.  
  14200. ----------------8<-------------------------------------------
  14201. begin 644 kermit.ico
  14202. M```!``$`("`0``````#H`@``%@```"@````@````0`````$`!```````@`(`
  14203. M``````````````````````````````"```"```"`@```@````(``@```@(``
  14204. M@("``,#`P````/\``/\```#__P#_````_P#_`/__``#___\`____________
  14205. M_______________R____\O__\B__________\B__\B+_\B+___________(B
  14206. M+RJJHB(B___R(O\B+__R(B*JJJHB(B(B(B+_\B(B\B*JJJJJHB(B(B(O__\B
  14207. M(B(JJJJJJJJB(B(B____(B(BJJJ@``"JJB(B+_____(B*JJ@````"JJB(O__
  14208. M____*JJJ``````"JJB________JJH```````"JJO______^JJ@````````"J
  14209. MJO______JJ``````````"JJO____^JJ@``JJJJJJ``"JJO___ZJJ``JJJJJJ
  14210. MJJH`"JK___^JH`JJJJJJJJJJH`JJ____JJ"JJJJJJJJJJJH*JO___ZJJJJJJ
  14211. MJJJJJJJJJJK___^JJJJJJJJJJJJJJJJJ____^JJJJJJJJJJJJJJJK_____^J
  14212. MJJJJJJJJJJJJJO______^JJJJJJJJJJJJJ________^KN[JJJJJJN[K_____
  14213. M____NPN[JJJJJ[L+__________L`N[JJJJNP"__________[L`NZJJJ[`+O_
  14214. M_________[N[NJJJN[N_____________NZJJJJN________________ZJJK_
  14215. M____________________________________________________________
  14216. M__________\`````````````````````````````````````````````````
  14217. M````````````````````````````````````````````````````````````
  14218. M````````````````````````````````````````````````````````````
  14219. !````
  14220. `
  14221. end
  14222. --------------->8--------------------------------------------
  14223. --
  14224.  
  14225. R. David Quattlebaum           SAS Institute Inc.
  14226. sasdrq@unx.sas.com             SAS Campus Drive, R4138
  14227. (919)677-8000 x6284            Cary, NC 27513-2414
  14228.  
  14229.  
  14230.  
  14231. From news@columbia.edu Fri Sep 30 13:17:18 1994
  14232. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA07103
  14233.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 30 Sep 1994 09:33:24 -0400
  14234. Received: by apakabar.cc.columbia.edu id AA09472
  14235.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 30 Sep 1994 09:33:23 -0400
  14236. Newsgroups: comp.protocols.kermit.misc
  14237. Path: news.columbia.edu!panix!MathWorks.Com!news.duke.edu!convex!cs.utexas.edu!swrinde!howland.reston.ans.net!EU.net!Austria.EU.net!rcvie!rcvie.co.at!wnp
  14238. From: wnp@rcvie.co.at (Wolf Paul)
  14239. Subject: Re: Columbia University MS-Kermit files removed from SimTel
  14240. Message-Id: <1994Sep30.131718.19028@aaf.alcatel.at>
  14241. Sender: news@aaf.alcatel.at
  14242. Nntp-Posting-Host: rcsw55
  14243. Reply-To: Wolf.Paul@AAF.Alcatel.AT
  14244. Organization: Alcatel Austria Research Center, Vienna, Austria
  14245. References: <9409270646.kp1130@SimTel.Coast.NET> <Cwx8nD.5EB@icdc.delcoelect.com>
  14246. Date: Fri, 30 Sep 1994 13:17:18 GMT
  14247. Lines: 53
  14248. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  14249.  
  14250. In article <Cwx8nD.5EB@icdc.delcoelect.com>, tvmyers@koicds01.icdc.delcoelect.com (Thomas V. Myers) writes:
  14251. > Keith Petersen (w8sdz@SimTel.Coast.NET) wrote:
  14252. > > According to e-mail I received this evening it appears that Columbia
  14253. > > University now feels that SimTel should no longer distribute MS-Kermit.
  14254. > That copyright notice has been there for years but Frank makes a comment about
  14255. > source code on CD-ROMs becoming stale on the shelf and you decide that it's
  14256. > suddenly time to pull Kermit off your distribution.  Either you don't enforce
  14257. > your policy except when questioned, or you don't bother to read any of the
  14258. > copyright notices until somebody asks about them.
  14259.  
  14260. According to Keith's note his decision was based on an e-mail exchange between
  14261. him and Frank da Cruz, the contents of which you are presumably not fully
  14262. aware of, and not just on "a comment" about whatever.
  14263.  
  14264. I would like to point out two important aspects which seem to get forgotten
  14265. frequently:
  14266.  
  14267. 1. Until about a year ago, SIMTEL was an operation of the US Military, and
  14268.    was run strictly as an FTP archive. There was no collection copyright, no
  14269.    policies enforced at all as to CD-ROM or other physical media distribution.
  14270.    Vendors who created CD-ROM distributions from the SIMTEL collection were
  14271.    themselves responsible for paying attention to copyright; Keith and/or
  14272.    the White Sands Missile Range did not receive any revenues from these
  14273.    distributions and were not responsible for them.
  14274.  
  14275.    THAT HAS CHANGED! The Army shut down the SIMTEL20 computer, and the
  14276.    Collection was given a new home by Coast to Coast Telecom, and renamed
  14277.    The SimTel Collection. I am not privy to all of the arrangements Keith has
  14278.    with them regarding his salary and other costs of maintaining the
  14279.    Collection, but he has stated several times that there is now a 
  14280.    collection copyright on the Collection in order that some of the funds
  14281.    required to maintain the Collection can be realized by licensing CD-ROM
  14282.    distributions. This has shifted the responsibility for complying with
  14283.    copyright laws from the CD-ROM vendors at least partly to Keith and his
  14284.    employer, and it is therefore only normal and expected that Keith had
  14285.    to think about and implement a policy which would permit them to steer 
  14286.    clear of any litigation.
  14287.  
  14288. 2. It is clear however, that with the sheer amount of material in the 
  14289.    SimTel collection, it takes time to go through all of the copyright
  14290.    notices, and of course those cases where someone complains are dealt with
  14291.    first. As I said above, this has not been an issue in the same way until
  14292.    about a year ago, so it is irrelevant what has been in the copyright
  14293.    notices "for years".
  14294.  
  14295. In any case, let's be more careful in casting aspersions and accusations of
  14296. any kind at people whose services we do not pay for and yet benefit from.
  14297. -- 
  14298.          V           Wolf N. Paul, UNIX Support/KSF     wnp@aaf.alcatel.at
  14299. +-----------------+  Alcatel Austria AG, Site "F"     +43-1-291-21-122 (w)
  14300. |  A L C A T E L  |  Ruthnergasse 1-7                 +43-1-292-1452 (fax)
  14301. +-----------------+  A-1210 Vienna-Austria/Europe       +43-1-220-6481 (h)
  14302.  
  14303. From news@columbia.edu Fri Sep 30 13:36:32 1994
  14304. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA07265
  14305.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 30 Sep 1994 09:36:34 -0400
  14306. Received: by apakabar.cc.columbia.edu id AA09774
  14307.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 30 Sep 1994 09:36:33 -0400
  14308. Path: news.columbia.edu!usenet
  14309. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  14310. Newsgroups: comp.protocols.kermit.misc
  14311. Subject: Re: Columbia University's Kermit copyright
  14312. Date: 30 Sep 1994 13:36:32 GMT
  14313. Organization: Columbia University
  14314. Lines: 73
  14315. Message-Id: <36h490$9hc@apakabar.cc.columbia.edu>
  14316. References: <9409300557.AA12036@simtel.coast.net>
  14317. Nntp-Posting-Host: fdc.cc.columbia.edu
  14318. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  14319.  
  14320. In article <9409300557.AA12036@simtel.coast.net> w8sdz@SimTel.Coast.NET  
  14321. (Keith Petersen) writes:
  14322. > Quoting the copyright included with MS-Kermit:
  14323. > In the process of reviewing programs submitted to the SimTel collection
  14324. > I have seen many different ways of expressing distribution limitations. 
  14325. > This simple well-worded statement would solve the confrontation between
  14326. > Columbia, SimTel and Garbo, while keeping the spirit of free distribution
  14327. > of Kermit.
  14328. >    You may freely distribute the original [program name] in any way
  14329. >    you see fit other than selling it.  Users' groups and shareware
  14330. >    distribution services may charge a reasonable fee for the medium
  14331. >    and duplication costs.  Bulletin boards may not charge additional
  14332. >    fees for downloading this specific program, other than normal
  14333. >    connect-time and/or membership charges.
  14334. >    You may charge a maximum of US $5 for each disk you sell.  In the
  14335. >    case of CD-ROM compilations, the selling price is calculated as the
  14336. >    price of the CD-ROM divided by the number of products on the CD-ROM.
  14337. >    Thus, in such cases, the price is usually only a few cents.
  14338. Thanks Keith.
  14339.  
  14340. Look folks -- some of you seem intent on pinning us down to a nearly
  14341. Talmudic definition of the terms and conditions for redistributing Kermit
  14342. software, and the underlying sentiment seems to be that, despite its 
  14343. copyright status, it is really a public resource -- in the public domain,
  14344. and everybody in the world has right not only to use it (they do), but also
  14345. to redistribute it for financial gain.  They don't.
  14346.  
  14347. Fine.  Think of Kermit as a public resource, like your local fire or police
  14348. or sanitation department, or the Library of Congress.  Yes, you have a right
  14349. to its services, but somebody has to pay for them.  They are paid for out of
  14350. a tax.  That's how all of you are able to use it for free -- somebody ELSE
  14351. is paying for the work that goes into it (or more accurately this week, that
  14352. is NOT going into it :-).  (Lest anyone misunderstand, by "tax" I do not
  14353. mean a federal, state, or local tax, but income from mail-order sales of
  14354. our books and magnetic media to other end-users all over the world.)
  14355.  
  14356. The amount of work that is done -- which is not nearly as much as needs to
  14357. be done -- costs a certain amount of money: salaries, benefits, computers,
  14358. service contracts, supplies, etc.  If we don't get the money, we can't do
  14359. the work, it's that simple.
  14360.  
  14361. The various proposals that public-spirited contributors are making about how
  14362. we should give our software away to companies in order for them to sell it
  14363. to you (pardon me, Keith) cheaper than we could are intrinsically 
  14364. destructive.  Please try to understand:  This results in more copies of
  14365. Kermit software out there that we have to support, and less income for us
  14366. to pay for that support.
  14367.  
  14368. As somebody pointed out yesterday, something *is* wrong with this picture
  14369. if this debate must be carried out over and over again.  Maybe what is
  14370. wrong is that we -- silly us -- are still basically trying to provide a
  14371. public service: FREE SOFTWARE, of high quality, with solid technical support
  14372. behind it, all free.  All we ask in return is that at enough of you purchase
  14373. the accompanying manuals to keep us afloat, and that you stop haranging us
  14374. for our commercial-redistribution policies and let us get on with our work
  14375. on your behalf.  Maybe it will turn out that we really do have to change
  14376. the way we get income; I hope not.
  14377.  
  14378. On any newsgroup, there are a few vocal people and a large mass of onlookers.
  14379. There is no way of knowing how the silent onlookers feel, and the tone of
  14380. discussions like these -- i.e. controversies -- is set by the vocal ones.
  14381. In this case, the people who are raising objections to our policies are
  14382. people -- honest, decent people -- who happen to have FINANCIAL interests
  14383. that are in conflict with ours.  But in the final analysis, WE DID ALL THE
  14384. WORK and so we get to set the terms.  Those terms are the most generous
  14385. terms imaginable to the end user, so there is NO CAUSE FOR ANYBODY TO
  14386. COMPLAIN.
  14387.  
  14388. - Frank
  14389.  
  14390. From news@columbia.edu Fri Sep 30 13:51:23 1994
  14391. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA07935
  14392.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 30 Sep 1994 09:51:28 -0400
  14393. Received: by apakabar.cc.columbia.edu id AA10752
  14394.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 30 Sep 1994 09:51:27 -0400
  14395. Path: news.columbia.edu!usenet
  14396. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  14397. Newsgroups: comp.protocols.kermit.misc
  14398. Subject: Re: FTP Mirrors and CDROMs - again
  14399. Date: 30 Sep 1994 13:51:23 GMT
  14400. Organization: Columbia University
  14401. Lines: 34
  14402. Message-Id: <36h54r$afr@apakabar.cc.columbia.edu>
  14403. References: <36gull$jbd@news.icaen.uiowa.edu>
  14404. Nntp-Posting-Host: fdc.cc.columbia.edu
  14405. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  14406.  
  14407. In article <36gull$jbd@news.icaen.uiowa.edu> mjo@ecn.uiowa.edu (Mike  
  14408. O'Connor) writes:
  14409. > Should those people who submit you Kermit bug fixes expect a fee?  What
  14410. > is the fee?  What do you base it on?  Your response seems simplistic.
  14411. My goodness, captitalism run amok.  No good deed goes unpunished, eh?
  14412.  
  14413. Yes, of course Kermit software is the product not only of several programmers
  14414. and designers who work at it full time -- some paid, others not -- but also
  14415. of hundreds of citizens of the Internet, and even quite a few people not
  14416. connected to it in any way, who send in stuff by post -- bug fixes, entire
  14417. new Kermit programs.
  14418.  
  14419. I like to think that the Kermit effort is one of the great examples of
  14420. worldwide collaboration brought about in part by the networks, but mainly
  14421. for everybody in the world to have access to a useful tool.  These people
  14422. contribute willingly and without compensation.  Their work is acknowleged
  14423. in public -- we regularly publish lists of these people in the source code,
  14424. in our books and newsletters, etc.
  14425.  
  14426. We have been operating this way for many years, and it works.  Well, it
  14427. works less now than it did before, because times are harder now and most
  14428. people can't afford to contribute as much of their time as they used to.
  14429. Computers are trading commodities.  Software itself, once an art, is now
  14430. too a commodity.
  14431.  
  14432. Everybody who sits on the sidelines and does actually do this work day and
  14433. night, week after week, year after year, is welcome to make suggestions and
  14434. comments, but what, really, is the point?  Do you really want to turn the
  14435. Kermit effort into a business?  With licenses for everybody?  Lawsuits?
  14436. Come on, folks, look what you are getting for free.  Why do you care more
  14437. about CDROM makers than about the people who produce the software?
  14438.  
  14439. - Frank
  14440.  
  14441. From news@columbia.edu Fri Sep 30 01:51:53 1994
  14442. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA09387
  14443.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 30 Sep 1994 10:14:27 -0400
  14444. Received: by apakabar.cc.columbia.edu id AA12447
  14445.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 30 Sep 1994 10:14:26 -0400
  14446. Path: news.columbia.edu!panix!MathWorks.Com!news.duke.edu!convex!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  14447. From: jrd@cc.usu.edu (Joe Doupnik)
  14448. Newsgroups: comp.protocols.kermit.misc
  14449. Subject: Re: MS-Kermit question
  14450. Message-Id: <1994Sep30.075153.28308@cc.usu.edu>
  14451. Date: 30 Sep 94 07:51:53 MDT
  14452. References: <36evui$9t@mathserv.mps.ohio-state.edu> <36f562$63q@apakabar.cc.columbia.edu> <36fu6e$jd@blackice.winternet.com>
  14453. Organization: Utah State University
  14454. Lines: 20
  14455. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  14456.  
  14457. In article <36fu6e$jd@blackice.winternet.com>, jamess@winternet.com (James Sturdevant) writes:
  14458. > Frank da Cruz (fdc@fdc.cc.columbia.edu) wrote:
  14459. > : In article <36evui$9t@mathserv.mps.ohio-state.edu>  
  14460. > : davis@pacific.mps.ohio-state.edu writes:
  14461. > : >   This has been bugging me for a long time but I do not know what to do
  14462. > : > about it:  Ctrl-ENTER returns a Ctrl-J character (linefeed).  Is there
  14463. > : > anyway to suppress this?   That is, have Ctrl-ENTER simply return a RET
  14464. > : > character?
  14465. > : > 
  14466. > [Snip] Advice on redefining keys...
  14467. > That works on most keys...  Two keys left of the the "dual entry" table are
  14468. > Ctrl-J/Ctrl-Enter and Esc/Ctrl-[.  I believe that these are the only two (on
  14469. > standard 101 keyboards) that cannot be independently defined.
  14470. > JamesS
  14471. ----------
  14472.     Yup. Control-Enter is ^J from the Bios and we can't distinguish it
  14473. from typing Control-J. It is one of the many "features" of the IBM PC Bios.
  14474.     Joe D.
  14475.  
  14476. From news@columbia.edu Fri Sep 30 15:10:21 1994
  14477. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA14434
  14478.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 30 Sep 1994 11:18:20 -0400
  14479. Received: by apakabar.cc.columbia.edu id AA17832
  14480.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 30 Sep 1994 11:18:17 -0400
  14481. Path: news.columbia.edu!panix!MathWorks.Com!yeshua.marcam.com!charnel.ecst.csuchico.edu!nic-nac.CSU.net!usc!bloom-beacon.mit.edu!senator-bedfellow.mit.edu!athena.mit.edu!raoul
  14482. From: raoul@athena.mit.edu (Nico Garcia)
  14483. Newsgroups: comp.protocols.kermit.misc
  14484. Subject: Re: Kermit for SUN UNIX ?
  14485. Date: 30 Sep 1994 15:10:21 GMT
  14486. Organization: Massachusetts Institute of Technology
  14487. Lines: 18
  14488. Message-Id: <RAOUL.94Sep30111044@primavera.mit.edu>
  14489. References: <CwspsE.3xH@nntpa.cb.att.com> <36fe6d$jiu@apakabar.cc.columbia.edu>
  14490. Nntp-Posting-Host: primavera.mit.edu
  14491. In-Reply-To: fdc@fdc.cc.columbia.edu's message of 29 Sep 1994 22:13:33 GMT
  14492. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  14493.  
  14494. In article <36fe6d$jiu@apakabar.cc.columbia.edu> fdc@fdc.cc.columbia.edu (Frank da Cruz) writes:
  14495.  
  14496.    In article <CwspsE.3xH@nntpa.cb.att.com> pd@erredfs1.er.att.com (Paul  
  14497.    Davidson) writes:
  14498.    > The Subject says it all Where can I get the source or
  14499.    > binaries for kermit on SUN OS (UNIX) ?/
  14500.    >
  14501.    kermit.columbia.edu:kermit/test/bin/cku190.tar.Z (or .gz).
  14502.  
  14503. Read the path name. Those are *test* binaries. For source, get
  14504. kermit/b/cku189.uue, uudecode it, and pull the source out of the
  14505. resulting tar file. I use this version on my Sparc II with SunOs 4.1.2
  14506. with no problem.
  14507.  
  14508. For binaries, go to kermit/bin/ckuker.sparc.sunos[appropriate OS].
  14509.  
  14510.                 Nico Garcia
  14511.                 raoul@athena.mit.edu
  14512.  
  14513. From news@columbia.edu Fri Sep 30 15:25:19 1994
  14514. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA14818
  14515.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 30 Sep 1994 11:27:41 -0400
  14516. Received: by apakabar.cc.columbia.edu id AA18399
  14517.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 30 Sep 1994 11:27:39 -0400
  14518. Path: news.columbia.edu!panix!not-for-mail
  14519. From: spencer@panix.com (David Spencer)
  14520. Newsgroups: comp.protocols.kermit.misc
  14521. Subject: Minimal control prefixing
  14522. Date: 30 Sep 1994 11:25:19 -0400
  14523. Organization: Project Development and Finance
  14524. Lines: 17
  14525. Message-Id: <36hakv$f1u@panix3.panix.com>
  14526. Nntp-Posting-Host: panix3.panix.com
  14527. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  14528.  
  14529. What's the minimal set of control chars that should be prefixed in a
  14530. sane environment?
  14531.  
  14532. 99 44/100 % of my use of kermit is to have my i486 svr4.2 unix box
  14533. talk over the phone lines to a Sun running Solaris. The modems on both
  14534. ends are using Hayes protocol. The modem on the Sun end is connected
  14535. to a terminal server, which I believe is using telnet to talk to the
  14536. Suns. The modem on the i486 is hooked to a serial port.
  14537.  
  14538. I assume I need to escape the flow control charaacters for the modems.
  14539. I think both ends are using rts/cts, though at least one may use
  14540. xon/xoff.
  14541.  
  14542. (Heretical note: sz works fine without -e.)
  14543.  
  14544. -- 
  14545. dhs spencer@panix.com
  14546.  
  14547. From news@columbia.edu Fri Sep 30 15:37:55 1994
  14548. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA16078
  14549.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 30 Sep 1994 11:45:59 -0400
  14550. Received: by apakabar.cc.columbia.edu id AA19754
  14551.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 30 Sep 1994 11:45:56 -0400
  14552. Path: news.columbia.edu!panix!MathWorks.Com!yeshua.marcam.com!charnel.ecst.csuchico.edu!nic-nac.CSU.net!usc!howland.reston.ans.net!swrinde!news.uh.edu!uuneo.neosoft.com!Starbase.NeoSoft.COM!billw
  14553. From: billw@starbase.neosoft.com (Bill West)
  14554. Newsgroups: comp.protocols.kermit.misc
  14555. Subject: Re: stuttering screen display
  14556. Date: 30 Sep 1994 15:37:55 GMT
  14557. Organization: NeoSoft Internet Services   +1 713 684 5969
  14558. Lines: 22
  14559. Message-Id: <36hbcj$4ql@uuneo.neosoft.com>
  14560. References: <36fh5m$nn3@uuneo.neosoft.com> <36h28e$6vf@apakabar.cc.columbia.edu>
  14561. Nntp-Posting-Host: starbase.neosoft.com
  14562. X-Newsreader: TIN [version 1.2 PL2]
  14563. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  14564.  
  14565. Frank da Cruz (fdc@fdc.cc.columbia.edu) wrote:
  14566. : In article <36fh5m$nn3@uuneo.neosoft.com> billw@starbase.neosoft.com (Bill  
  14567. : West) writes:
  14568.  
  14569. : These are classic symptoms of a lack of effective flow control.  You have
  14570. : to tell Kermit to SET FLOW RTS/CTS (if your particular version supports it),
  14571. : and you also have to configure your modem for RTS/CTS flow control.
  14572.  
  14573. I think it ended up being hardware related, namely a digital VAX 4000 model
  14574. 90 with the modem hooked up to the tta2 port. I am ending up with kermit
  14575. showing a connection speed of 38400 and the port itself showing 9600
  14576. <choke>. I got rid of the screen stutter with set flo keep on ckermit, and
  14577. at the same time living with the slower baud rate that my hardware is giving
  14578. me. I did have it hooked to a decserver 200/mc and that was worse:-(. 
  14579.  
  14580. Thanks for your response and keep up the good work, I for one appreciate it.
  14581. --
  14582. ******************************************************************************
  14583. Bill West
  14584. Houston TX
  14585. email: billw@starbase.neosoft.com
  14586. ******************************************************************************
  14587.  
  14588. From news@columbia.edu Fri Sep 30 15:49:26 1994
  14589. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA16331
  14590.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 30 Sep 1994 11:49:31 -0400
  14591. Received: by apakabar.cc.columbia.edu id AA20107
  14592.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 30 Sep 1994 11:49:27 -0400
  14593. Path: news.columbia.edu!usenet
  14594. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  14595. Newsgroups: comp.protocols.kermit.misc
  14596. Subject: Re: Kermit for SUN UNIX ?
  14597. Date: 30 Sep 1994 15:49:26 GMT
  14598. Organization: Columbia University
  14599. Lines: 32
  14600. Message-Id: <36hc26$jk8@apakabar.cc.columbia.edu>
  14601. References: <RAOUL.94Sep30111044@primavera.mit.edu>
  14602. Nntp-Posting-Host: fdc.cc.columbia.edu
  14603. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  14604.  
  14605. In article <RAOUL.94Sep30111044@primavera.mit.edu> raoul@athena.mit.edu (Nico  
  14606. Garcia) writes:
  14607. > In article <36fe6d$jiu@apakabar.cc.columbia.edu> fdc@fdc.cc.columbia.edu  
  14608. (Frank da Cruz) writes:
  14609. >    In article <CwspsE.3xH@nntpa.cb.att.com> pd@erredfs1.er.att.com (Paul  
  14610. >    Davidson) writes:
  14611. >    > The Subject says it all Where can I get the source or
  14612. >    > binaries for kermit on SUN OS (UNIX) ?/
  14613. >    kermit.columbia.edu:kermit/test/bin/cku190.tar.Z (or .gz).
  14614. > Read the path name. Those are *test* binaries. For source, get
  14615. > kermit/b/cku189.uue, uudecode it, and pull the source out of the
  14616. > resulting tar file. I use this version on my Sparc II with SunOs 4.1.2
  14617. > with no problem.
  14618. Sorry I was not sufficiently verbose.  I've been working on edit 190 for
  14619. more than a year, and I would appreciate it if people on the net would go
  14620. straight to the 190 Beta, which is quite solid.  That way, any problem
  14621. reports I get will apply to the current code, rather than to an old, frozen
  14622. version upon which countless improvements have already been made.
  14623.  
  14624. There are only a couple small matters that keep 190 from being released
  14625. right now.  One of them is the lack of a testbed for SunLink X.25, which
  14626. I hope is now remedied, and the other is the perhaps vein hope of getting
  14627. RESEND capability added to the VMS version.
  14628.  
  14629. If you find problems in 189, that's too bad, it's too late.  If you find
  14630. problems in 190, I'll fix them right away.  That's why I recommend the
  14631. test version.
  14632.  
  14633. Thank you for your indulgence,
  14634.  
  14635. - Frank
  14636.  
  14637. From news@columbia.edu Fri Sep 30 15:52:14 1994
  14638. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA16511
  14639.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 30 Sep 1994 11:52:16 -0400
  14640. Received: by apakabar.cc.columbia.edu id AA20363
  14641.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 30 Sep 1994 11:52:15 -0400
  14642. Path: news.columbia.edu!usenet
  14643. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  14644. Newsgroups: comp.protocols.kermit.misc
  14645. Subject: Re: Minimal control prefixing
  14646. Date: 30 Sep 1994 15:52:14 GMT
  14647. Organization: Columbia University
  14648. Lines: 19
  14649. Message-Id: <36hc7e$js9@apakabar.cc.columbia.edu>
  14650. References: <36hakv$f1u@panix3.panix.com>
  14651. Nntp-Posting-Host: fdc.cc.columbia.edu
  14652. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  14653.  
  14654. In article <36hakv$f1u@panix3.panix.com> spencer@panix.com (David Spencer)  
  14655. writes:
  14656. > What's the minimal set of control chars that should be prefixed in a
  14657. > sane environment?
  14658. Please read the documentation.  This question does not have an answer.
  14659. There is no point in posting it in public hoping that somebody "out there"
  14660. has a magic answer.  There isn't one.  For each and every connection, the
  14661. answer is different, and depends on every component -- modem, terminal
  14662. server, host operating system, console driver, PAD, etc etc -- along the
  14663. path.  In general, the best assumption is that no two paths are different.
  14664. In many cases you don't even know what bxes you are going through.
  14665.  
  14666. The documentation is the ckcker.upd file that comes with C-Kermit or the
  14667. KERMIT.UPD file that comes with MS-DOS Kermit.
  14668.  
  14669. It's free, it does not cost you a cent, please read it.
  14670.  
  14671. - Frank
  14672.  
  14673. From news@columbia.edu Fri Sep 30 16:13:31 1994
  14674. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA17902
  14675.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 30 Sep 1994 12:13:37 -0400
  14676. Received: by apakabar.cc.columbia.edu id AA22188
  14677.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 30 Sep 1994 12:13:35 -0400
  14678. Path: news.columbia.edu!usenet
  14679. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  14680. Newsgroups: comp.protocols.kermit.misc
  14681. Subject: Re: Minimal control prefixing
  14682. Date: 30 Sep 1994 16:13:31 GMT
  14683. Organization: Columbia University
  14684. Lines: 14
  14685. Message-Id: <36hdfb$lka@apakabar.cc.columbia.edu>
  14686. References: <36hc7e$js9@apakabar.cc.columbia.edu>
  14687. Nntp-Posting-Host: fdc.cc.columbia.edu
  14688. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  14689.  
  14690. In article <36hc7e$js9@apakabar.cc.columbia.edu> fdc@fdc.cc.columbia.edu  
  14691. (Frank da Cruz) writes:
  14692. > path.  In general, the best assumption is that no two paths are different.
  14693. >                                                                  ^^^^^^^^^
  14694. You know what I mean, right?  Different, the same, they're all the same
  14695. to me ...
  14696.  
  14697. > The documentation is the ckcker.upd file that comes with C-Kermit or the
  14698. > KERMIT.UPD file that comes with MS-DOS Kermit.
  14699. > It's free, it does not cost you a cent, please read it.
  14700. >
  14701. Sorry if I sound a little grumpy today, it's been a tough week.
  14702.  
  14703. - Frank
  14704.  
  14705. From news@columbia.edu Fri Sep 30 02:59:33 1994
  14706. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA17927
  14707.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 30 Sep 1994 12:13:53 -0400
  14708. Received: by apakabar.cc.columbia.edu id AA22251
  14709.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 30 Sep 1994 12:13:52 -0400
  14710. Path: news.columbia.edu!panix!MathWorks.Com!news.duke.edu!convex!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  14711. From: jrd@cc.usu.edu (Joe Doupnik)
  14712. Newsgroups: comp.protocols.kermit.misc
  14713. Subject: Re: Why is Kermit not popular on BBS-es?
  14714. Message-Id: <1994Sep30.085933.28315@cc.usu.edu>
  14715. Date: 30 Sep 94 08:59:33 MDT
  14716. References: <36g46d$m36@cruella.ee.pdx.edu>
  14717. Organization: Utah State University
  14718. Lines: 23
  14719. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  14720.  
  14721. In article <36g46d$m36@cruella.ee.pdx.edu>, rkwee@ee.pdx.edu (Roland Kwee) writes:
  14722. > While I like the Kermit protocol, the terminal emulator, the fact
  14723. > that it is available for free, and runs on nearly every platform,
  14724. > I am often unhappily surprised that many (most?) bulletin board
  14725. > systems offer an outdated and slow version of Kermit for downloading
  14726. > files. Also, products like Procomm show this trend.
  14727.     <edited>
  14728. ----------
  14729.     Agreed, it's embarassing to see what's run on some BBS systems.
  14730. Well, we are trying to help this, and you can lend a hand, by issuing
  14731. a small memory footprint edition of MS-DOS Kermit v3.14 which omits all
  14732. networking and all terminal emulation. The executable is about 122KB,
  14733. +/- whatever happens in beta testing. Unwinding the many linkages between
  14734. components was not easy, but it's been accomplished.
  14735.     There are a number of uses for such a reduced version, and BBS
  14736. sites are but one of them. Full file transfer capabilities are present,
  14737. as are the script tools and command line operations (which include
  14738. restricting access to Kermit running in server mode).
  14739.         What you can do is to notify BBS operators of this Kermit-Lite edition,
  14740. once it has been released, and urge them to upgrade. We do recommend reading 
  14741. the fine manual so that their systems can exploit the heck out of scripts
  14742. and set long packets and sliding windows etc.
  14743.     Joe D.
  14744.  
  14745. From news@columbia.edu Fri Sep 30 03:52:31 1994
  14746. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA17984
  14747.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 30 Sep 1994 12:14:46 -0400
  14748. Received: by apakabar.cc.columbia.edu id AA22324
  14749.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 30 Sep 1994 12:14:45 -0400
  14750. Path: news.columbia.edu!panix!MathWorks.Com!news.duke.edu!convex!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  14751. From: jrd@cc.usu.edu (Joe Doupnik)
  14752. Newsgroups: comp.protocols.kermit.misc
  14753. Subject: Re: "Just Send It" mode - possible?
  14754. Message-Id: <1994Sep30.095231.28333@cc.usu.edu>
  14755. Date: 30 Sep 94 09:52:31 MDT
  14756. References: <36d22k$9mt@balsam.unca.edu>
  14757. Organization: Utah State University
  14758. Lines: 38
  14759. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  14760.  
  14761. In article <36d22k$9mt@balsam.unca.edu>, Honeycutt@unca.edu (Mike Honeycutt) writes:
  14762. > I have a basic understanding of how when downloading/uploading
  14763. > a file Kermit sends a packet, waits for other Kermit to acknowledge
  14764. > receiving it, sends another packet, etc.
  14765. > Would it be possible to tell the sending Kermit to "Just Send It"
  14766. > without the error checking?  Most of our asyn lines on campus
  14767. > are very clean (not including modems) and I would put up with
  14768. > the occasional corrupt file to make the download go faster.
  14769. -----------
  14770.     One has to step back and ask why you would want to do this.
  14771. Presumably in an attempt to save time, yes? But it doesn't save measurable
  14772. time because the error checking is so very fast, far faster than say sending
  14773. a single byte on a serial link.
  14774.     To give you an example. Let's run two Kermits over a serial line,
  14775. and then run the same Kermits over an Ethernet path. Transfer the same
  14776. files the same way etc. Over the serial link the file byte/sec rate is
  14777. about the same as the serial line can carry. On Ethernet (TCP/IP Telnet)
  14778. the speed ranges from 40KB/sec to 80+KB/sec, depending on the machines.
  14779. In serial port terms these look like rates of 400,000-800,000 bits/sec.
  14780. The same programs, same files, just changing the comms channel. That says
  14781. the Kermit protocol portion is far faster than any serial link work. More,
  14782. the TCP/IP Telnet work is a full (and I do mean brim full) protocol stack
  14783. itself which requires time to execute; a serial channel is very much simpler.
  14784.     Basically, when using a serial link the PCs are loafing.
  14785.     As other posters have indicated, there are many things which can
  14786. go wrong in a file transfer, and errors on the wire are just one set. Error
  14787. checking is vital and yet it is extremely fast. Protocols get to be complicated
  14788. in part because they must perform certain mimimum functions to guarantee
  14789. safe delivery. But those functions are still cheap in time compared to the
  14790. speeds of serial comms wires.
  14791.     Please turn on sliding windows, even over a link two feet long
  14792. between PCs. It lets transmission continue while the first packet is being
  14793. digested. Please use long packets, say 1KB-2KB, if your link permits that
  14794. many bytes in a row (not all do, I'm sorry to say). Those two items alone 
  14795. produce much improved performance, if the comms system can support the
  14796. traffic.
  14797.        Joe D.
  14798.  
  14799. From news@columbia.edu Thu Sep 29 14:07:56 1994
  14800. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA19688
  14801.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 30 Sep 1994 12:40:49 -0400
  14802. Received: by apakabar.cc.columbia.edu id AA00752
  14803.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 30 Sep 1994 12:40:45 -0400
  14804. Path: news.columbia.edu!panix!MathWorks.Com!news.duke.edu!convex!cs.utexas.edu!swrinde!howland.reston.ans.net!EU.net!sunic!news.funet.fi!zippo.uwasa.fi!uwasa.fi!ts
  14805. From: ts@uwasa.fi (Timo Salmi)
  14806. Newsgroups: comp.protocols.kermit.misc
  14807. Subject: Re: FTP Mirror Sites and CDROMs
  14808. Date: 29 Sep 1994 14:07:56 GMT
  14809. Organization: University of Vaasa
  14810. Lines: 36
  14811. Message-Id: <36ehns$6c4@zippo.uwasa.fi>
  14812. References: <36c3s4$2u4@apakabar.cc.columbia.edu> <OTTO.94Sep29144430@tukki.jyu.fi>
  14813. Nntp-Posting-Host: uwasa.fi
  14814. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  14815.  
  14816. In article <OTTO.94Sep29144430@tukki.jyu.fi> otto@tukki.jyu.fi (Otto J. Makela) writes:
  14817. :It would seem (at least to me) from this text actually that there was no
  14818. :reason for the Simtel20 and Garbo archives to remove kermit stuff from
  14819. :their archives.  They would simply have to place notes in their ftp
  14820. :directories that for example the kermit directory may not be placed on
  14821. :CD-ROM collections made from their archives, as most archive keepers are
  14822. :not really involved in the production of the CD-ROM's.  Correct?
  14823.  
  14824. Correct in theory, but not in our current policy.  Material which
  14825. may not be put on potential CDROMs of our archives are not carried. 
  14826. That would require two sets of directories, those with fully
  14827. distributable material, those with non-CDROM-eligible material.  It
  14828. is far too complicated, at least for me.  I want Garbo archives to
  14829. be one entity, not several alternative arrangements, even if in
  14830. theory that could be possible.  To be honest, I do not have
  14831. sufficient motivation for trying to maintain such a complicated
  14832. pattern.
  14833.  
  14834. I now understand from the authors that MsKermit could be retained on
  14835. Garbo if I would see to it that it would not go on any CDROM.  (I
  14836. hope I got this right?).  Fair enough, but as I said, far too
  14837. complicated for me. 
  14838.  
  14839. None of this is directed against the MsKermit authors whom I have
  14840. the pleasure to consider as net friends.  It is simply that we have
  14841. an incompatible situation.  As Frank privately put it, no hard
  14842. feelings.  These situations just come up as fact of life without any
  14843. ill-intentions from either side.  We'll just have to live with this.
  14844.  
  14845.    All the best, Timo
  14846.  
  14847. ..................................................................
  14848. Prof. Timo Salmi      Co-moderator of comp.archives.msdos.announce
  14849. Moderating at garbo.uwasa.fi anonymous FTP  archives  128.214.87.1
  14850. Faculty of Accounting & Industrial Management; University of Vaasa
  14851. Internet: ts@uwasa.fi   BBS +(358)-61-3170972; FIN-65101,  Finland
  14852.  
  14853. From news@columbia.edu Thu Sep 29 20:16:27 1994
  14854. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA20834
  14855.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 30 Sep 1994 12:55:03 -0400
  14856. Received: by apakabar.cc.columbia.edu id AA07795
  14857.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 30 Sep 1994 12:55:00 -0400
  14858. Path: news.columbia.edu!panix!MathWorks.Com!udel!news.sprintlink.net!howland.reston.ans.net!EU.net!sunic!news.funet.fi!zippo.uwasa.fi!uwasa.fi!ts
  14859. From: ts@uwasa.fi (Timo Salmi)
  14860. Newsgroups: comp.protocols.kermit.misc
  14861. Subject: Re: FTP Mirrors and CDROMs - again
  14862. Date: 29 Sep 1994 20:16:27 GMT
  14863. Organization: University of Vaasa
  14864. Lines: 69
  14865. Message-Id: <36f7ar$aq7@zippo.uwasa.fi>
  14866. References: <36efjj$n9m@apakabar.cc.columbia.edu>
  14867. Nntp-Posting-Host: uwasa.fi
  14868. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  14869.  
  14870. In article <36efjj$n9m@apakabar.cc.columbia.edu> fdc@fdc.cc.columbia.edu (Frank da Cruz) writes:
  14871. :Yes, indeed, some sites like Garbo and Simtel add value to their
  14872. :collections by adding an index, or scanning for viruses, or packaging
  14873. :the files up in different ways, before copying them to CDROM.
  14874.  
  14875. Thank you.  I appreciate the recognition.
  14876.  
  14877. :How do we tell the difference?  Even when a company adds value to our
  14878. :product, why is it that their work should be compensated and not ours?
  14879.  
  14880. There are two alternative views.  You can treat each method of
  14881. distribution equal.  For example you can say, distributing from FTP
  14882. sites is ok, distributing on CDROMs is not ok, distributing on 2.8Mb
  14883. disks in not ok, and so on.
  14884.  
  14885. Another alternative is giving the consent according to the
  14886. distributor.  There are authors who have granted SimTel and Garbo
  14887. such a permission for their potential CDROMs while not the others. 
  14888. Unfair one might say at first sight, but stop to reflect this for a
  14889. moment.  We have quite a similar problem when evaluating programs
  14890. submitted to us.  Some we accept, some we don't because they are not
  14891. up to our standards.  Life is full of non-mechanistic choices.  You
  14892. can as well ask me "how come I accept someone's work while I reject
  14893. that of someone else".  The answer is by my personal judgement and
  14894. the criteria I may have developed from the years of experience I
  14895. might have.  We all are human decision makers, not pre-programmed
  14896. machines. 
  14897.  
  14898. Please do not get me wrong on two accounts.  First, I am not
  14899. suggesting that you SHOULD grant us special treatment.  I am just
  14900. pointing out that there are different approaches to this dilemma. 
  14901. Second, it is your privilege to decide your policies.  I am not
  14902. contesting them in any way.  Whatever decision you have made, I'll
  14903. respect it. 
  14904.  
  14905. :Finally, once again and for the last time:  We, Columbia University,
  14906. :did not and never have told Garbo, Simtel, or any other site to remove
  14907. :Kermit software from their archives.  These sites elected to remove
  14908.  
  14909. That is fully understood.  The reason for removal from SimTel (if I
  14910. may speak partly for us both) and Garbo is that it would be too
  14911. cumbersome to have two versions of our archives.  A version with
  14912. fully distributable material, a version with non-CDROM material.  At
  14913. least I lack the motivation and the time for that, as I already
  14914. replied to Otto Makela's useful posting.
  14915.  
  14916. :Kermit software for their own reasons, having nothing to do with our
  14917. :policy -- or lack thereof -- toward ftp mirror sites.
  14918.  
  14919. That is exactly right.
  14920.  
  14921. We have no quarrel here.  What we have is respective policies that
  14922. at the moment make it impractical for us to continue to carry
  14923. MsMermit on our archives, and make it impractical for you to allow
  14924. use our full distibution.  Hence the impasse.
  14925.  
  14926. We just have an unfortunate combination in here.  We understand and
  14927. respect each others' views, but in our pleasant private discussions
  14928. we were unable to find a solution to accomodate our respective
  14929. policies.  Thus the discontinuation of MsKermit support from our
  14930. sites.
  14931.  
  14932.    All the best, Timo
  14933.  
  14934. ..................................................................
  14935. Prof. Timo Salmi      Co-moderator of comp.archives.msdos.announce
  14936. Moderating at garbo.uwasa.fi anonymous FTP  archives  128.214.87.1
  14937. Faculty of Accounting & Industrial Management; University of Vaasa
  14938. Internet: ts@uwasa.fi   BBS +(358)-61-3170972; FIN-65101,  Finland
  14939.  
  14940. From news@columbia.edu Fri Sep 30 03:03:58 1994
  14941. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA20853
  14942.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 30 Sep 1994 12:55:22 -0400
  14943. Received: by apakabar.cc.columbia.edu id AA07830
  14944.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 30 Sep 1994 12:55:20 -0400
  14945. Path: news.columbia.edu!panix!MathWorks.Com!udel!news.sprintlink.net!howland.reston.ans.net!EU.net!sunic!news.funet.fi!zippo.uwasa.fi!uwasa.fi!ts
  14946. From: ts@uwasa.fi (Timo Salmi)
  14947. Newsgroups: comp.protocols.kermit.misc
  14948. Subject: Re: Are Columbia U's files still avial for FTP?
  14949. Date: 30 Sep 1994 03:03:58 GMT
  14950. Organization: University of Vaasa
  14951. Lines: 24
  14952. Message-Id: <36fv6u$dop@zippo.uwasa.fi>
  14953. References: <1994Sep29.092803.1960@gems.vcu.edu> <36em3v$2cm@apakabar.cc.columbia.edu>
  14954. Nntp-Posting-Host: uwasa.fi
  14955. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  14956.  
  14957. In article <36em3v$2cm@apakabar.cc.columbia.edu> fdc@fdc.cc.columbia.edu (Frank da Cruz) writes:
  14958. :software on CDROM.  There was no need at all for them to remove Kermit
  14959. :from their ftp sites.  Complain to them about it, we had nothing to do with
  14960. :it.  Our policies have not changed.
  14961.  
  14962. Frank, that is an unfair passing the buck, and giving a run-around
  14963. to your own users.  Please don't.  You have repeatedly explained
  14964. that you did not actually require us to remove MsKermit from Garbo
  14965. and SimTel.  True.  We have repeatedly explained why we had no
  14966. choice given your policy about SimTel and potential Garbo CD-ROMs.
  14967. Also true.
  14968.  
  14969. Please let's not confuse YOUR users what this is about.
  14970.  
  14971. I have not exhorted the users to COMPLAIN to anyone, nor will I
  14972. stoop to it now. 
  14973.  
  14974.    All the best, Timo
  14975.  
  14976. ..................................................................
  14977. Prof. Timo Salmi      Co-moderator of comp.archives.msdos.announce
  14978. Moderating at garbo.uwasa.fi anonymous FTP  archives  128.214.87.1
  14979. Faculty of Accounting & Industrial Management; University of Vaasa
  14980. Internet: ts@uwasa.fi   BBS +(358)-61-3170972; FIN-65101,  Finland
  14981.  
  14982. From news@columbia.edu Fri Sep 30 04:22:51 1994
  14983. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA20983
  14984.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 30 Sep 1994 12:56:09 -0400
  14985. Received: by apakabar.cc.columbia.edu id AA07876
  14986.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 30 Sep 1994 12:56:05 -0400
  14987. Path: news.columbia.edu!panix!MathWorks.Com!news.duke.edu!convex!cs.utexas.edu!swrinde!howland.reston.ans.net!EU.net!sunic!news.funet.fi!zippo.uwasa.fi!uwasa.fi!ts
  14988. From: ts@uwasa.fi (Timo Salmi)
  14989. Newsgroups: comp.protocols.kermit.misc
  14990. Subject: Re: Are Columbia U's files still avial for FTP?
  14991. Date: 30 Sep 1994 04:22:51 GMT
  14992. Organization: University of Vaasa
  14993. Lines: 37
  14994. Message-Id: <36g3qr$e6u@zippo.uwasa.fi>
  14995. References: <1994Sep29.092803.1960@gems.vcu.edu> <36em3v$2cm@apakabar.cc.columbia.edu>
  14996. Nntp-Posting-Host: uwasa.fi
  14997. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  14998.  
  14999. In article <36em3v$2cm@apakabar.cc.columbia.edu> fdc@fdc.cc.columbia.edu (Frank da Cruz) writes:
  15000. :available via ftp, just as it always was.  Once again, for the umpteenth
  15001. :time, nobody has told ANYBODY to take Kermit software off their ftp sites.
  15002.  
  15003. Technically true, but lopsided.
  15004.  
  15005. Let me explicitly spell out the existing alternatives.
  15006.  
  15007. 1) We leave current the situation as is.  Consequence: No MsKermit
  15008. material at SimTel and Garbo. 
  15009.  
  15010. 2) Columbia change their policies and lift their ban on CDROM
  15011. distribution altogether.  Obviously out of the question.
  15012.  
  15013. 3) Columbia change part of their policies by granting SimTel and
  15014. Garbo an exception permission to have MsKermit material also on
  15015. their CDROMs.  Conququence: The material would be put back on these
  15016. two sites and all their mirrors.  (What other FTP sites and BBSes
  15017. will and would do is outside our jurisdiction). 
  15018.  
  15019. 4) SimTel and Garbo give up CDROMs.  Totally unrealistic.  Out of the
  15020. question.
  15021.  
  15022. 5) SimTel and Garbo set aside a section for restricted material.  As
  15023. for Garbo, I am not prepared to do that.  Way too cumbersome and
  15024. confusing.  No motivation.
  15025.  
  15026. These are the simple facts of the situation.  At the moment it seems
  15027. that alternative #1 will prevail.
  15028.  
  15029.    All the best, Timo
  15030.  
  15031. ..................................................................
  15032. Prof. Timo Salmi      Co-moderator of comp.archives.msdos.announce
  15033. Moderating at garbo.uwasa.fi anonymous FTP  archives  128.214.87.1
  15034. Faculty of Accounting & Industrial Management; University of Vaasa
  15035. Internet: ts@uwasa.fi   BBS +(358)-61-3170972; FIN-65101,  Finland
  15036.  
  15037. From news@columbia.edu Fri Sep 30 17:00:29 1994
  15038. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA21423
  15039.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 30 Sep 1994 13:00:36 -0400
  15040. Received: by apakabar.cc.columbia.edu id AA08409
  15041.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 30 Sep 1994 13:00:35 -0400
  15042. Path: news.columbia.edu!usenet
  15043. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  15044. Newsgroups: comp.protocols.kermit.misc
  15045. Subject: Re: FTP Mirror Sites and CDROMs
  15046. Date: 30 Sep 1994 17:00:29 GMT
  15047. Organization: Columbia University
  15048. Lines: 15
  15049. Message-Id: <36hg7d$86f@apakabar.cc.columbia.edu>
  15050. References: <36ehns$6c4@zippo.uwasa.fi>
  15051. Nntp-Posting-Host: fdc.cc.columbia.edu
  15052. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  15053.  
  15054. In article <36ehns$6c4@zippo.uwasa.fi> ts@uwasa.fi (Timo Salmi) writes:
  15055. > ...far too complicated, at least for me.  I want Garbo archives to
  15056. > be one entity, not several alternative arrangements, even if in
  15057. > theory that could be possible.  To be honest, I do not have
  15058. > sufficient motivation for trying to maintain such a complicated
  15059. > pattern.
  15060. Thank you, Timo.  This also goes to the complaint about the Kermit
  15061. archives not being in exactly the format that you, personally, like
  15062. best.  Timo is only one guy, so am I.  Maintaining multiple copies of
  15063. archives to suit various sets of requirements and tastes is not high
  15064. on his priority list, nor ours at Columbia, even though we actually
  15065. do this to cover the most popular cases.
  15066.  
  15067. - Frank
  15068.  
  15069. From news@columbia.edu Fri Sep 30 17:57:29 1994
  15070. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA24777
  15071.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 30 Sep 1994 13:58:13 -0400
  15072. Received: by apakabar.cc.columbia.edu id AA13508
  15073.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 30 Sep 1994 13:58:12 -0400
  15074. Path: news.columbia.edu!panix!MathWorks.Com!news.duke.edu!convex!cs.utexas.edu!math.ohio-state.edu!usenet
  15075. From: davis@pacific.mps.ohio-state.edu
  15076. Newsgroups: comp.protocols.kermit.misc
  15077. Subject: Re: MS-Kermit question
  15078. Date: 30 Sep 1994 17:57:29 GMT
  15079. Organization: None
  15080. Lines: 20
  15081. Message-Id: <36hji9$ses@mathserv.mps.ohio-state.edu>
  15082. References: <36evui$9t@mathserv.mps.ohio-state.edu> <36f562$63q@apakabar.cc.columbia.edu> <36fu6e$jd@blackice.winternet.com> <1994Sep30.075153.28308@cc.usu.edu>
  15083. Reply-To: davis@amy.tch.harvard.edu
  15084. Nntp-Posting-Host: pacific.mps.ohio-state.edu
  15085. X-Newsreader: S-Lang: slrn (0.1.4.0)
  15086. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  15087.  
  15088. In article <1994Sep30.075153.28308@cc.usu.edu>, jrd@cc.usu.edu (Joe Doupnik)
  15089. writes: 
  15090.  :     Yup. Control-Enter is ^J from the Bios and we can't distinguish it
  15091.  : from typing Control-J. It is one of the many "features" of the IBM PC Bios.
  15092.  :     Joe D.
  15093.  
  15094. Sure you can:
  15095.  
  15096.    i = (unsigned int) bioskey (0);   
  15097.    if (i == 0x1C0A)  ----> Ctrl-Enter
  15098.  
  15099. --
  15100.      _____________
  15101. #___/John E. Davis\_________________________________________________________
  15102. #
  15103. # internet: davis@amy.tch.harvard.edu
  15104. #   bitnet: davis@ohstpy
  15105. #   office: 617-735-6746
  15106. #
  15107.  
  15108.  
  15109. From news@columbia.edu Fri Sep 30 03:59:42 1994
  15110. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA01912
  15111.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 30 Sep 1994 15:26:22 -0400
  15112. Received: by apakabar.cc.columbia.edu id AA21469
  15113.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 30 Sep 1994 15:26:18 -0400
  15114. Path: news.columbia.edu!panix!MathWorks.Com!news.duke.edu!news-feed-1.peachnet.edu!emory!swrinde!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  15115. From: jrd@cc.usu.edu (Joe Doupnik)
  15116. Newsgroups: comp.protocols.kermit.misc
  15117. Subject: Re: "Just Send It" mode - possible?
  15118. Message-Id: <1994Sep30.095942.28338@cc.usu.edu>
  15119. Date: 30 Sep 94 09:59:42 MDT
  15120. References: <36d22k$9mt@balsam.unca.edu> <jhurwitCwwsAz.Erz@netcom.com>
  15121. Organization: Utah State University
  15122. Lines: 25
  15123. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  15124.  
  15125. In article <jhurwitCwwsAz.Erz@netcom.com>, jhurwit@netcom.com (Jeffrey Hurwit) writes:
  15126. > In article <36d22k$9mt@balsam.unca.edu>, 
  15127. > Mike Honeycutt (Honeycutt@unca.edu) wrote:
  15128. >>Would it be possible to tell the sending Kermit to "Just Send It"
  15129. >>without the error checking?  Most of our asyn lines on campus
  15130. >>are very clean (not including modems) and I would put up with
  15131. >>the occasional corrupt file to make the download go faster.
  15132. >     From the help file for MS-Kermit 3.13:
  15133. > * COMMANDS FOR FILE TRANSFER WITHOUT ERROR CHECKING
  15134. > Kermit can also transfer files or other information with remote computers,
  15135. > services, or devices that do not support the Kermit file transfer protocol.
  15136. > These methods provide no error detection or correction. Use with caution.
  15137. > TRANSMIT <filename>
  15138. >   Send a text file to the host as if you were typing it at the keyboard
  15139. >   a line at a time.  Waits for linefeed (\10) to echo before sending next
  15140. >   line.     Uses all current communication settings (parity, flow, etc).
  15141. ----------
  15142.     Nah. That's a crude stop and wait item. See the "waits for linefeed"
  15143. guy. No error checking, no flow control, no nothing; just send & pray.
  15144.     Joe D.
  15145.  
  15146. From news@columbia.edu Fri Sep 30 19:39:24 1994
  15147. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA02831
  15148.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 30 Sep 1994 15:39:31 -0400
  15149. Received: by apakabar.cc.columbia.edu id AA22668
  15150.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 30 Sep 1994 15:39:29 -0400
  15151. Path: news.columbia.edu!usenet
  15152. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  15153. Newsgroups: comp.protocols.kermit.misc
  15154. Subject: Re: "Just Send It" mode - possible?
  15155. Date: 30 Sep 1994 19:39:24 GMT
  15156. Organization: Columbia University
  15157. Lines: 25
  15158. Message-Id: <36hphd$m45@apakabar.cc.columbia.edu>
  15159. References: <1994Sep30.095942.28338@cc.usu.edu>
  15160. Nntp-Posting-Host: fdc.cc.columbia.edu
  15161. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  15162.  
  15163. In article <1994Sep30.095942.28338@cc.usu.edu> jrd@cc.usu.edu (Joe Doupnik)  
  15164. writes:
  15165. > > ...
  15166. > > * COMMANDS FOR FILE TRANSFER WITHOUT ERROR CHECKING
  15167. > > ...
  15168. > > TRANSMIT <filename>
  15169. > >   Send a text file to the host as if you were typing it at the keyboard
  15170. > >   a line at a time.  ...
  15171. >
  15172. > Nah. That's a crude stop and wait item. See the "waits for linefeed"
  15173. > guy. No error checking, no flow control, no nothing; just send & pray.
  15174. >
  15175. For your amusement: This is what Windows Terminal calls "text mode" file
  15176. transfer.  Guess what "binary mode" file transfer is.  Hint: it's not
  15177. what you think.
  15178.  
  15179. - Frank
  15180. x
  15181. x
  15182. x
  15183. x
  15184. x
  15185. x
  15186. x
  15187. x
  15188.  
  15189. From news@columbia.edu Fri Sep 30 18:04:18 1994
  15190. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA03637
  15191.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 30 Sep 1994 15:55:20 -0400
  15192. Received: by apakabar.cc.columbia.edu id AA23866
  15193.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 30 Sep 1994 15:55:18 -0400
  15194. Path: news.columbia.edu!panix!MathWorks.Com!udel!news.sprintlink.net!howland.reston.ans.net!torn!news.ccs.queensu.ca!djm.MAST.QueensU.CA!dmurdoch
  15195. From: dmurdoch@mast.queensu.ca (Duncan Murdoch)
  15196. Newsgroups: comp.protocols.kermit.misc
  15197. Subject: Re: Are Columbia U's files still avial for FTP?
  15198. Date: Fri, 30 Sep 1994 18:04:18 GMT
  15199. Organization: Queen's University
  15200. Lines: 26
  15201. Message-Id: <dmurdoch.1325.2E8C5321@mast.queensu.ca>
  15202. References: <1994Sep29.092803.1960@gems.vcu.edu> <36em3v$2cm@apakabar.cc.columbia.edu>
  15203. Nntp-Posting-Host: djm.mast.queensu.ca
  15204. X-Newsreader: Trumpet for Windows [Version 1.0 Rev A]
  15205. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  15206.  
  15207. In article <36em3v$2cm@apakabar.cc.columbia.edu> fdc@fdc.cc.columbia.edu (Frank da Cruz) writes:
  15208.  
  15209. >Let me explain again, for the benefit of those who did not read my earlier
  15210. >messages, some of which might not have been delivered.  The two sites who
  15211. >posted announcements to this effect removed the Kermit files from their
  15212. >archives because we could not reach an agreement about their SELLING our
  15213. >software on CDROM.  There was no need at all for them to remove Kermit
  15214. >from their ftp sites.  Complain to them about it, we had nothing to do with
  15215. >it.  Our policies have not changed.
  15216.  
  15217. This seems to be the problem - people who are unwilling to allow any 
  15218. flexibility in their policies.  Simtel and Garbo don't want special case 
  15219. software that makes production of the CDROMs more difficult.  Columbia doesn't 
  15220. recognize that having their software in the largest and best known MSDOS 
  15221. collection (Simtel) and in another very well-respected and more specialized  
  15222. collection (Garbo) *is* to their benefit.  Exposure and distribution to people 
  15223. without ftp access is worth something, and exposure to people who have never 
  15224. heard of Kermit before and who would have no idea to look for it is worth 
  15225. something.
  15226.  
  15227. It's a pretty sad state of affairs.
  15228.  
  15229.  
  15230.  
  15231. Duncan Murdoch
  15232. dmurdoch@mast.queensu.ca
  15233.  
  15234. From news@columbia.edu Fri Sep 30 19:34:42 1994
  15235. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA06570
  15236.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 30 Sep 1994 16:30:42 -0400
  15237. Received: by apakabar.cc.columbia.edu id AA27034
  15238.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 30 Sep 1994 16:30:39 -0400
  15239. Path: news.columbia.edu!panix!MathWorks.Com!udel!news.sprintlink.net!howland.reston.ans.net!vixen.cso.uiuc.edu!sdd.hp.com!caen!news-server!hagar
  15240. From: hagar@umich.edu
  15241. Newsgroups: comp.protocols.kermit.misc
  15242. Subject: Re: Columbia University's Kermit copyright
  15243. Date: 30 Sep 1994 19:34:42 GMT
  15244. Organization: University of Michigan
  15245. Lines: 27
  15246. Message-Id: <HAGAR.94Sep30153443@ulam.engin.umich.edu>
  15247. References: <9409300557.AA12036@simtel.coast.net> <36h490$9hc@apakabar.cc.columbia.edu>
  15248. Nntp-Posting-Host: ulam.engin.umich.edu
  15249. In-Reply-To: fdc@fdc.cc.columbia.edu's message of 30 Sep 1994 13:36:32 GMT
  15250. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  15251.  
  15252. >>>>> "Frank" == Frank da Cruz <fdc@fdc.cc.columbia.edu> writes:
  15253.  
  15254. Frank> On any newsgroup, there are a few vocal people and a large mass of onlookers.
  15255. Frank> There is no way of knowing how the silent onlookers feel, and the tone of
  15256. Frank> discussions like these -- i.e. controversies -- is set by the vocal ones.
  15257. Frank> In this case, the people who are raising objections to our policies are
  15258. Frank> people -- honest, decent people -- who happen to have FINANCIAL interests
  15259. Frank> that are in conflict with ours.  But in the final analysis, WE DID ALL THE
  15260. Frank> WORK and so we get to set the terms.  Those terms are the most generous
  15261. Frank> terms imaginable to the end user, so there is NO CAUSE FOR ANYBODY TO
  15262. Frank> COMPLAIN.
  15263.  
  15264. I fully support Columbia University's rights on this.
  15265.  
  15266. I enjoy your books/documentation, and wish this lawyers thread would
  15267. go offline (and stay offline). 
  15268.  
  15269. -------------------------------------------------------------------------
  15270. James Paul Holloway           |e-mail: hagar@umich.edu                   
  15271.                               |   URL: http://www.engin.umich.edu/~hagar/
  15272. -------------------------------------------------------------------------
  15273. --
  15274.  
  15275. -------------------------------------------------------------------------
  15276. James Paul Holloway           |e-mail: hagar@umich.edu                   
  15277.                               |   URL: http://www.engin.umich.edu/~hagar/
  15278. -------------------------------------------------------------------------
  15279.  
  15280. From news@columbia.edu Fri Sep 30 20:37:48 1994
  15281. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA07019
  15282.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 30 Sep 1994 16:37:57 -0400
  15283. Received: by apakabar.cc.columbia.edu id AA27581
  15284.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 30 Sep 1994 16:37:55 -0400
  15285. Path: news.columbia.edu!usenet
  15286. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  15287. Newsgroups: comp.protocols.kermit.misc
  15288. Subject: Re: Are Columbia U's files still avial for FTP?
  15289. Date: 30 Sep 1994 20:37:48 GMT
  15290. Organization: Columbia University
  15291. Lines: 52
  15292. Message-Id: <36hsus$qtn@apakabar.cc.columbia.edu>
  15293. References: <dmurdoch.1325.2E8C5321@mast.queensu.ca>
  15294. Nntp-Posting-Host: fdc.cc.columbia.edu
  15295. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  15296.  
  15297. In article <dmurdoch.1325.2E8C5321@mast.queensu.ca> dmurdoch@mast.queensu.ca  
  15298. (Duncan Murdoch) writes:
  15299. > This seems to be the problem - people who are unwilling to allow any
  15300. > flexibility in their policies.  Simtel and Garbo don't want special case
  15301. > software that makes production of the CDROMs more difficult.  Columbia
  15302. > doesn't recognize that having their software in the largest and best
  15303. > known MSDOS collection (Simtel) and in another very well-respected and
  15304. > more specialized collection (Garbo) *is* to their benefit.  Exposure and
  15305. > distribution to people without ftp access is worth something, and
  15306. > exposure to people who have never heard of Kermit before and who would
  15307. > have no idea to look for it is worth something.
  15308. > It's a pretty sad state of affairs.
  15309. >
  15310. Indeed.  At the risk of gaining a reputation as the kind of person who
  15311. always must have the last word -- and I really do hope this IS the last
  15312. word -- let me try to explain how you are missing the point.
  15313.  
  15314. Of course there is value in Kermit software, and if everybody could get
  15315. for free, or dirt cheap, that would be a good thing.  We all agree about
  15316. that.  In fact, you could say the same thing about food, clothing,
  15317. education, you name it.  It would be great if you could get EVERYTHING for
  15318. free.  The point you are missing is that all these things are brought to
  15319. you by people who work.  But unlike other commodities, Kermit software
  15320. really is free to those of you on the Internet who protest so loudly about
  15321. our policies.  The people who are paying for your access to our work are
  15322. not complaining.
  15323.  
  15324. I really wish I did not have to keep repeating myself -- it is really
  15325. boring.  There is a paradox here: the more our software is spread to the
  15326. general public on CDROM, and the more popular it becomes, the more work
  15327. we have (tech support), the less time we have to devote to development,
  15328. and the less money we have to pay for tech support AND development.
  15329.  
  15330. Thus, the policy you are advocating is a very short-sighted one, the result
  15331. of which would be that everybody would get Kermit software for "a fraction
  15332. of a penny", and the Kermit effort would get nothing: our marketplace would
  15333. disappear -- because nobody in their right mind would pay $35 for the same
  15334. thing (more or less -- there is also the manual to consider) they can get
  15335. for a third of a penny.  Meanwhile, since they do not have the manual, they
  15336. pester us to death with questions that are already answered there.  Work
  15337. grows to infinity, income shrinks to zero, and poof, you've killed it.
  15338. Well, hooray, hooray, now we all have just what we wanted and it was free,
  15339. so we won!  Yay!  But then technology changes, operating systems change,
  15340. communication and networking methods change, and you are now left to the
  15341. tender mercies of all those commercial and shareware software producers who
  15342. care so much about quality and support.
  15343.  
  15344. I'm sorry, it's a whole package -- if you don't like it, don't use it, and
  15345. let us get on with devloping and supporting it for those who do,
  15346.  
  15347. - Frank
  15348.  
  15349. From news@columbia.edu Fri Sep 30 21:58:24 1994
  15350. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA13188
  15351.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 30 Sep 1994 17:58:35 -0400
  15352. Received: by apakabar.cc.columbia.edu id AA04360
  15353.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 30 Sep 1994 17:58:33 -0400
  15354. Path: news.columbia.edu!panix!not-for-mail
  15355. From: spencer@panix.com (David Spencer)
  15356. Newsgroups: comp.protocols.kermit.misc
  15357. Subject: Re: Minimal control prefixing
  15358. Date: 30 Sep 1994 17:58:24 -0400
  15359. Organization: Project Development and Finance
  15360. Lines: 19
  15361. Message-Id: <36i1m0$uh@panix3.panix.com>
  15362. References: <36hc7e$js9@apakabar.cc.columbia.edu> <36hdfb$lka@apakabar.cc.columbia.edu>
  15363. Nntp-Posting-Host: panix3.panix.com
  15364. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  15365.  
  15366. fdc@fdc.cc.columbia.edu (Frank da Cruz) writes:
  15367. >> The documentation is the ckcker.upd file that comes with C-Kermit or the
  15368. >> KERMIT.UPD file that comes with MS-DOS Kermit.
  15369. >> It's free, it does not cost you a cent, please read it.
  15370.  
  15371. I did RTFM and RTFckuker.doc. Sorry I didn't RTFckcker.upd. It didn't
  15372. leap to mind as the file that would have what the man and .doc didn't
  15373. have. It was, however, most helpful.
  15374.  
  15375. The .upd doesn't answer the specific question. There are probably a
  15376. few thousand knowledgeable usenetters with substantially the same
  15377. setup. So my question still seems reasonable.
  15378.  
  15379. >Sorry if I sound a little grumpy today, it's been a tough week.
  15380.  
  15381. I've noticed. No offense taken. kermit is one of my favorite pieces of
  15382. software, so you get plenary dispensation anyway.
  15383. -- 
  15384. dhs spencer@panix.com
  15385.  
  15386. From news@columbia.edu Fri Sep 30 21:15:12 1994
  15387. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA14362
  15388.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 30 Sep 1994 18:16:15 -0400
  15389. Received: by apakabar.cc.columbia.edu id AA05680
  15390.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 30 Sep 1994 18:16:13 -0400
  15391. Path: news.columbia.edu!panix!MathWorks.Com!yeshua.marcam.com!charnel.ecst.csuchico.edu!olivea!uunet!news.uiowa.edu!icaen!mjo
  15392. From: mjo@ecn.uiowa.edu (Mike O'Connor)
  15393. Newsgroups: comp.protocols.kermit.misc
  15394. Subject: Re: FTP Mirrors and CDROMs - again
  15395. Date: 30 Sep 1994 21:15:12 GMT
  15396. Organization: HP InterWorks Member
  15397. Lines: 52
  15398. Message-Id: <36hv50$kgn@news.icaen.uiowa.edu>
  15399. References: <36gull$jbd@news.icaen.uiowa.edu> <36h54r$afr@apakabar.cc.columbia.edu>
  15400. Nntp-Posting-Host: iworks.ecn.uiowa.edu
  15401. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  15402.  
  15403. In article <36h54r$afr@apakabar.cc.columbia.edu> fdc@fdc.cc.columbia.edu (Frank da Cruz) writes in response to me:
  15404.  
  15405. >> Should those people who submit you Kermit bug fixes expect a fee?  What
  15406. >> is the fee?  What do you base it on?  Your response seems simplistic.
  15407. >> 
  15408. >My goodness, captitalism run amok.  No good deed goes unpunished, eh?
  15409.  
  15410. Of course, if you take me out of context, you can say whatever silly
  15411. thing you want.  Let's see what you said first:
  15412.  
  15413. jdc> How do we tell the difference?  Even when a company adds value to our
  15414. jdc> product, why is it that their work should be compensated and not ours?
  15415.  
  15416. So I took it one step further with my "how much do you pay for Kermit
  15417. bug fixes" remark.  Then you proceed to take me out of context?  Bah!
  15418.  
  15419. >Yes, of course Kermit software is the product not only of several programmers
  15420. >and designers who work at it full time -- some paid, others not -- but also
  15421. >of hundreds of citizens of the Internet, and even quite a few people not
  15422. >connected to it in any way, who send in stuff by post -- bug fixes, entire
  15423. >new Kermit programs.
  15424.  
  15425. And I imagine they contributed with the understanding that this was 
  15426. free software that was freely redistributable.  
  15427.  
  15428. >Everybody who sits on the sidelines and does actually do this work day and
  15429. >night, week after week, year after year, is welcome to make suggestions and
  15430. >comments, but what, really, is the point?  Do you really want to turn the
  15431. >Kermit effort into a business?  With licenses for everybody?  Lawsuits?
  15432. >Come on, folks, look what you are getting for free.  Why do you care more
  15433. >about CDROM makers than about the people who produce the software?
  15434.  
  15435. I didn't say anything about licensing Kermit.  I said something about
  15436. supporting Kermit in a commercial fashion, so you can subsidize your 
  15437. activity of making Kermit into a great public product.  Selling doc is
  15438. probably not paying the bills.  I am interested in seeing Kermit 
  15439. succeed, and I don't think that what you're doing is encouraging its
  15440. success.  The reason I care about CD-ROM makers is because I can point
  15441. people who want to take a look at it and other technologies at a single
  15442. source, well-sorted and well-tested.  Also, with the emergence of FTP
  15443. archives that ARE funded -- wuarchive, sunsite, etc. -- you already 
  15444. have a situation going on where your software resides on FTP sites that
  15445. make money in a sense for running an archive, and may well be considered 
  15446. "commercial concerns" for the purposes of the Kermit/your copyright.
  15447.  
  15448. What you're doing doesn't appear to make sense for your users, and 
  15449. doesn't appear to make sense for yourself, so I have to wonder why
  15450. you're doing it, and what this means for the future of Kermit.  Are
  15451. you hoping that some sympathetic ear will give you money?  What do you
  15452. gain by artificially limiting the redistribution of FREE software?
  15453.  
  15454. -Mike
  15455.  
  15456. From news@columbia.edu Fri Sep 30 09:08:24 1994
  15457. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA14425
  15458.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 30 Sep 1994 18:17:52 -0400
  15459. Received: by apakabar.cc.columbia.edu id AA05750
  15460.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 30 Sep 1994 18:17:51 -0400
  15461. Path: news.columbia.edu!panix!MathWorks.Com!udel!news.sprintlink.net!howland.reston.ans.net!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  15462. From: jrd@cc.usu.edu (Joe Doupnik)
  15463. Newsgroups: comp.protocols.kermit.misc
  15464. Subject: Re: Columbia University MS-Kermit files removed from SimTel
  15465. Message-Id: <1994Sep30.150824.28401@cc.usu.edu>
  15466. Date: 30 Sep 94 15:08:24 MDT
  15467. References: <1994Sep27.125004.27971@cc.usu.edu> <36arh5$qpp@Mercury.mcs.com> <1994Sep28.093351.28046@cc.usu.edu> <36h0cd$jbn@news.icaen.uiowa.edu>
  15468. Organization: Utah State University
  15469. Lines: 37
  15470. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  15471.  
  15472. In article <36h0cd$jbn@news.icaen.uiowa.edu>, mjo@ecn.uiowa.edu (Mike O'Connor) writes:
  15473. > In article <1994Sep28.093351.28046@cc.usu.edu> jrd@cc.usu.edu (Joe Doupnik) writes:
  15474. > ...
  15475. >>That's commercial activity, trading for profit in works copyrighted by others
  15476. >>and covered by copyright restrictions. 
  15477. >>    BBS operators making a profit offering the programs would be much
  15478. >>the same as the CDROM case, in my view.
  15479. >>    Internet service providers are selling time on their wires,
  15480. >>irrespective of the files or programs used at the other end of the wire.
  15481. >>    The copyright restriction says you can't make money selling our 
  15482. >>product without our permission.
  15483. > Joe, what about those .edu sites that may run an FTP archive in conjunction 
  15484. > with a software vendor or as part of a grant, where yes, people are PAID to
  15485. > run a good FTP archive and have an incentive to gather as much stuff as they
  15486. > can for it?  And yes, a number of popular archives obtain money that way.
  15487. ---------
  15488.     Well, yes, what about them. Good question.
  15489.     If an FTP site is selling software then that's still selling software
  15490. as above. The organization (to follow your example) providing the money is
  15491. doing the buying of something, but buying what. Near this point the path 
  15492. becomes obscure, as reasonable people will agree (on the obscure part if 
  15493. nothing else, sigh). 
  15494.     Normally .edu sites run on zero funding, or less, as a public service. 
  15495. Mine runs on less. Edu sites have all kinds of legal rules too, not to mention
  15496. the unwritten ones about where one spends time and which resources are used and
  15497. paid by whom, and all that jazz. Student hobby sites are left alone as an 
  15498. educational experience. My sites are doing a public service on behalf of my 
  15499. Univ.
  15500.     At the bottom of all this discussion is people are trading with 
  15501. someone else's property on a for-gain basis. Some products have specific
  15502. restrictions about the for-gain part. This leads to two questions: is
  15503. each product being sold versus money going for something else entirely,
  15504. and, if clearly for-gain ought the business be using that material as 
  15505. capital. Lawyers may wish to step in here and carry the discussion to
  15506. alt.nebulous.arguments.
  15507.     Joe D.
  15508.  
  15509. From news@columbia.edu Fri Sep 30 22:14:01 1994
  15510. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA14725
  15511.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 30 Sep 1994 18:24:09 -0400
  15512. Received: by apakabar.cc.columbia.edu id AA06232
  15513.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 30 Sep 1994 18:24:06 -0400
  15514. Path: news.columbia.edu!panix!MathWorks.Com!news.duke.edu!news-feed-1.peachnet.edu!gatech!swiss.ans.net!howland.reston.ans.net!swrinde!elroy.jpl.nasa.gov!lll-winken.llnl.gov!decwrl!pa.dec.com!bora-bora.pa.dec.com!flaherty
  15515. From: flaherty@pa.dec.com (Paul Flaherty)
  15516. Newsgroups: comp.protocols.kermit.misc
  15517. Subject: Re: Are Columbia U's files still avial for FTP?
  15518. Date: 30 Sep 94 22:14:01 GMT
  15519. Organization: Digital Equipment Corporation, Palo Alto, CA, USA
  15520. Lines: 11
  15521. Message-Id: <flaherty.780963241@bora-bora.pa.dec.com>
  15522. References: <1994Sep30.114330.28907@rhrk.uni-kl.de> <36h302$7qj@apakabar.cc.columbia.edu>
  15523. Nntp-Posting-Host: bora-bora.pa.dec.com
  15524. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  15525.  
  15526. A small suggestion.
  15527.  
  15528. Rather than having MSKermit binaries on the SimTel / Garbo ftp/CDROM sites,
  15529. why not instead include a text file which points to the official kermit ftp
  15530. site?  True, this isn't as ideal as a binary, but it's much better than getting
  15531. stale bits...
  15532.  
  15533.  
  15534. -- 
  15535. -=Paul Flaherty, N9FZX |     "Just name a hero, and I'll prove he's a bum."
  15536. ->paulf@pa.dec.com     |          -- Col. Gregory "Pappy" Boyington
  15537.  
  15538. From news@columbia.edu Fri Sep 30 23:09:59 1994
  15539. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA17925
  15540.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 30 Sep 1994 19:10:05 -0400
  15541. Received: by apakabar.cc.columbia.edu id AA09232
  15542.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 30 Sep 1994 19:10:02 -0400
  15543. Path: news.columbia.edu!usenet
  15544. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  15545. Newsgroups: comp.protocols.kermit.misc
  15546. Subject: Re: FTP Mirrors and CDROMs - again
  15547. Date: 30 Sep 1994 23:09:59 GMT
  15548. Organization: Columbia University
  15549. Lines: 21
  15550. Message-Id: <36i5s7$90e@apakabar.cc.columbia.edu>
  15551. References: <36hv50$kgn@news.icaen.uiowa.edu>
  15552. Nntp-Posting-Host: fdc.cc.columbia.edu
  15553. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  15554.  
  15555. In article <36hv50$kgn@news.icaen.uiowa.edu> mjo@ecn.uiowa.edu (Mike  
  15556. O'Connor) writes:
  15557. > What you're doing doesn't appear to make sense for your users, and 
  15558. > doesn't appear to make sense for yourself, so I have to wonder why
  15559. > you're doing it, and what this means for the future of Kermit.  Are
  15560. > you hoping that some sympathetic ear will give you money?  What do you
  15561. > gain by artificially limiting the redistribution of FREE software?
  15562. Sorry if I jumped down your throat or quoted you out of context -- it's
  15563. not just you, it's the whole situation.  To make amends, I will not prolong
  15564. this silly discussion any further unless something truly outrageous happens.
  15565.  
  15566. Except to say that we are indeed flexible and open to new ideas, in case
  15567. there are some that we have not already had ourselves and rejected because
  15568. they don't really work, or because we don't have the resources to implement
  15569. them (chicken-and-egg situation), or they would provoke even more debate
  15570. and acrimony than our current stance, or the circumstances of our university
  15571. status do not allow.  If somebody has a magic pill to make everybody happy, 
  15572. please share it.  Otherwise, let's all get on with our lives.
  15573.  
  15574. - Frank
  15575.  
  15576. From news@columbia.edu Fri Sep 30 10:09:46 1994
  15577. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA20573
  15578.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 30 Sep 1994 20:05:32 -0400
  15579. Received: by apakabar.cc.columbia.edu id AA12582
  15580.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 30 Sep 1994 20:05:31 -0400
  15581. Newsgroups: comp.protocols.kermit.misc
  15582. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!wupost!netcomsv!ccougar!len.wilson
  15583. From: len.wilson@cougar.com
  15584. Subject: Re: Columbia University MS-Kermit files removed from SimTel
  15585. Message-Id: <9409300409.005UJS00@cougar.com>
  15586. References: <36e2og$4ad@zippo.uwasa.fi>
  15587. Organization: The Colorado Cougar BBS
  15588. X-Mailer: TBBS/PIMP v3.13
  15589. Date: Fri, 30 Sep 94 04:09:46 -0600
  15590. Lines: 20
  15591. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  15592.  
  15593.  > In article <1994Sep28.093351.28046@cc.usu.edu> jrd@cc.usu.edu (Joe 
  15594.  > Doupnik) writes:
  15595.  >        The CDROMs are sold for profit, based on the contained programs.
  15596.  > The attraction is not a nifty logo on the CDROM or fancy box or terrific
  15597.  > browser program, though such items are worthy of charging if desired, but
  15598.  > the target objects themselves, without which there won't be much  
  15599.  > attraction. That's commercial activity, trading for profit in works 
  15600.  > copyrighted by others and covered by copyright restrictions. 
  15601.  
  15602.  This is the most ridiculous objection I've ever heard. I'm a shareware
  15603.  author and I'm tickled to death when I hear from someone who got my
  15604.  stuff from a CDROM. The more widely distributed it is, the happier I
  15605.  am.  Hell, that's why I upload my work in the first place!
  15606.  
  15607.  I just ordered a set of Simtel CDROMs for my BBS and, if I'm not mistaken,
  15608.  one of those 10,000+ programs is mine.  Neat huh?
  15609.  
  15610.  
  15611.  Len Wilson
  15612.  
  15613.  
  15614. From news@columbia.edu Fri Sep 30 09:03:45 1994
  15615. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA20581
  15616.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 30 Sep 1994 20:05:56 -0400
  15617. Received: by apakabar.cc.columbia.edu id AA12603
  15618.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 30 Sep 1994 20:05:55 -0400
  15619. Newsgroups: comp.protocols.kermit.misc
  15620. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!swrinde!elroy.jpl.nasa.gov!decwrl!amd!amdahl!netcomsv!ix.netcom.com!netcom.com!jhurwit
  15621. From: jhurwit@netcom.com (Jeffrey Hurwit)
  15622. Subject: Re: Columbia University MS-Kermit files suspended at Garbo
  15623. Message-Id: <jhurwitCwxqIC.Mr0@netcom.com>
  15624. Organization: Organization?  What organization?
  15625. X-Newsreader: TIN [version 1.2 PL1]
  15626. References: <ts9409272153.29032@chyde.uwasa.fi> <1994Sep29.110039.73644@kuhub.cc.ukans.edu>
  15627. Date: Fri, 30 Sep 1994 09:03:45 GMT
  15628. Lines: 16
  15629. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  15630.  
  15631. In article <1994Sep29.110039.73644@kuhub.cc.ukans.edu>, 
  15632. Jeff Bangert (jeff@falcon.cc.ukans.edu) wrote:
  15633.  
  15634. >Timo Salmi (ts@chyde.uwasa.fi) wrote:
  15635. >: Tue 27-Sep-94: MsKermit utilities have been suspended at Garbo.  The
  15636. >: files have not yet been physically deleted, but their read
  15637. >: permissions have been removed.  For all details of the situation
  15638. >: please see the comp.protocols.kermit.misc newsgroup.  Please do not
  15639. >: direct any queries about this to Garbo moderators.  Kermit is
  15640. >: distributed from the Columbia University.  The support person there
  15641. >: is Frank da Cruz fdc@watsun.cc.columbia.edu.
  15642.  
  15643. >I just scanned all the messages on this group -- could not find an
  15644. >announcement.  Could someone point me to it?
  15645.  
  15646.     comp.archives.msdos.announce and comp.archives.msdos.d
  15647.  
  15648. From news@columbia.edu Sat Oct  1 01:16:14 1994
  15649. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA23445
  15650.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 30 Sep 1994 21:21:41 -0400
  15651. Received: by apakabar.cc.columbia.edu id AA17262
  15652.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 30 Sep 1994 21:21:39 -0400
  15653. Path: news.columbia.edu!panix!MathWorks.Com!yeshua.marcam.com!zip.eecs.umich.edu!newsxfer.itd.umich.edu!gumby!wupost!simtel.coast.net!w8sdz
  15654. From: w8sdz@SimTel.Coast.NET (Keith Petersen)
  15655. Newsgroups: comp.protocols.kermit.misc
  15656. Subject: Re: FTP Mirrors and CDROMs - again
  15657. Message-Id: <9410010116.AA24289@SimTel.Coast.NET>
  15658. Date: Sat, 1 Oct 1994 01:16:14 GMT
  15659. Organization: SimTel, the Coast to Coast Software Repository (tm)
  15660. References: <36hv50$kgn@news.icaen.uiowa.edu> <36i5s7$90e@apakabar.cc.columbia.edu>
  15661. Lines: 27
  15662. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  15663.  
  15664. fdc@fdc.cc.columbia.edu (Frank da Cruz) writes:
  15665. >[...]
  15666. >Except to say that we are indeed flexible and open to new ideas, in case
  15667. >there are some that we have not already had ourselves and rejected because
  15668. >they don't really work, or because we don't have the resources to implement
  15669. >them (chicken-and-egg situation), or they would provoke even more debate
  15670. >and acrimony than our current stance, or the circumstances of our university
  15671. >status do not allow.  If somebody has a magic pill to make everybody happy,
  15672. >please share it.  Otherwise, let's all get on with our lives.
  15673.  
  15674. I hope that someone does have a magic pill because when you say that
  15675. that Kermit cannot be distributed on *any* CD-ROMs it means that the
  15676. folks who distribute FreeBSD, BSDI, SunOS, Linux, and other operating
  15677. systems, as well as DECUS, may no longer include Kermit, even through
  15678. it is free of charge, on their CD-ROMs.
  15679.  
  15680. It appears to me that you have single-handedly killed the entire free
  15681. distribution system for Kermit, except for Internet anonymous FTP.  That
  15682. will probably result in the death of the Kermit protocol on systems
  15683. which do not have access to the Internet. 
  15684.  
  15685. Keith
  15686. --
  15687. Keith Petersen
  15688. General Manager of SimTel, the Coast to Coast Software Repository (tm)
  15689. Internet: w8sdz@SimTel.Coast.NET    or      w8sdz@Vela.ACS.Oakland.Edu
  15690. Uucp: uunet!umich!vela!w8sdz                     BITNET: w8sdz@OAKLAND
  15691.  
  15692. From news@columbia.edu Fri Sep 30 11:11:39 1994
  15693. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA23906
  15694.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 30 Sep 1994 21:36:06 -0400
  15695. Received: by apakabar.cc.columbia.edu id AA18179
  15696.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 30 Sep 1994 21:36:05 -0400
  15697. Newsgroups: comp.protocols.kermit.misc
  15698. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!swrinde!ihnp4.ucsd.edu!dog.ee.lbl.gov!newshub.nosc.mil!nosc!pegasus!rns!jrr
  15699. From: jrr@rns.com
  15700. Subject: Re: FTP for Current MS-DOS Kermit?
  15701. Message-Id: <CwxwFF.EnH@rns.com>
  15702. References: <368187$ms3@zippo.uwasa.fi> <369777$qfs@apakabar.cc.columbia.edu>
  15703. Date: Fri, 30 Sep 1994 11:11:39 GMT
  15704. Lines: 7
  15705. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  15706.  
  15707. >
  15708. >Bottom line: It's our software, it bears our copyright, we did all the
  15709.                                                          ^^^^^^^^^^^^^
  15710. >work, and we get to set the terms for its distribution.  [...]
  15711.  ^^^^
  15712.  
  15713. Is this true?
  15714.  
  15715. From news@columbia.edu Fri Sep 30 12:19:49 1994
  15716. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA23920
  15717.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 30 Sep 1994 21:36:46 -0400
  15718. Received: by apakabar.cc.columbia.edu id AA18220
  15719.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 30 Sep 1994 21:36:45 -0400
  15720. Newsgroups: comp.protocols.kermit.misc
  15721. Path: news.columbia.edu!panix!MathWorks.Com!yeshua.marcam.com!zip.eecs.umich.edu!newsxfer.itd.umich.edu!gatech!swrinde!ihnp4.ucsd.edu!dog.ee.lbl.gov!newshub.nosc.mil!nosc!pegasus!richard
  15722. From: richard@pegasus.com (Richard Foulk)
  15723. Subject: send and unlink (C-kermit/Unix)?
  15724. Organization: Pegasus Information Systems
  15725. Message-Id: <CwxzL1.GA6@pegasus.com>
  15726. Date: Fri, 30 Sep 1994 12:19:49 GMT
  15727. Lines: 11
  15728. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  15729.  
  15730. Zmodem (sz) has a very nice feature, invoked with `-u' that removes
  15731. each file just after it is successfully transmitted.
  15732.  
  15733. Is there a clean and reliable way to do something similar with c-kermit?
  15734.  
  15735.  
  15736. Thanks
  15737.  
  15738.  
  15739. -- 
  15740. Richard Foulk        richard@pegasus.com
  15741.  
  15742. From news@columbia.edu Fri Sep 30 11:42:51 1994
  15743. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA23917
  15744.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 30 Sep 1994 21:36:40 -0400
  15745. Received: by apakabar.cc.columbia.edu id AA18210
  15746.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 30 Sep 1994 21:36:39 -0400
  15747. Newsgroups: comp.protocols.kermit.misc
  15748. Path: news.columbia.edu!panix!MathWorks.Com!yeshua.marcam.com!zip.eecs.umich.edu!newsxfer.itd.umich.edu!gatech!swrinde!ihnp4.ucsd.edu!dog.ee.lbl.gov!newshub.nosc.mil!nosc!pegasus!richard
  15749. From: richard@pegasus.com (Richard Foulk)
  15750. Subject: Re: Exiting kermit without modem hangup
  15751. Organization: Pegasus Information Systems
  15752. Message-Id: <CwxxvG.FD3@pegasus.com>
  15753. References: <35koc2INNvl@ope001.iao.ford.com> <35n9jm$kui@apakabar.cc.columbia.edu>
  15754. Date: Fri, 30 Sep 1994 11:42:51 GMT
  15755. Lines: 23
  15756. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  15757.  
  15758. >> Is it possible to exit kermit without dropping the phone line?
  15759. >> 
  15760. >Remember there are hundreds of different Kermit programs.  For some the
  15761. >answer is yes, for others it is no.  In UNIX, of course, the answer is no.
  15762. >A fundamental aspect of the UNIX operating system is that when a process
  15763. >exits, all of its open files are closed.  There is no way around it.
  15764. > [...]
  15765.  
  15766. This is not correct.
  15767.  
  15768. In general, Unix will not cause a hangup until the last process with
  15769. the port open closes it.
  15770.  
  15771. Test this by establising a connection via kermit, then attach another
  15772. process to the port (to hold it open) and do a `kill -9' to the kermit
  15773. process.  Since this kill can't be caught it doesn't allow kermit to do
  15774. any of its usual cleanup so it won't be able to disconnect the modem.
  15775.  
  15776. It would be nice if kermit would support a cleaner way to do this.
  15777.  
  15778.  
  15779. -- 
  15780. Richard Foulk        richard@pegasus.com
  15781.  
  15782. From news@columbia.edu Sat Oct  1 01:25:07 1994
  15783. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA24207
  15784.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 30 Sep 1994 21:47:06 -0400
  15785. Received: by apakabar.cc.columbia.edu id AA18799
  15786.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 30 Sep 1994 21:47:05 -0400
  15787. Newsgroups: comp.protocols.kermit.misc
  15788. Path: news.columbia.edu!panix!MathWorks.Com!news.duke.edu!convex!cs.utexas.edu!uunet!gail.ripco.com!jgamble
  15789. From: jgamble@ripco.com (John M. Gamble)
  15790. Subject: Re: A Kermit library for MS-Windows
  15791. Message-Id: <Cwyzxw.Doz@rci.ripco.com>
  15792. Sender: usenet@rci.ripco.com (Net News Admin)
  15793. Organization: Ripco Internet BBS, Chicago
  15794. References: <1994Sep29.181545.11830@kullmar.se>
  15795. Date: Sat, 1 Oct 1994 01:25:07 GMT
  15796. Lines: 32
  15797. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  15798.  
  15799. In article <1994Sep29.181545.11830@kullmar.se>,
  15800. Bo Kullmar <bk@kullmar.se> wrote:
  15801. >I am looking for a good commercial communication package for MS-Windows
  15802. >with fast kermit functions. I need a kermit that can use larger packages
  15803. >than 94 bytes.
  15804. >
  15805. >Any suggestion? (The Kermit server on the other end is C-Kermit 5A(188)).
  15806. >
  15807. >--Bo Kullmar
  15808. >
  15809.  
  15810. Not the response you want, but i absolutely do *not* recommend QuickLink.
  15811. It comes free with Practical Peripherals and US Robotics modems.
  15812.  
  15813. The kermit protocol choices are Kermit and Super Kermit.  I tried
  15814. connecting to a friend with it - he had QL, and i had MS-Kermit 3.10.
  15815.  
  15816. Transfer was pathetic.  I have my send and receive block sizess set to
  15817. 512.  No go, ~94 was all we got.  Even worse, literally two out of
  15818. three packets sent were failures.  This is not a statistical comment,
  15819. it really would fail two packets and then accecpt the third.  Needless
  15820. to say, this fail-two-take-one behaviour was not making us happy.
  15821.  
  15822. Super Kermit protocol had identical behavior, except that it only failed
  15823. every other packet.  I guess that's what made it "Super".
  15824.  
  15825. Ansi terminal emulation was not good... i tried a vi session via QL,
  15826. and found that i had to hit ^L after dd commands.
  15827.  
  15828. Good thing it was free, i'd hate to have to try to get a refund for it...
  15829.  
  15830.     -john
  15831.  
  15832. From news@columbia.edu Sun Oct  1 03:02:15 1994
  15833. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA28200
  15834.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 30 Sep 1994 23:36:24 -0400
  15835. Received: by apakabar.cc.columbia.edu id AA25023
  15836.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 30 Sep 1994 23:36:23 -0400
  15837. Path: news.columbia.edu!spcuna!uunet!gatech!newsxfer.itd.umich.edu!news.itd.umich.edu!not-for-mail
  15838. From: alb@umcc.umcc.umich.edu (Alan Brushaber)
  15839. Newsgroups: comp.protocols.kermit.misc
  15840. Subject: Need Kermit for a Dec Alpha
  15841. Date: 30 Sep 1994 23:02:15 -0400
  15842. Organization: UMCC, Ann Arbor, MI, USA
  15843. Lines: 6
  15844. Message-Id: <36ijfn$fds@umcc.umcc.umich.edu>
  15845. Nntp-Posting-Host: umcc.umcc.umich.edu
  15846. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  15847.  
  15848.  
  15849.   Would anyone know where I could get a copy of Kermit for
  15850. a Dec Alpha?
  15851.  
  15852. Al - alb@umcc.umich.edu
  15853.  
  15854.  
  15855. From news@columbia.edu Fri Sep 30 16:58:40 1994
  15856. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA06055
  15857.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 1 Oct 1994 02:35:43 -0400
  15858. Received: by apakabar.cc.columbia.edu id AA03724
  15859.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 1 Oct 1994 02:35:40 -0400
  15860. Newsgroups: comp.protocols.kermit.misc
  15861. Path: news.columbia.edu!panix!MathWorks.Com!yeshua.marcam.com!charnel.ecst.csuchico.edu!nic-nac.CSU.net!news.Cerritos.edu!news.Arizona.EDU!CS.Arizona.EDU!rainbow.cse.nau.edu!nauvax.ucc.nau.edu!tsp
  15862. From: tsp@nauvax.ucc.nau.edu
  15863. Subject: Kermit newbe needs help
  15864. Message-Id: <30SEP94.16584086@nauvax.ucc.nau.edu>
  15865. Sender: news@rainbow.cse.nau.edu (Usenet News (system))
  15866. Nntp-Posting-Host: nauvax.ucc.nau.edu
  15867. Organization: Northern Arizona University
  15868. Date: Fri, 30 Sep 1994 16:58:40 GMT
  15869. Lines: 7
  15870. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  15871.  
  15872. Howdy all! I need some advice. The network that we are currently running
  15873. supports a number of Macs and PCs. From the Macs, you can put files or
  15874. get files. From the PCs, however, you can only get files. My theory is
  15875. that if I can find a Kermit program, and put it into server mode, we
  15876. should be able to send files to the PCs. Is my logic correct here? Any
  15877. suggestions on which Kermit to run? ( or other solutions?) Please
  15878. emaill dirrect asap!
  15879.  
  15880. From news@columbia.edu Thu Sep 29 04:24:43 1994
  15881. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA07145
  15882.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 1 Oct 1994 03:06:38 -0400
  15883. Received: by apakabar.cc.columbia.edu id AA04782
  15884.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 1 Oct 1994 03:06:36 -0400
  15885. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!math.ohio-state.edu!sdd.hp.com!caen!kuhub.cc.ukans.edu!scff.chinalake.navy.mil!mbguest
  15886. Newsgroups: comp.protocols.kermit.misc
  15887. Subject: USing Unix editors while under kermit
  15888. Message-Id: <1994Sep29.122443.7@scff.chinalake.navy.mil>
  15889. From: mbguest@scfe.chinalake.navy.mil
  15890. Date: 29 Sep 94 12:24:43 PST
  15891. Organization: Naval Air Weapons Station
  15892. Lines: 17
  15893. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  15894.  
  15895. I'm using version 1.89 on OS/2 to log into Unix box . The 
  15896. problem I have is that I can't use either Emacs or Vi because
  15897. of the lack of either an escape or an ALT-X that transmits
  15898. to the application correctly.Also the arrow keys do not
  15899. work in the applications . I have the book and have tried
  15900. both set terminal arrow-keys and set terminal keypad-mode.
  15901. What should I do next ?
  15902.  
  15903. The oddest part is that the program works fine, arrow keys in
  15904. application, etc - in calling into a VMS system. Is this some
  15905. sort of anti-unix plot <G>.
  15906.  
  15907. -- 
  15908. Matt
  15909. MBGUEST@scfe.chinalake.navy.mil
  15910. MBGUEST@ins.infonet.net
  15911. MBGUEST@delphi.com
  15912.  
  15913. From news@columbia.edu Fri Sep 30 21:06:03 1994
  15914. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA08978
  15915.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 1 Oct 1994 04:01:49 -0400
  15916. Received: by apakabar.cc.columbia.edu id AA06305
  15917.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 1 Oct 1994 04:01:48 -0400
  15918. Newsgroups: comp.protocols.kermit.misc
  15919. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!swrinde!elroy.jpl.nasa.gov!decwrl!amd!amdahl!netcomsv!ix.netcom.com!netcom.com!kientzle
  15920. From: kientzle@netcom.com
  15921. Subject: Re: Minimal control prefixing
  15922. Message-Id: <kientzleCwyny4.CFy@netcom.com>
  15923. Organization: NETCOM On-line Communication Services (408 261-4700 guest)
  15924. References: <36hakv$f1u@panix3.panix.com>
  15925. Date: Fri, 30 Sep 1994 21:06:03 GMT
  15926. Lines: 26
  15927. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  15928.  
  15929. In article <36hakv$f1u@panix3.panix.com> spencer@panix.com (David Spencer)  
  15930. writes:
  15931. > What's the minimal set of control chars that should be prefixed in a
  15932. > sane environment?
  15933.    Depends, of course, on what you mean by ``sane.''
  15934.  
  15935.    Here are a few points that might help you figure out what will
  15936. work for you:
  15937.    A few controls almost always have to be prefixed: the Kermit
  15938. start-of-packet character (usually Ctrl-A), Xon (Ctrl-Q) and Xoff
  15939. (Ctrl-S) (often used for flow control).
  15940.    Some others that often need prefixing: DLE (Ctrl-P), NULL, DEL,
  15941. and any special interrupt character (C-Kermit uses Ctrl-C by default).
  15942.  
  15943.    Generally, for every character you prefix, you should also prefix
  15944. the same character with the high bit set, to avoid problems caused by
  15945. parity mismatches.
  15946.  
  15947.    It does vary widely from system to system, though.  Unless you're
  15948. using a very simple connection that you understand well, at some point
  15949. it comes down to just guessing.  If you get it wrong, you'll get errors
  15950. and if you're unlucky, you'll crash something.
  15951.  
  15952.     Good luck,
  15953.                 - Tim Kientzle
  15954.  
  15955. From news@columbia.edu Fri Sep 30 21:17:04 1994
  15956. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA09172
  15957.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 1 Oct 1994 04:05:33 -0400
  15958. Received: by apakabar.cc.columbia.edu id AA06413
  15959.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 1 Oct 1994 04:05:32 -0400
  15960. Newsgroups: comp.protocols.kermit.misc
  15961. Path: news.columbia.edu!panix!MathWorks.Com!yeshua.marcam.com!usc!elroy.jpl.nasa.gov!decwrl!amd!amdahl!netcomsv!ix.netcom.com!netcom.com!kientzle
  15962. From: kientzle@netcom.com
  15963. Subject: Kermit Start-Of-Packet Characters
  15964. Message-Id: <kientzleCwyoGH.DMJ@netcom.com>
  15965. Summary: What ones are used?
  15966. Organization: NETCOM On-line Communication Services (408 261-4700 guest)
  15967. Date: Fri, 30 Sep 1994 21:17:04 GMT
  15968. Lines: 15
  15969. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  15970.  
  15971. Besides the default Ctrl-A, what control codes are used by different
  15972. Kermit implementations for their Start-Of-Packet characters?
  15973.  
  15974. I've heard of Ctrl-B being used, and I doubt anyone uses CR, LF,
  15975. XON, or XOFF, but it would be interesting to know which ones are
  15976. used?
  15977.  
  15978. Respond via e-mail if possible and I'll post a summary.
  15979.  
  15980.             - Tim Kientzle
  15981.  
  15982. ===========================================================================
  15983. kientzle@netcom.com
  15984.  
  15985.  
  15986.  
  15987. From news@columbia.edu Fri Sep 30 21:29:14 1994
  15988. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA09293
  15989.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 1 Oct 1994 04:07:56 -0400
  15990. Received: by apakabar.cc.columbia.edu id AA06454
  15991.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 1 Oct 1994 04:07:55 -0400
  15992. Newsgroups: comp.protocols.kermit.misc
  15993. Path: news.columbia.edu!panix!MathWorks.Com!yeshua.marcam.com!usc!elroy.jpl.nasa.gov!decwrl!amd!amdahl!netcomsv!ix.netcom.com!netcom.com!kientzle
  15994. From: kientzle@netcom.com
  15995. Subject: Errors in Protocol Manual
  15996. Message-Id: <kientzleCwyp0r.EpL@netcom.com>
  15997. Organization: NETCOM On-line Communication Services (408 261-4700 guest)
  15998. Distribution: na
  15999. Date: Fri, 30 Sep 1994 21:29:14 GMT
  16000. Lines: 31
  16001. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  16002.  
  16003. FWIW, I've found two minor errors in the Kermit Protocol Manual, 6th
  16004. edition that I recently pulled from kermit.columbia.edu.  Page numbers
  16005. are from the PostScript version.
  16006.  
  16007. Section 7.1, middle of page 44:  The description of HCHECK
  16008. claims that the header check is computed ``from the sum of the
  16009. ASCII values of the SEQ, TYPE, LENX1, and LENX2 fields'' and
  16010. then gives the formula:
  16011.     s = LEN + SEQ + TYPE + LENX1 + LENX2
  16012.  
  16013. I believe the formula is correct and the text is in error. (At least,
  16014. my Kermit implementation communicates with C-Kermit, and it does
  16015. include the LEN field in the header check.)
  16016.  
  16017.  
  16018. Section 7.1, top of page 45: ``...the sender should be prepared to
  16019. reconstruct the current packet at, say, half its size, ..., before
  16020. retransmission''
  16021.  
  16022.     In fact, this is a Bad Idea.  If the timeout is due to a lost
  16023. ACK, the receiver may not realize that the reconstructed packet (with
  16024. the same sequence number!) has different data in it.  The result can
  16025. be a transfer in which data is duplicated or dropped without either
  16026. side detecting the error.  It seems unreasonable to require the
  16027. receiver to compare each repeated packet against a stored copy of the
  16028. packet, which I believe is the only certain way to protect against
  16029. this problem and allow the sender to alter the size of a repeated
  16030. packet.
  16031.  
  16032.     Just thought someone might be interested...
  16033.                 - Tim Kientzle
  16034.  
  16035. From news@columbia.edu Fri Sep 30 21:32:27 1994
  16036. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA09969
  16037.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 1 Oct 1994 04:17:45 -0400
  16038. Received: by apakabar.cc.columbia.edu id AA06994
  16039.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 1 Oct 1994 04:17:37 -0400
  16040. Newsgroups: comp.protocols.kermit.misc
  16041. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!vixen.cso.uiuc.edu!sdd.hp.com!saimiri.primate.wisc.edu!news.doit.wisc.edu!decwrl!amd!amdahl!netcomsv!ix.netcom.com!netcom.com!jhurwit
  16042. From: jhurwit@netcom.com (Jeffrey Hurwit)
  16043. Subject: Login script (was Re: kermit script)
  16044. Message-Id: <jhurwitCwyp63.KL2@netcom.com>
  16045. Organization: Organization?  What organization?
  16046. X-Newsreader: TIN [version 1.2 PL1]
  16047. References: <kiWkwiK00WB7B75aIr@andrew.cmu.edu>
  16048. Date: Fri, 30 Sep 1994 21:32:27 GMT
  16049. Lines: 146
  16050. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  16051.  
  16052. In article <kiWkwiK00WB7B75aIr@andrew.cmu.edu>, 
  16053. Pedro Ferroni (pf2d+@andrew.cmu.edu) wrote:
  16054.  
  16055. >2) How do I find instructions to set up a scrip so i don't have do enter
  16056. >password, user id, telent unix, etc every time.
  16057.  
  16058.     This is the script (comments added-- you will need to strip them
  16059.     out to use the script as-is) that I use to connect to my dial-up
  16060.     (Unix) shell account on Netcom.  I was able to derive all the
  16061.     information I needed to write it from the command descriptions that
  16062.     are included in the help file that comes with MS-Kermit 3.13.  Note
  16063.     that if you include your password in a login script, anyone who has
  16064.     access to your computer can 1) log into your account and 2) read
  16065.     your login script to get your password.  An alternative script that
  16066.     doesn't include the password follows the first one.
  16067.  
  16068. SET INPUT CASE OBSERVE    [make input commands case sensitive]
  16069. SET INPUT DEFAULT 30    [input and reinput commands timeout in 30 secs.]
  16070. CLS            [clear screen]
  16071. CLEAR            [clear input buffer]
  16072. SET TERMINAL CLEAR    [clear terminal buffer]
  16073. :REDIAL            [label] (dial phone number again)
  16074. CLS            [clear screen]
  16075. OUTPUT ATDT*70,,8428835\13
  16076.     [send control string to modem followed by CR (\13): cancel call
  16077.     waiting (*70), pause 2 seconds (,,), dial number]
  16078.  
  16079. INPUT 15 BUSY        [wait 15 secs. for modem to say BUSY]
  16080. IF SUCCESS GOTO REDIAL    [and go back to :REDIAL if it does]
  16081. REINPUT 5 {NO CARRIER}    [check previous input, and wait 5 more secs. for
  16082.             modem to say NO CARRIER (note that { and } are
  16083.             quote characters)]
  16084. IF SUCCESS GOTO BUSY    [and go to :BUSY if it did (or does)]
  16085. REINPUT {CONNECT 2400}    [wait 30 more secs. for modem to say CONNECT 2400
  16086.             (substitute your own connect speed for 2400)]
  16087. IF SUCCESS GOTO LOGIN    [and go to :LOGIN if it does]
  16088.  
  16089.     [if your modem says anything other than CONNECT 2400 (eg.
  16090.     CONNECT 1200), REINPUT times out and control goes to :BUSY]
  16091.  
  16092.     NOTE:  You may have to adjust the above input command timeouts
  16093.     a little, depending on your modem and phone service.
  16094.  
  16095. :BUSY            (hang up modem and redial phone number)
  16096. HANGUP            [drop DTR to hang up modem]
  16097. CLEAR            [clear input buffer]
  16098. PAUSE 4            [wait 4 secs. (necessary for 3-way calling)]
  16099. GOTO REDIAL        [go back to :REDIAL and call again]
  16100. :LOGIN            (successful connect; start login)
  16101. REINPUT 2 {NO CARRIER}    [check back to see if carrier dropped after
  16102.             CONNECT 2400 (it happens sometimes)]
  16103. IF SUCCESS GOTO BUSY    [and go back to :BUSY if it did]
  16104.  
  16105.     NOTE:  This section is dependent on how your host system
  16106.     prompts you, and on some portion of that prompting being always
  16107.     the same.  Eg. my login prompt varies, but the last part of it
  16108.     is always 'login: '
  16109.  
  16110. REINPUT 15 {login: }    [check back and wait 15 secs. for login prompt
  16111.             (note {} to preserve space after login: )]
  16112. IF SUCCESS GOTO CONT    [and go to :CONT if it shows up]
  16113. GOTO BUSY        [go back to :BUSY if it doesn't]
  16114. :CONT            (login prompt showed up - continue login)
  16115. OUTPUT jhurwit\13    [send my userid (followed by CR)]
  16116. INPUT Password:        [wait 30 secs. for Password: prompt]
  16117. IF SUCCESS GOTO CONT1    [and go to :CONT1 if it shows up]
  16118. GOTO BUSY        [go back to :BUSY if it doesn't]
  16119. :CONT1            (password prompt showed up - continue login)
  16120. OUTPUT xxxxxx\13    [send my password (followed by CR)]
  16121.  
  16122.     NOTE:  Including your password in a login script is a security
  16123.     risk!  See introductory paragraph, and second script below.
  16124.  
  16125. INPUT 20 {Last login:}    [wait 20 secs. for Last Login: (indicates
  16126.             successful login on my system)]
  16127. IF SUCCESS GOTO CONT2    [and go to :CONT2 if it shows up]
  16128. REINPUT 10 {Invalid Login}  [check back and wait 10 more secs. for
  16129.                 Invalid Login (happens when the password
  16130.                 file is too busy)]
  16131. IF SUCCESS GOTO LOGIN    [go back to :LOGIN if this happens (a login:
  16132.             prompt always follows Invalid Login)]
  16133. GOTO BUSY        [go back to :BUSY if anything other than Last
  16134.             Login: or Invalid Login shows up]
  16135. :CONT2            (successful login)
  16136. CONNECT            [start terminal emulation]
  16137. END            [end of script]
  16138.  
  16139.     Here is the same script with a few lines added and one changed,
  16140.     that will prompt you for your password on each login.  NOTE:  If
  16141.     the variables %A and %B are being used in your MSKERMIT.INI,
  16142.     MSCUSTOM.INI, or in another script, choose another pair of
  16143.     variables from %A to %Z that aren't being used elsewhere.
  16144.  
  16145. SET INPUT CASE OBSERVE
  16146. SET INPUT DEFAULT 30
  16147. CLS
  16148. CLEAR
  16149. SET TERMINAL CLEAR
  16150. :REASK                (prompt for password again)
  16151. ASKQ \%A {Input password: }    [prompts you for your password, doesn't
  16152.                 echo what you type in, puts it in
  16153.                 variable %A]
  16154. ASKQ \%B {Input password again: }  [prompt again for comparison]
  16155. IF EQUAL \%A \%B GOTO REDIAL    [go to :REDIAL and continue login if
  16156.                 same password was enterred both times]
  16157. ECHO Passwords do not match.  Re-enter password.
  16158.     [echo this to screen]
  16159.  
  16160. GOTO REASK            [go to :REASK]
  16161. :REDIAL
  16162. CLS
  16163. OUTPUT ATDT*70,,8428835\13
  16164. INPUT 15 BUSY
  16165. IF SUCCESS GOTO REDIAL
  16166. REINPUT 5 {NO CARRIER}
  16167. IF SUCCESS GOTO BUSY
  16168. REINPUT {CONNECT 2400}
  16169. IF SUCCESS GOTO LOGIN
  16170. :BUSY
  16171. HANGUP
  16172. CLEAR
  16173. PAUSE 4
  16174. GOTO REDIAL
  16175. :LOGIN
  16176. REINPUT 2 {NO CARRIER}
  16177. IF SUCCESS GOTO BUSY
  16178. REINPUT 15 {login: }
  16179. IF SUCCESS GOTO CONT
  16180. GOTO BUSY
  16181. :CONT
  16182. OUTPUT jhurwit\13
  16183. INPUT 30 Password:
  16184. IF SUCCESS GOTO CONT1
  16185. GOTO BUSY
  16186. :CONT1
  16187. OUTPUT \%A\13        [send you password (in variable %A) followed by CR]
  16188. INPUT 20 {Last login:}
  16189. IF SUCCESS GOTO CONT2
  16190. REINPUT 10 {Invalid Login}
  16191. IF SUCCESS GOTO LOGIN
  16192. GOTO BUSY
  16193. :CONT2
  16194. ASSIGN \%A        [removes your password from memory (from
  16195. ASSIGN \%B        variables %A and %B]
  16196. CONNECT
  16197. END
  16198.  
  16199. From news@columbia.edu Fri Sep 30 20:54:27 1994
  16200. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA10589
  16201.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 1 Oct 1994 04:37:21 -0400
  16202. Received: by apakabar.cc.columbia.edu id AA07585
  16203.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 1 Oct 1994 04:37:20 -0400
  16204. Newsgroups: comp.protocols.kermit.misc
  16205. Path: news.columbia.edu!panix!MathWorks.Com!yeshua.marcam.com!usc!howland.reston.ans.net!agate!library.ucla.edu!ihnp4.ucsd.edu!pacbell.com!amdahl!netcomsv!ix.netcom.com!netcom.com!kientzle
  16206. From: kientzle@netcom.com
  16207. Subject: Re: Why is Kermit not popular on BBS-es?
  16208. Message-Id: <kientzleCwynEr.BFA@netcom.com>
  16209. Keywords: BBS download-protocol zmodem performance popularity
  16210. Organization: NETCOM On-line Communication Services (408 261-4700 guest)
  16211. References: <36g46d$m36@cruella.ee.pdx.edu>
  16212. Date: Fri, 30 Sep 1994 20:54:27 GMT
  16213. Lines: 52
  16214. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  16215.  
  16216. In article <36g46d$m36@cruella.ee.pdx.edu>,
  16217. Roland Kwee <rkwee@ee.pdx.edu> wrote:
  16218. >This provocative posting is an effort to distract from the current
  16219. >discussion about the copyright issue and ftp sites.
  16220.    You might not succeed.  <grin>
  16221.  
  16222. >While I like the Kermit protocol, the terminal emulator, the fact
  16223. >that it is available for free, and runs on nearly every platform,
  16224. >I am often unhappily surprised that many (most?) bulletin board
  16225. >systems offer an outdated and slow version of Kermit for downloading
  16226. >files. Also, products like Procomm show this trend.
  16227.    It's somewhat curious to see how provincial the different computer
  16228. sub-communities can be.  The PC/BBS community is no different.  They
  16229. use ZModem for file transfers and PC/ANSI terminal emulations, and
  16230. don't really care about anything else.  Other sub-communities use
  16231. Kermit/VT320 or IND$FILE/3270.  It all depends on where you grew up, I
  16232. guess.  ;-)
  16233.  
  16234. >Is there a conspiracy against Kermit? Is it that because it is not
  16235. >a commercial enterprise that nobody lobbies for it? Are the owners
  16236. >of zmodem lobbying against it?
  16237.    Well, having developed several commercial terminal programs, I can
  16238. perhaps suggest some of the factors that lead to this situation:
  16239.    * ZModem source code is available in the public domain.  As a
  16240. result, adding basic ZModem support is fairly simple, since a
  16241. developer can cut and paste existing code.  To the best of my
  16242. knowledge, there is no good Kermit implementation available in the
  16243. public domain.
  16244.    * ZModem and Kermit have different goals.  ZModem's primary goal is
  16245. to be fast; Kermit's primary goal is to work over any connection.  As
  16246. a result, most potential users of these protocols use ZModem, because
  16247. it's fast.  Sure, Kermit _can_ be fast, but that requires a lot of
  16248. configuration that most users just don't want to mess with.
  16249.    * Many computer users use freely-available software for
  16250. communications.  The restrictions on C-Kermit/MS-Kermit distribution
  16251. make this option unavailable to many users.
  16252.    * Finally, the legal status of the Kermit _protocol_ is ambiguous.
  16253. I don't know for sure if protocols can or cannot be copyrighted or
  16254. patented, but I _do_ know that the ZModem protocol is in the public
  16255. domain, and I cannot get in trouble for implementing it.  I don't know
  16256. about Kermit.
  16257.  
  16258. >Kermit deserves better.
  16259.     Kermit is indeed a very nice protocol.  But a commitment to
  16260. developing and supporting a protocol like Kermit involves a lot of
  16261. considerations other than just the technical merits of the protocol.
  16262. For many commercial developers, the other issues make it unreasonable
  16263. to invest the time and energy required to implement Kermit well.
  16264.  
  16265. >--Roland          email: RolandKwee@ACM.org
  16266.  
  16267.                 - Tim Kientzle
  16268.  
  16269. From news@columbia.edu Sat Oct  1 08:50:16 1994
  16270. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA11251
  16271.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 1 Oct 1994 05:02:21 -0400
  16272. Received: by apakabar.cc.columbia.edu id AA08522
  16273.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 1 Oct 1994 05:02:19 -0400
  16274. Newsgroups: comp.protocols.kermit.misc
  16275. Path: news.columbia.edu!panix!zip.eecs.umich.edu!newsxfer.itd.umich.edu!europa.eng.gtefsd.com!howland.reston.ans.net!EU.net!CERN.ch!surya1!fanchiot
  16276. From: fanchiot@surya1.cern.ch (Sergio Fanchiotti)
  16277. Subject: Re: FTP Mirrors and CDROMs - again
  16278. Message-Id: <CwzKJs.Fx7@news.cern.ch>
  16279. Sender: news@dxnews.cern.ch (USENET News System)
  16280. Organization: CERN European Lab for Particle Physics
  16281. References: <36hv50$kgn@news.icaen.uiowa.edu> <36i5s7$90e@apakabar.cc.columbia.edu> <9410010116.AA24289@SimTel.Coast.NET>
  16282. Date: Sat, 1 Oct 1994 08:50:16 GMT
  16283. Lines: 57
  16284. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  16285.  
  16286. w8sdz@SimTel.Coast.NET (Keith Petersen) writes:
  16287.  
  16288. >I hope that someone does have a magic pill because when you say that
  16289. >that Kermit cannot be distributed on *any* CD-ROMs it means that the
  16290. >folks who distribute FreeBSD, BSDI, SunOS, Linux, and other operating
  16291. >systems, as well as DECUS, may no longer include Kermit, even through
  16292. >it is free of charge, on their CD-ROMs.
  16293.  
  16294. >It appears to me that you have single-handedly killed the entire free
  16295. >distribution system for Kermit, except for Internet anonymous FTP.  That
  16296. >will probably result in the death of the Kermit protocol on systems
  16297. >which do not have access to the Internet. 
  16298.  
  16299. >Keith
  16300. >--
  16301. >Keith Petersen
  16302. >General Manager of SimTel, the Coast to Coast Software Repository (tm)
  16303. >Internet: w8sdz@SimTel.Coast.NET    or      w8sdz@Vela.ACS.Oakland.Edu
  16304. >Uucp: uunet!umich!vela!w8sdz                     BITNET: w8sdz@OAKLAND
  16305.  
  16306. Keith & Frank,
  16307.  
  16308.  
  16309.     Well, as someone looking at this silly discussion for some time
  16310.     it seems that the time has come to get to work on a GPL'd version
  16311.     of a portable data transfer program like Kermit (As Les said before).
  16312.         Kermit is decent software and ubquitous but not the last word in this 
  16313.     area. And if something of the complexity of gcc is still beeing 
  16314.     supported... why not something like a kermit protocol clone? Here
  16315.     the wheel has to be re-done, hard work it is, but it may have some 
  16316.     improvements, just look at the way Linux is developed! 
  16317.  
  16318.  
  16319.     Seems that the authors & sponsors of Kermit are swiming against the
  16320.     current this time... The argument that they cannot support versions of 
  16321.     Kermit that are sold via CD-ROMS because they don't receive a dime 
  16322.     seems like nonsense. THE SUPPORT SHOULD BE CHARGED FOR if fundings is
  16323.     what is needed (or the book revenues are not sufficient)! 
  16324.     ELSE DON'T ALLOW IT IN FTP PLACES AT ALL. Then the people at Columbia 
  16325.     won't have any trouble with support... there will be none to do in the 
  16326.     future and they can do their research in peace. It is their work
  16327.     and their choice.   (Apparently if doesn't matter that 90% of the 
  16328.     people don't have FTP access...)
  16329.  
  16330.     In this respect we should thank the attitude of the Kermit team. In the
  16331.     long run something else will appear to fill this gap, hopefully better
  16332.     and easier to distribute.  Guess here is something else for RMS, once 
  16333.     the TCL flame war is over... Maybe in a feww days we'll see
  16334.     a posting with the Subject: DON'T USE KERMIT... :-)
  16335.  
  16336.     Saludos,
  16337.  
  16338.          ...Sergio Fanchiotti
  16339.  
  16340.  
  16341. Ps: Frank, what about the BBSs, they make a buck from people downloading 
  16342.     programs from them...
  16343.  
  16344. From news@columbia.edu Sat Oct  1 09:38:03 1994
  16345. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA23705
  16346.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 1 Oct 1994 06:42:53 -0400
  16347. Received: by apakabar.cc.columbia.edu id AA11833
  16348.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 1 Oct 1994 06:42:52 -0400
  16349. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!EU.net!sunic!news.funet.fi!cs.joensuu.fi!news.csc.fi!convex!salmi
  16350. From: salmi@convex.csc.FI (Timo Salmi)
  16351. Newsgroups: comp.protocols.kermit.misc
  16352. Subject: Re: Why is Kermit not popular on BBS-es?
  16353. Date: 1 Oct 1994 09:38:03 GMT
  16354. Organization: Centre for Scientific Computing, Finland
  16355. Lines: 62
  16356. Message-Id: <36jalr$li4@pobox.csc.fi>
  16357. References: <36g46d$m36@cruella.ee.pdx.edu>
  16358. Reply-To: ts@uwasa.fi
  16359. Nntp-Posting-Host: convex.csc.fi
  16360. Keywords: BBS download-protocol zmodem performance popularity
  16361. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  16362.  
  16363. In article <36g46d$m36@cruella.ee.pdx.edu> rkwee@ee.pdx.edu (Roland Kwee) writes:
  16364. >This provocative posting is an effort to distract from the current
  16365. >discussion about the copyright issue and ftp sites.
  16366.  
  16367. There is ample room and obviously sufficient interest for both
  16368. issues.  Besides whenever there is a thread one does not wish to
  16369. follow it is relatively easy to block it out even by kill files or
  16370. threaded newsreaders, so don't worry. 
  16371.  
  16372. >While I like the Kermit protocol, the terminal emulator, the fact
  16373. >that it is available for free, and runs on nearly every platform,
  16374. >I am often unhappily surprised that many (most?) bulletin board
  16375. >systems offer an outdated and slow version of Kermit for downloading
  16376. >files. Also, products like Procomm show this trend.
  16377.  
  16378. It is not entirely surprising, because most BBS users want and need
  16379. a fully-featured telecommunication program rather than terminal
  16380. emulation.  I won't say "just" terminal emulation, since there is
  16381. nothing disparaging in this.  Quite the contrary.  As a terminal
  16382. emulator for a professional and a semi-professional Kermit is second
  16383. to none.  But BBS users usually have different needs. 
  16384.  
  16385. For example I use different programs for different purposes:
  16386.  MsKermit: Calling by modem my Unix host
  16387.  Telnet:   Direct ethernet connection to my Unix host
  16388.  Telix:    Calling BBSes
  16389.  
  16390. From what I have seen this is not an uncommon selection.
  16391.  
  16392. >Is there a conspiracy against Kermit? Is it that because it is not
  16393. >a commercial enterprise that nobody lobbies for it? Are the owners
  16394.  
  16395. No lobbying, as you can see from the BBS success of programs like
  16396. Telix (which incidentally just went commercial), TeleMate, Boyan,
  16397. (in my view) slightly overrated Procomm+, and so on an on.  The
  16398. trend clearly seems to be away from freeware to shareware to
  16399. shefware.  Childhoods end? 
  16400.  
  16401. Please note that I am observing existing facts.  I am not speaking
  16402. for or against the trend in this. 
  16403.  
  16404. >of zmodem lobbying against it?
  16405.  
  16406. Hardly.  Extenal protocols like Zmodem are easy to come by and
  16407. easy to use (after one has once managed to set it up) for Kermit
  16408. terminal emulation.  For example that is how I transfer my material
  16409. between my home and office when connecting with a modem.
  16410.  
  16411. >Kermit deserves better.
  16412.  
  16413. Kermit is a very fine product for the purposes for which it is
  16414. meant, but just like other alternatives is does not cover all bases. 
  16415.  
  16416.    All the best, Timo
  16417.  
  16418. ..................................................................
  16419. Prof. Timo Salmi      Co-moderator of comp.archives.msdos.announce
  16420. Temporarily as salmi@convex.csc.fi  USE EMAIL ADDRESS: ts@uwasa.fi
  16421. Moderating at garbo.uwasa.fi anonymous FTP  archives  128.214.87.1
  16422. Faculty of Accounting & Industrial Management; University of Vaasa
  16423. Internet: ts@uwasa.fi   BBS +(358)-61-3170972; FIN-65101,  Finland
  16424.  
  16425.  
  16426. From news@columbia.edu Sat Oct  1 14:00:07 1994
  16427. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA19640
  16428.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 1 Oct 1994 10:00:47 -0400
  16429. Received: by apakabar.cc.columbia.edu id AA19659
  16430.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 1 Oct 1994 10:00:46 -0400
  16431. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!EU.net!sunic!news.funet.fi!zippo.uwasa.fi!uwasa.fi!ts
  16432. From: ts@uwasa.fi (Timo Salmi)
  16433. Newsgroups: comp.protocols.kermit.misc,comp.archives.msdos.d
  16434. Subject: Kermit, SimTel, Garbo and CDROMs: A plea for calm.
  16435. Followup-To: comp.protocols.kermit.misc
  16436. Date: 1 Oct 1994 14:00:07 GMT
  16437. Organization: University of Vaasa
  16438. Lines: 36
  16439. Distribution: world
  16440. Message-Id: <36jq17$b28@zippo.uwasa.fi>
  16441. Nntp-Posting-Host: uwasa.fi
  16442. Xref: news.columbia.edu comp.protocols.kermit.misc:381 comp.archives.msdos.d:8874
  16443. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  16444.  
  16445. As the gentle readers will know, Columbia, SimTel and Garbo have not
  16446. managed to find a mutually acceptable solution that would enable
  16447. retaining Kermit on SimTel and Garbo.
  16448.  
  16449. Please, PLEASE, dear readers.  This does not make any of us bad
  16450. persons.  I am distressed to hear that especially Frank has been
  16451. flamed for his stance.  That is *NOT* fair.  We parties concerned
  16452. are all dedicated persons, Kermit is a fine product, and we try to
  16453. maintain good FTP sites in SimTel and Garbo. 
  16454.  
  16455. Please allow us the right to have these problems without pouncing on
  16456. anyone.  It is bad enough that we have come at the impasse.  We do
  16457. not want the extra pressured from flamage.  Please state your views
  16458. calmly and rationally.
  16459.  
  16460. It is true that I wished that Frank would have a different policy
  16461. about Kermit distribution on SimTel and Garbo CDROMs.  But it is his
  16462. right and privilege.  I am not contesting that.  In fact I am ready
  16463. to defend his rights to having his own views, even if they diverge
  16464. from my own preferences.
  16465.  
  16466. A final thing for this message.  Frank as been several times
  16467. regretting the existence of comp.protocols.kermit.misc because of
  16468. this.  That is totally unnecessary!  This discussion would have
  16469. taken place with or without this particular newsgroup.  Its original
  16470. purpose STILL is intact.  But we must be allowed to discuss this
  16471. dilemma.  If it bothers anybody, kill these subjects at your
  16472. newsreaders.
  16473.  
  16474.    All the best, Timo
  16475.  
  16476. ..................................................................
  16477. Prof. Timo Salmi      Co-moderator of comp.archives.msdos.announce
  16478. Moderating at garbo.uwasa.fi anonymous FTP  archives  128.214.87.1
  16479. Faculty of Accounting & Industrial Management; University of Vaasa
  16480. Internet: ts@uwasa.fi   BBS +(358)-61-3170972; FIN-65101,  Finland
  16481.  
  16482. From news@columbia.edu Sat Oct  1 14:18:51 1994
  16483. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA20594
  16484.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 1 Oct 1994 10:18:59 -0400
  16485. Received: by apakabar.cc.columbia.edu id AA28989
  16486.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 1 Oct 1994 10:18:57 -0400
  16487. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!ddsw1!not-for-mail
  16488. From: cnt@MCS.COM (Center / NT)
  16489. Newsgroups: comp.protocols.kermit.misc
  16490. Subject: NDIS Driver for Kermit
  16491. Date: 1 Oct 1994 09:18:51 -0500
  16492. Organization: MCSNet Subscriber Account, Chicago's First Public-Access Internet!
  16493. Lines: 7
  16494. Message-Id: <36jr4b$hlk@Venus.mcs.com>
  16495. Nntp-Posting-Host: venus.mcs.com
  16496. X-Newsreader: TIN [version 1.2 PL2 (KSD)]
  16497. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  16498.  
  16499. One article mentions the dis_pkt9 shim to use Kermit with
  16500. NDIS compliant ethernet adapters.
  16501.  
  16502. Where can I find this?
  16503.  
  16504. Joel    cnt@mcs.com
  16505.  
  16506.  
  16507. From news@columbia.edu Sat Oct  1 14:17:27 1994
  16508. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA20669
  16509.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 1 Oct 1994 10:20:39 -0400
  16510. Received: by apakabar.cc.columbia.edu id AA00435
  16511.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 1 Oct 1994 10:20:37 -0400
  16512. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!EU.net!sunic!news.funet.fi!zippo.uwasa.fi!uwasa.fi!ts
  16513. From: ts@uwasa.fi (Timo Salmi)
  16514. Newsgroups: comp.protocols.kermit.misc
  16515. Subject: Re: Columbia University's Kermit copyright
  16516. Date: 1 Oct 1994 14:17:27 GMT
  16517. Organization: University of Vaasa
  16518. Lines: 14
  16519. Message-Id: <36jr1n$cpm@zippo.uwasa.fi>
  16520. References: <9409300557.AA12036@simtel.coast.net> <36h490$9hc@apakabar.cc.columbia.edu> <HAGAR.94Sep30153443@ulam.engin.umich.edu>
  16521. Nntp-Posting-Host: uwasa.fi
  16522. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  16523.  
  16524. In article <HAGAR.94Sep30153443@ulam.engin.umich.edu> hagar@umich.edu writes:
  16525. :I fully support Columbia University's rights on this.
  16526.  
  16527. So do I.  No one has been contesting Columbia's RIGHTS.  They are
  16528. unequivocal.  That is not the problem we are facing together in
  16529. here. 
  16530.  
  16531.    All the best, Timo
  16532.  
  16533. ..................................................................
  16534. Prof. Timo Salmi      Co-moderator of comp.archives.msdos.announce
  16535. Moderating at garbo.uwasa.fi anonymous FTP  archives  128.214.87.1
  16536. Faculty of Accounting & Industrial Management; University of Vaasa
  16537. Internet: ts@uwasa.fi   BBS +(358)-61-3170972; FIN-65101,  Finland
  16538.  
  16539. From news@columbia.edu Sat Oct  1 01:52:02 1994
  16540. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA22127
  16541.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 1 Oct 1994 10:51:34 -0400
  16542. Received: by apakabar.cc.columbia.edu id AA04011
  16543.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 1 Oct 1994 10:51:33 -0400
  16544. Newsgroups: comp.protocols.kermit.misc
  16545. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!swrinde!elroy.jpl.nasa.gov!decwrl!amd!amdahl!netcomsv!ix.netcom.com!netcom.com!jhurwit
  16546. From: jhurwit@netcom.com (Jeffrey Hurwit)
  16547. Subject: Re: "Just Send It" mode - possible?
  16548. Message-Id: <jhurwitCwz16r.6v5@netcom.com>
  16549. Organization: Organization?  What organization?
  16550. X-Newsreader: TIN [version 1.2 PL1]
  16551. References: <36d22k$9mt@balsam.unca.edu> <jhurwitCwwsAz.Erz@netcom.com> <1994Sep30.095942.28338@cc.usu.edu>
  16552. Date: Sat, 1 Oct 1994 01:52:02 GMT
  16553. Lines: 32
  16554. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  16555.  
  16556. In article <1994Sep30.095942.28338@cc.usu.edu>, 
  16557. Joe Doupnik (jrd@cc.usu.edu) wrote:
  16558.  
  16559. >In article <jhurwitCwwsAz.Erz@netcom.com>, jhurwit@netcom.com (Jeffrey Hurwit) writes:
  16560. >> In article <36d22k$9mt@balsam.unca.edu>, 
  16561. >> Mike Honeycutt (Honeycutt@unca.edu) wrote:
  16562. >> 
  16563. >>>Would it be possible to tell the sending Kermit to "Just Send It"
  16564. >>>without the error checking?  Most of our asyn lines on campus
  16565. >>>are very clean (not including modems) and I would put up with
  16566. >>>the occasional corrupt file to make the download go faster.
  16567. >> 
  16568. >>     From the help file for MS-Kermit 3.13:
  16569. >> 
  16570. >> * COMMANDS FOR FILE TRANSFER WITHOUT ERROR CHECKING
  16571. >> 
  16572. >> Kermit can also transfer files or other information with remote computers,
  16573. >> services, or devices that do not support the Kermit file transfer protocol.
  16574. >> These methods provide no error detection or correction. Use with caution.
  16575. >> 
  16576. >> TRANSMIT <filename>
  16577. >>   Send a text file to the host as if you were typing it at the keyboard
  16578. >>   a line at a time.  Waits for linefeed (\10) to echo before sending next
  16579. >>   line.     Uses all current communication settings (parity, flow, etc).
  16580. >----------
  16581. >    Nah. That's a crude stop and wait item. See the "waits for linefeed"
  16582. >guy. No error checking, no flow control, no nothing; just send & pray.
  16583. >    Joe D.
  16584.  
  16585.     Sure 'nuf is.  But hey, that's what the guy asked for...
  16586.  
  16587.                         Jeff
  16588.  
  16589. From news@columbia.edu Sat Oct  1 02:04:03 1994
  16590. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA22274
  16591.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 1 Oct 1994 10:55:40 -0400
  16592. Received: by apakabar.cc.columbia.edu id AA04166
  16593.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 1 Oct 1994 10:55:38 -0400
  16594. Newsgroups: comp.protocols.kermit.misc
  16595. Path: news.columbia.edu!panix!zip.eecs.umich.edu!newsxfer.itd.umich.edu!europa.eng.gtefsd.com!howland.reston.ans.net!swrinde!elroy.jpl.nasa.gov!decwrl!amd!amdahl!netcomsv!ix.netcom.com!netcom.com!jhurwit
  16596. From: jhurwit@netcom.com (Jeffrey Hurwit)
  16597. Subject: Re: MS-Kermit question
  16598. Message-Id: <jhurwitCwz1qr.7pv@netcom.com>
  16599. Organization: Organization?  What organization?
  16600. X-Newsreader: TIN [version 1.2 PL1]
  16601. References: <36fad5$6bm@mathserv.mps.ohio-state.edu> <36fens$kbt@apakabar.cc.columbia.edu>
  16602. Date: Sat, 1 Oct 1994 02:04:03 GMT
  16603. Lines: 26
  16604. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  16605.  
  16606. In article <36fens$kbt@apakabar.cc.columbia.edu>, 
  16607. Frank da Cruz (fdc@fdc.cc.columbia.edu) wrote:
  16608.  
  16609. >In article <36fad5$6bm@mathserv.mps.ohio-state.edu>  
  16610. >davis@pacific.mps.ohio-state.edu writes:
  16611. >>  : ...
  16612. >>  : Kermit says:
  16613. >>  : Scan code \5386 is defined as
  16614. >>  : Ascii char: ^J \10
  16615. >> 
  16616. >> This is the obvious thing to do and it is the first thing I thought of.
  16617. >> However, this does not work on my version of MS-Kermit (3.13 patch level
  16618. >> 0).  It does not report the scan code for Ctrl-Enter.
  16619. >>
  16620. >Oops, silly me!  You're right -- I was using the "other" Enter key.
  16621. >Sorry.
  16622.  
  16623. >I think this is a bug, and we'll have to fix it in version 3.14.  I'll
  16624. >check with Joe.
  16625.  
  16626.     I also tried this when I saw the previous post.  I only have one
  16627.     Enter key on my laptop keyboard; CTRL-Enter returns no scan code. 
  16628.     Neither do a-z, A-Z, or CTRL-A-Z.  Alt-A-Z, all the function keys,
  16629.     and a few others, do return scan codes.
  16630.  
  16631.                         Jeff
  16632.  
  16633. From news@columbia.edu Sat Oct  1 18:55:51 1994
  16634. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA03989
  16635.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 1 Oct 1994 15:11:46 -0400
  16636. Received: by apakabar.cc.columbia.edu id AA15845
  16637.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 1 Oct 1994 15:11:45 -0400
  16638. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!newsxfer.itd.umich.edu!jobone!heifetz.msen.com!zib-berlin.de!news.th-darmstadt.de!fauern!news.unibw-muenchen.de!p41bsmk
  16639. From: p41bsmk@applsrv.rz.unibw-muenchen.de (Peter Schmolck)
  16640. Newsgroups: comp.protocols.kermit.misc
  16641. Subject: Re: NDIS Driver for Kermit
  16642. Date: 1 Oct 1994 18:55:51 GMT
  16643. Organization: University of the Federal Armed Forces Munich
  16644. Lines: 16
  16645. Message-Id: <36kbbn$fh2@infosrv.rz.unibw-muenchen.de>
  16646. References: <36jr4b$hlk@Venus.mcs.com>
  16647. Nntp-Posting-Host: applsrv.rz.unibw-muenchen.de
  16648. X-Newsreader: NN version 6.5.0 #3 (NOV)
  16649. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  16650.  
  16651. cnt@MCS.COM (Center / NT) writes:
  16652.  
  16653. >One article mentions the dis_pkt9 shim to use Kermit with
  16654. >NDIS compliant ethernet adapters.
  16655.  
  16656. >Where can I find this?
  16657.  
  16658. Just do what Joe D. recommended, and search for the string "dis_pkt9" in 
  16659. the file MSKERMIT.BWR (or, as it is called in the kermit directory on my PC:
  16660. KERMIT.BWR). 
  16661. P.S.
  16662. --
  16663. Peter Schmolck                                p41bsmk@rz.unibw-muenchen.de
  16664. Department of Education                       Phone :     +49-89-6004-2056
  16665. Univ. of the Federal Armed Forces Munich      Fax   :     +49-89-6004-3968
  16666. 85577 NEUBIBERG, GERMANY    
  16667.  
  16668. From news@columbia.edu Sat Oct  1 18:37:56 1994
  16669. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA05025
  16670.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 1 Oct 1994 15:31:51 -0400
  16671. Received: by apakabar.cc.columbia.edu id AA16743
  16672.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 1 Oct 1994 15:31:50 -0400
  16673. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!torn!news.ccs.queensu.ca!news
  16674. From: mike@ccs-sparc2post.QueensU.CA (Mike Smith)
  16675. Newsgroups: comp.protocols.kermit.misc
  16676. Subject: Re: Columbia University's Kermit copyright
  16677. Date: 1 Oct 1994 18:37:56 GMT
  16678. Organization: Queen's University, Kingston
  16679. Lines: 16
  16680. Sender: mike%ccs-sparc2@apakabar.cc.columbia.edu (Mike Smith)
  16681. Distribution: world
  16682. Message-Id: <36kaa4$lmm@knot.queensu.ca>
  16683. References: <9409300557.AA12036@simtel.coast.net> <36h490$9hc@apakabar.cc.columbia.edu>
  16684. Nntp-Posting-Host: ccs-sparc2.ccs
  16685. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  16686.  
  16687. I would not have joined this pointless discussion except Frank commented "there
  16688. is no way of knowing how the silent onlookers feel".  So here's how I feel:
  16689. Columbia does a fantastic job with Kermit.  People who have the audacity to
  16690. tell them how to fund their work are presumptuous beyond description.  Fans
  16691. of Simtel and Garbo seem to be almost personally offended by Columbia's policy.
  16692. That is unfortunate, but the fact remains that only Columbia knows what is
  16693. best for Kermit.  The good folks at Simtel know what's best for Simtel but if
  16694. they can't convince Columbia it is in their own best interest to include
  16695. Kermit on the CD the rest of us can't either.  I don't want to see the Kermit
  16696. effort stopped and if Frank says the CD distribution increases their workload
  16697. and decreases their income that should be the end of the argument. 
  16698. -- 
  16699.  
  16700.  Mike Smith                                  mike@ccs.queensu.ca
  16701.  Queen's University                          Michael.D.Smith@QueensU.CA
  16702.  Computing and Communications Services       (613) 545-2024
  16703.  
  16704. From news@columbia.edu Sat Oct  1 20:26:31 1994
  16705. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA09122
  16706.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 1 Oct 1994 17:03:40 -0400
  16707. Received: by apakabar.cc.columbia.edu id AA20925
  16708.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 1 Oct 1994 17:03:39 -0400
  16709. Newsgroups: comp.protocols.kermit.misc
  16710. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!swrinde!elroy.jpl.nasa.gov!decwrl!netcomsv!ix.netcom.com!netcom.com!jhurwit
  16711. From: jhurwit@netcom.com (Jeffrey Hurwit)
  16712. Subject: Re: send and unlink (C-kermit/Unix)?
  16713. Message-Id: <jhurwitCx0Gs8.Gw3@netcom.com>
  16714. Organization: Organization?  What organization?
  16715. X-Newsreader: TIN [version 1.2 PL1]
  16716. References: <CwxzL1.GA6@pegasus.com>
  16717. Date: Sat, 1 Oct 1994 20:26:31 GMT
  16718. Lines: 16
  16719. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  16720.  
  16721. In article <CwxzL1.GA6@pegasus.com>, 
  16722. Richard Foulk (richard@pegasus.com) wrote:
  16723.  
  16724. >Zmodem (sz) has a very nice feature, invoked with `-u' that removes
  16725. >each file just after it is successfully transmitted.
  16726.  
  16727. >Is there a clean and reliable way to do something similar with c-kermit?
  16728.  
  16729.     You could probably write a little script to do this.  Kermit sets a
  16730.     'success' flag when it completes a file transfer successfully,
  16731.     which can be tested for with an 'if success <do something>' line
  16732.     immediately following.  So you could have 'if success del
  16733.     filename'.  Consult the docs for more info on the C-Kermit script
  16734.     language.
  16735.  
  16736.                         Jeff
  16737.  
  16738. From news@columbia.edu Sat Oct  1 21:39:20 1994
  16739. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA17538
  16740.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 1 Oct 1994 18:41:38 -0400
  16741. Received: by apakabar.cc.columbia.edu id AA02306
  16742.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 1 Oct 1994 18:41:37 -0400
  16743. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!torn!news.ccs.queensu.ca!slip217.telnet1.QueensU.CA!dmurdoch
  16744. From: dmurdoch@mast.queensu.ca (Duncan Murdoch)
  16745. Newsgroups: comp.protocols.kermit.misc
  16746. Subject: Re: Columbia University's Kermit copyright
  16747. Date: Sat, 1 Oct 1994 21:39:20 GMT
  16748. Organization: Queen's University
  16749. Lines: 12
  16750. Message-Id: <dmurdoch.1141.0@mast.queensu.ca>
  16751. References: <9409300557.AA12036@simtel.coast.net> <36h490$9hc@apakabar.cc.columbia.edu>
  16752. Nntp-Posting-Host: slip217.telnet1.queensu.ca
  16753. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  16754.  
  16755. In article <36h490$9hc@apakabar.cc.columbia.edu> fdc@fdc.cc.columbia.edu (Frank da Cruz) writes:
  16756.  
  16757. >In this case, the people who are raising objections to our policies are
  16758. >people -- honest, decent people -- who happen to have FINANCIAL interests
  16759. >that are in conflict with ours.  
  16760.  
  16761. Thanks for calling me honest and decent, but believe me:  I have no 
  16762. financial interest in the distribution of Kermit.
  16763.  
  16764. Duncan Murdoch    
  16765.  
  16766.  
  16767.  
  16768. From news@columbia.edu Sat Oct  1 14:25:30 1994
  16769. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA21695
  16770.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 1 Oct 1994 20:24:07 -0400
  16771. Received: by apakabar.cc.columbia.edu id AA08977
  16772.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 1 Oct 1994 20:24:06 -0400
  16773. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!yeshua.marcam.com!usc!math.ohio-state.edu!jussieu.fr!centre.univ-orleans.fr!univ-lyon1.fr!swidir.switch.ch!newsfeed.ACO.net!Austria.EU.net!EU.net!uunet!newsflash.concordia.ca!canopus.cc.umanitoba.ca!rahardj
  16774. From: rahardj@cc.umanitoba.ca (Budi Rahardjo)
  16775. Newsgroups: comp.protocols.kermit.misc
  16776. Subject: Re: Columbia University's Kermit copyright
  16777. Date: 1 Oct 1994 14:25:30 GMT
  16778. Organization: The University of Manitoba
  16779. Lines: 49
  16780. Message-Id: <36jrgq$h1h@canopus.cc.umanitoba.ca>
  16781. References: <9409300557.AA12036@simtel.coast.net> <36h490$9hc@apakabar.cc.columbia.edu>
  16782. Nntp-Posting-Host: antares.cc.umanitoba.ca
  16783. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  16784.  
  16785. fdc@fdc.cc.columbia.edu (Frank da Cruz) writes:
  16786. ...
  16787. >On any newsgroup, there are a few vocal people and a large mass of onlookers.
  16788. >There is no way of knowing how the silent onlookers feel, and the tone of
  16789. >discussions like these -- i.e. controversies -- is set by the vocal ones.
  16790. >In this case, the people who are raising objections to our policies are
  16791. >people -- honest, decent people -- who happen to have FINANCIAL interests
  16792. >that are in conflict with ours.  But in the final analysis, WE DID ALL THE
  16793. >WORK and so we get to set the terms.  Those terms are the most generous
  16794. >terms imaginable to the end user, so there is NO CAUSE FOR ANYBODY TO
  16795. >COMPLAIN.
  16796.  
  16797. Okay, I'll bite. I don't have any financial interests and I do
  16798. like your kermit. Here's what I have problems with:
  16799.  
  16800. 1. You want your software to be free but you want to limit the
  16801.    distribution. How are you going to distribute it FOR FREE then?
  16802.    If you are looking for financial support, say so.
  16803.    I have NO objection with that.
  16804.  
  16805. 2. You have negative views of those CD-ROM vendors. As a user
  16806.    I very much appreciate the availability of those CD-ROMs.
  16807.  
  16808. 3. As an author of various free programs, I do spend my time
  16809.    writting the code (and that could be translated to thousand of
  16810.    dollars). I understand your views, you don't want a money-
  16811.    grabbing-scumbucket making money from your sweat.
  16812.    But all those CD-ROM vendors are NOT scums !!!
  16813.    What's the diff. between your program and other free/shareware
  16814.    available on SimTel ?
  16815.  
  16816. 4. I understand you did all the work and you can set whatever
  16817.    terms you want. As a user, though, I have to warn you that
  16818.    your restriction can cause the death of your fine program.
  16819.    Thus the objections raise by the people here.
  16820.  
  16821. 5. Personally, with all the troubles. I would rather change to
  16822.    a different program/implementation. Just one user, no big deal, eh ?
  16823.    Well, don't underestimate. I always recommend your kermit
  16824.    to friends/users/clients, and so do many people.
  16825.  
  16826. I hope you understand my view. You have a fine product, please
  16827. don't kill it by restricting its distribution.
  16828.  
  16829. -- budi
  16830. -- 
  16831. Budi Rahardjo <Budi_Rahardjo@UManitoba.Ca>
  16832. #include <std-disclaimer.h>
  16833. Unix Support - Computer Services - University of Manitoba
  16834.  
  16835. From news@columbia.edu Sun Oct  2 00:47:40 1994
  16836. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA22741
  16837.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 1 Oct 1994 20:47:43 -0400
  16838. Received: by apakabar.cc.columbia.edu id AA10187
  16839.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 1 Oct 1994 20:47:42 -0400
  16840. Path: news.columbia.edu!usenet
  16841. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  16842. Newsgroups: comp.protocols.kermit.misc
  16843. Subject: Re: Columbia University's Kermit copyright
  16844. Date: 2 Oct 1994 00:47:40 GMT
  16845. Organization: Columbia University
  16846. Lines: 17
  16847. Message-Id: <36kvvc$9u9@apakabar.cc.columbia.edu>
  16848. References: <36jrgq$h1h@canopus.cc.umanitoba.ca>
  16849. Nntp-Posting-Host: fdc.cc.columbia.edu
  16850. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  16851.  
  16852. In article <36jrgq$h1h@canopus.cc.umanitoba.ca> rahardj@cc.umanitoba.ca (Budi  
  16853. Rahardjo) writes:
  16854. > 5. Personally, with all the troubles. I would rather change to
  16855. >    a different program/implementation. Just one user, no big deal, eh ?
  16856. >    Well, don't underestimate. I always recommend your kermit
  16857. >    to friends/users/clients, and so do many people.
  16858. This is a point of view that I can't understand.  Nobody is restricting your
  16859. use of Kermit software or even asking you to spend a dime for it.  You
  16860. can ftp it from any site that carries it any time you want.  But it's not
  16861. enough that we should produce the software and give it to you; we must
  16862. also give it to a third party before you will agree to use it.  The part
  16863. I don't understand is why your compassion for this third party does not
  16864. extend in equal part to the people who designed, wrote, documented, and
  16865. support the software in the first place.
  16866.  
  16867. - Frank
  16868.  
  16869. From news@columbia.edu Sun Oct  2 00:20:24 1994
  16870. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA23155
  16871.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 1 Oct 1994 20:51:56 -0400
  16872. Received: by apakabar.cc.columbia.edu id AA10505
  16873.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 1 Oct 1994 20:51:50 -0400
  16874. Newsgroups: comp.protocols.kermit.misc
  16875. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!cs.utexas.edu!uunet!granite.ciw.edu!finger
  16876. From: finger@granite.ciw.edu
  16877. Subject: Re: Need Kermit for a Dec Alpha
  16878. Message-Id: <02Oct94.002024.15112@granite.ciw.edu>
  16879. Date: 02 Oct 94 00:20:24 GMT
  16880. References: <36ijfn$fds@umcc.umcc.umich.edu>
  16881. Organization: Geophysical Laboratory
  16882. Lines: 14
  16883. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  16884.  
  16885. In article <36ijfn$fds@umcc.umcc.umich.edu> alb@umcc.umcc.umich.edu (Alan Brushaber) writes:
  16886. >
  16887. >  Would anyone know where I could get a copy of Kermit for
  16888. >a Dec Alpha?
  16889. >
  16890. >Al - alb@umcc.umich.edu
  16891. >
  16892.  
  16893. Which OS?  Dec Alpha's run at least 3.
  16894.  
  16895. Larry W. Finger
  16896. finger@granite.ciw.edu
  16897.  
  16898.  
  16899.  
  16900. From news@columbia.edu Sun Oct  2 00:59:00 1994
  16901. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA23794
  16902.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 1 Oct 1994 21:04:04 -0400
  16903. Received: by apakabar.cc.columbia.edu id AA11166
  16904.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 1 Oct 1994 21:04:03 -0400
  16905. Newsgroups: comp.protocols.kermit.misc
  16906. Path: news.columbia.edu!panix!MathWorks.Com!news.kei.com!ub!acsu.buffalo.edu!ubvms.cc.buffalo.edu!v074l54q
  16907. From: v074l54q@ubvms.cc.buffalo.edu (Bryan T Hoch)
  16908. Subject: Where can I get the latest version for Mac?
  16909. Message-Id: <Cx0tCp.H7I@acsu.buffalo.edu>
  16910. News-Software: VAX/VMS VNEWS 1.50AXP 
  16911. Sender: nntp@acsu.buffalo.edu
  16912. Nntp-Posting-Host: ubvmsa.cc.buffalo.edu
  16913. Organization: University at Buffalo
  16914. Date: Sun, 2 Oct 1994 00:59:00 GMT
  16915. Lines: 7
  16916. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  16917.  
  16918.     Could someone please tell me a ftp site and directory in which I can
  16919. get the NEWEST version of Kerit for Macintosh? Thanks a bunch.
  16920.  
  16921.  
  16922. Bryan 
  16923.  
  16924. v074l54q@ubvms.cc.buffalo.edu 
  16925.  
  16926. From news@columbia.edu Sun Oct  2 01:06:28 1994
  16927. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA24176
  16928.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 1 Oct 1994 21:12:36 -0400
  16929. Received: by apakabar.cc.columbia.edu id AA11725
  16930.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 1 Oct 1994 21:12:35 -0400
  16931. Path: news.columbia.edu!panix!MathWorks.Com!news.duke.edu!concert!news.wfu.edu!matthews
  16932. From: matthews@wfu.edu (Rick Matthews)
  16933. Newsgroups: comp.protocols.kermit.misc
  16934. Subject: Re: Minimal control prefixing
  16935. Date: 2 Oct 1994 01:06:28 GMT
  16936. Organization: Wake Forest University
  16937. Lines: 28
  16938. Message-Id: <36l12k$gs1@eis.wfunet.wfu.edu>
  16939. References: <36hc7e$js9@apakabar.cc.columbia.edu> <36hdfb$lka@apakabar.cc.columbia.edu> <36i1m0$uh@panix3.panix.com>
  16940. Nntp-Posting-Host: acg60.wfunet.wfu.edu
  16941. X-Newsreader: TIN [version 1.2 PL2]
  16942. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  16943.  
  16944. David Spencer (spencer@panix.com) wrote:
  16945. : I did RTFM and RTFckuker.doc. Sorry I didn't RTFckcker.upd. It didn't
  16946. : leap to mind as the file that would have what the man and .doc didn't
  16947. : have. It was, however, most helpful.
  16948.  
  16949. : The .upd doesn't answer the specific question. There are probably a
  16950. : few thousand knowledgeable usenetters with substantially the same
  16951. : setup. So my question still seems reasonable.
  16952.  
  16953. Read the five lines beginning around line 285 of kermit.upd.  I use
  16954. the recommended minimum list for C-kermit to MS-Kermit and vice-versa.
  16955. If it doesn't work for you, the next 63 lines describe what to do
  16956. next.
  16957.  
  16958. Sorry, but in the pc-to-mainframe world, things are not as
  16959. standardized as we would like.  For maximum throughput, a little
  16960. experimentation is needed.
  16961.  
  16962. If you want to avoid experimentation at some speed penalty, I
  16963. think prefixing 0 thru 31 and 128+0 thru 128+31 should handle just
  16964. about any 8N1 connection with pretty good throughput.  That takes out
  16965. all control codes and their eight bit set equivalents.
  16966.  
  16967. --
  16968. Rick Matthews                     matthews@wfu.edu            Ham radio:
  16969. Wake Forest University            910-759-5340   (Voice)      WA4GSP
  16970. Winston-Salem, NC 27109-7507      910-759-6142   (FAX)
  16971.  
  16972.  
  16973. From news@columbia.edu Sun Oct  2 01:23:10 1994
  16974. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA24590
  16975.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 1 Oct 1994 21:23:17 -0400
  16976. Received: by apakabar.cc.columbia.edu id AA12548
  16977.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 1 Oct 1994 21:23:15 -0400
  16978. Path: news.columbia.edu!usenet
  16979. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  16980. Newsgroups: comp.protocols.kermit.misc
  16981. Subject: Re: Minimal control prefixing
  16982. Date: 2 Oct 1994 01:23:10 GMT
  16983. Organization: Columbia University
  16984. Lines: 15
  16985. Message-Id: <36l21u$c7s@apakabar.cc.columbia.edu>
  16986. References: <36l12k$gs1@eis.wfunet.wfu.edu>
  16987. Nntp-Posting-Host: fdc.cc.columbia.edu
  16988. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  16989.  
  16990. In article <36l12k$gs1@eis.wfunet.wfu.edu> matthews@wfu.edu (Rick Matthews)  
  16991. writes:
  16992. > If you want to avoid experimentation at some speed penalty, I
  16993. > think prefixing 0 thru 31 and 128+0 thru 128+31 should handle just
  16994. > about any 8N1 connection with pretty good throughput.  That takes out
  16995. > all control codes and their eight bit set equivalents.
  16996. Which, by the way, is Kermit's default for prefixing, except that Kermit
  16997. also prefixes 127 (DEL) and 255 (DEL+128), and this is also what you get
  16998. when you SET CONTROL PREFIX ALL.
  16999.  
  17000. - Frank
  17001. x
  17002. x
  17003. x
  17004.  
  17005. From news@columbia.edu Sun Oct  2 01:24:42 1994
  17006. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA24653
  17007.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 1 Oct 1994 21:24:48 -0400
  17008. Received: by apakabar.cc.columbia.edu id AA12616
  17009.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 1 Oct 1994 21:24:46 -0400
  17010. Path: news.columbia.edu!usenet
  17011. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  17012. Newsgroups: comp.protocols.kermit.misc
  17013. Subject: Re: Where can I get the latest version for Mac?
  17014. Date: 2 Oct 1994 01:24:42 GMT
  17015. Organization: Columbia University
  17016. Lines: 14
  17017. Message-Id: <36l24q$ca1@apakabar.cc.columbia.edu>
  17018. References: <Cx0tCp.H7I@acsu.buffalo.edu>
  17019. Nntp-Posting-Host: fdc.cc.columbia.edu
  17020. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  17021.  
  17022. In article <Cx0tCp.H7I@acsu.buffalo.edu> v074l54q@ubvms.cc.buffalo.edu (Bryan  
  17023. T Hoch) writes:
  17024. >     Could someone please tell me a ftp site and directory in which I can
  17025. > get the NEWEST version of Kerit for Macintosh? Thanks a bunch.
  17026. Anonymous ftp to kermit.columbia.edu.
  17027.  
  17028. directory kermit/test/text.  FTP in text mode.
  17029.  
  17030. Files ckm190.hqx and ckmker.bwr.
  17031.  
  17032. Use BinHex 4.0 to convert ckm190.hqx back to an application.
  17033.  
  17034. - Frank
  17035.  
  17036. From news@columbia.edu Sun Oct  2 02:08:09 1994
  17037. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA29674
  17038.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 1 Oct 1994 22:27:48 -0400
  17039. Received: by apakabar.cc.columbia.edu id AA16341
  17040.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 1 Oct 1994 22:27:47 -0400
  17041. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!EU.net!ub4b!idefix.CS.kuleuven.ac.be!infoserv.rug.ac.be!eduserv!rsamanya
  17042. From: rsamanya@eduserv.rug.ac.be (ranan samanya)
  17043. Newsgroups: comp.protocols.kermit.misc
  17044. Subject: CKermit keys
  17045. Date: 2 Oct 1994 02:08:09 GMT
  17046. Organization: University of Ghent, Belgium
  17047. Lines: 14
  17048. Message-Id: <36l4m9$agi@infoserv.rug.ac.be>
  17049. Nntp-Posting-Host: eduserv.rug.ac.be
  17050. X-Newsreader: TIN [version 1.2 PL2]
  17051. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  17052.  
  17053. I'm using CKermit for OS/2 to connect to the server. When I use joe's
  17054. editor, I can't use the PGUP, PGDOWN, or any cursor keys (PGUP and PGDOWN is
  17055. reserved for Kermit's scroll screen). Is there a way to change this
  17056. behaviour?
  17057.  
  17058. Please reply through email if possible.
  17059.  
  17060.  
  17061. the stars be with you
  17062. (or fall upon your head) ;D
  17063.  
  17064. ranan samanya
  17065.  
  17066. <\> the Indonesian Cita Ceria, under OS/2 </>
  17067.  
  17068. From news@columbia.edu Sat Oct  1 14:56:32 1994
  17069. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA01833
  17070.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 1 Oct 1994 23:02:23 -0400
  17071. Received: by apakabar.cc.columbia.edu id AA18170
  17072.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 1 Oct 1994 23:02:21 -0400
  17073. Path: news.columbia.edu!panix!zip.eecs.umich.edu!newsxfer.itd.umich.edu!jobone!lynx.unm.edu!news
  17074. From: galway@chtm.eece.unm.edu (Denis McKeon)
  17075. Newsgroups: comp.protocols.kermit.misc
  17076. Subject: Re: Are Columbia U's files still avial for FTP?
  17077. Date: Sat, 1 Oct 94 20:56:32 MDT
  17078. Organization: Connemara - Computing for People
  17079. Lines: 53
  17080. Message-Id: <36l7j2$6uh@lynx.unm.edu>
  17081. References: <dmurdoch.1325.2E8C5321@mast.queensu.ca> <36hsus$qtn@apakabar.cc.columbia.edu>
  17082. Reply-To: galway@chtm.eece.unm.edu
  17083. Nntp-Posting-Host: chtm.eece.unm.edu
  17084. X-Copyright: Copyright 1994 by Denis McKeon
  17085. X-Mailer: Mail User's Shell (7.0.1 12/13/89)
  17086. To: 
  17087. Status: OR
  17088.  
  17089. In <36hsus$qtn@apakabar.cc.columbia.edu>,
  17090. Frank da Cruz <fdc@fdc.cc.columbia.edu> wrote:
  17091. >
  17092. >I really wish I did not have to keep repeating myself -- it is really
  17093. >boring.  There is a paradox here: the more our software is spread to the
  17094. >general public on CDROM, and the more popular it becomes, the more work
  17095. >we have (tech support), the less time we have to devote to development,
  17096. >and the less money we have to pay for tech support AND development.
  17097.  
  17098. Looking at the larger issues - beyond the Kermit/Columbia/SimTel/Garbo
  17099. situation - notice that the economic viability of marketing software
  17100. on CD-ROMS exploits a market niche - with an update every 6 or 12 months,
  17101. and tens of thousands of shareware programs, and overhead limited to 
  17102. pressing CDs and running an FTP site, a CDROM collection can show a profit.
  17103.  
  17104. Now, suppose you are an entrepreneur, and you want to market a CDROM
  17105. that contains programs that, like shareware, are intended to be
  17106. profitable, and additionally are supported in real time 
  17107. (not "send me fixes, and I'll include them in the next release," 
  17108. but "call if you have problems, and we'll help you out.")
  17109.  
  17110. The CDROM entrepreneur and the software developer/supporters
  17111. are faced with negotiating issues like those Frank has outlined
  17112. (who gets how much from CDROM sales, how to recover support costs,
  17113. whether focus on support or on development.)  Like it or not,
  17114. those issues and the various contracts cost money.
  17115.  
  17116. The bottom line is that with that additional cost threshold, it is more
  17117. difficult to find an exploitable niche.  Maybe if a CDROM vendor was
  17118. able to work out the license/profit issues with several hundred software
  17119. developers who had, uhm, "senior" products (widely popular, stable,
  17120. regularly updated, possibly supported) then the CDROM vendor could
  17121. produce a profitable product (and vendors could reduce their
  17122. distribution costs by not shipping stacks of floppies.)
  17123.  
  17124. If a commercial multi-product CDROM with hundreds of supported products on
  17125. board (perhaps with free stripped demos, and key-coded full binaries?) was 
  17126. available, how much would you pay for it?  How many useful products would
  17127. need to be on it before it was worthwhile buying rather than downloading?
  17128.  
  17129. Those rhetorical questions may not make sense to readers of this forum,
  17130. because if you have Usenet you are pretty likely to have FTP as well,
  17131. and could get copies of the same (or newer software) almost for free 
  17132. (modulo your time, access provider bill, disk space, CPU cycles, etc.)
  17133.  
  17134. But suppose you didn't want to pay for or have FTP access.  Would there
  17135. then be a market niche for a CDROM vendor to fill (exploit)?  What would
  17136. a generic license agreement for this look like?  How can the legal costs
  17137. and monetary negotiation be handled at low cost?  (Looking at how actors
  17138. and musicians are compensated for residual profits might be a good
  17139. research starting point.)  Anyone who can answer those questions and
  17140. exploit any such niche might have an answer to this dilemma.
  17141.  
  17142.  
  17143. From news@columbia.edu Sun Oct  2 03:52:30 1994
  17144. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA05281
  17145.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 2 Oct 1994 00:05:45 -0400
  17146. Received: by apakabar.cc.columbia.edu id AA22048
  17147.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 2 Oct 1994 00:05:44 -0400
  17148. Newsgroups: comp.protocols.kermit.misc
  17149. Path: news.columbia.edu!panix!MathWorks.Com!yeshua.marcam.com!charnel.ecst.csuchico.edu!nic-nac.CSU.net!usc!howland.reston.ans.net!agate!msuinfo!harbinger.cc.monash.edu.au!bunyip.cc.uq.oz.au!janus.cat.csiro.au!grl
  17150. From: grl@janus.cat.csiro.au (Greg Lehmann)
  17151. Subject: vt220 mode in OS/2 ckermit 1.90 beta
  17152. Message-Id: <1994Oct2.035230.5054@janus.cat.csiro.au>
  17153. Organization: CSIRO Queensland Centre for Advanced Technologies
  17154. Distribution: comp
  17155. Date: Sun, 2 Oct 94 03:52:30 GMT
  17156. Lines: 17
  17157. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  17158.  
  17159. I have read the manuals but am afraid the terminology does me in. I have
  17160. a wordperfect document on a sun and want to edit it on my pc emulating a
  17161. vt220. It appears that the character sets are stuffed up because the accents
  17162. are not working properly. It was originally entered into wp on a vt220 and
  17163. now I need to change a few things, without access to a real vt220 anymore.
  17164. The document is in french. The first thing I notice is that even the line
  17165. graphics don't work, although they do when kermit is in vt102 mode. Does
  17166. anyone know how to get it working?
  17167.  
  17168. Thanks,
  17169.  
  17170. Greg
  17171. -- 
  17172. Greg Lehmann,
  17173. CSIRO Division of Manufacturing Technology,   Telephone: +61 7 212 4537
  17174. P.O. Box 883, Kenmore, QLD 4069, Australia.   Facsimile: +61 7 212 4681
  17175. 2643 Moggill Rd., Pinjarra Hills, QLD 4069.   Internet:  grl@brb.dmt.csiro.au
  17176.  
  17177. From news@columbia.edu Sun Oct  2 02:35:24 1994
  17178. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA05878
  17179.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 2 Oct 1994 00:11:47 -0400
  17180. Received: by apakabar.cc.columbia.edu id AA22301
  17181.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 2 Oct 1994 00:11:45 -0400
  17182. Path: news.columbia.edu!panix!MathWorks.Com!news.duke.edu!convex!cs.utexas.edu!uunet!news.uiowa.edu!icaen!mjo
  17183. From: mjo@ecn.uiowa.edu (Mike O'Connor)
  17184. Newsgroups: comp.protocols.kermit.misc
  17185. Subject: Re: Columbia University's Kermit copyright
  17186. Date: 2 Oct 1994 02:35:24 GMT
  17187. Organization: HP InterWorks Member
  17188. Lines: 42
  17189. Distribution: world
  17190. Message-Id: <36l69c$n71@news.icaen.uiowa.edu>
  17191. References: <9409300557.AA12036@simtel.coast.net> <36h490$9hc@apakabar.cc.columbia.edu> <36kaa4$lmm@knot.queensu.ca>
  17192. Nntp-Posting-Host: iworks.ecn.uiowa.edu
  17193. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  17194.  
  17195. In article <36kaa4$lmm@knot.queensu.ca> mike@ccs-sparc2post.QueensU.CA (Mike Smith) writes:
  17196.  
  17197. >I would not have joined this pointless discussion except Frank commented "there
  17198. >is no way of knowing how the silent onlookers feel".  So here's how I feel:
  17199. >Columbia does a fantastic job with Kermit.  People who have the audacity to
  17200. >tell them how to fund their work are presumptuous beyond description.  Fans
  17201. >of Simtel and Garbo seem to be almost personally offended by Columbia's policy.
  17202. >That is unfortunate, but the fact remains that only Columbia knows what is
  17203. >best for Kermit.  The good folks at Simtel know what's best for Simtel but if
  17204. >they can't convince Columbia it is in their own best interest to include
  17205. >Kermit on the CD the rest of us can't either.  I don't want to see the Kermit
  17206. >effort stopped and if Frank says the CD distribution increases their workload
  17207. >and decreases their income that should be the end of the argument. 
  17208.  
  17209. With all due respect, Kermit is not the work of one individual.  A
  17210. number of people have invested time and energy and resources into 
  17211. making Kermit what it is today.  This isn't just about Simtel and 
  17212. Garbo, but about anyone who cuts a CD for an OS -- note that some 
  17213. vendors no longer ship kermit with their OS, like DEC OSF/1 and BSDI.
  17214. And let's not forget those benevolent FTP archives who (ahem) do 
  17215. dervie some amount of money from grants or corporate funding by 
  17216. maintaining an FTP archive, like wuarchive and sunsite (just to name 
  17217. two biggies) and may have a moneyary incentive (however slight) to
  17218. keep Kermit online, thus supposedly putting themselves at odds with 
  17219. the Columbia people.  Already, it appears that Kermit is suffering 
  17220. something of a decline as overall line quality improves, and the
  17221. omnipotent GUI has emerged.  So tell me, honestly, do YOU think that
  17222. documentation sales are going to keep Kermit alive, or is it going 
  17223. to just die and spell the end of an era.  
  17224.  
  17225. No one wants to denigrate the Kermit developers' efforts toward making
  17226. a quality software product.  But it seems like they need some help here,
  17227. and the way they want us to help them doesn't seem to help anyone.  
  17228. There appear to be people out there with better funding models, and
  17229. every time someone suggests that a different funding model might better
  17230. serve the interests of everyone involved, we get a lot of voodoo and 
  17231. simplistic arguments.  I'd almost call it crosstalk, but that's a 
  17232. competitor, isn't it?  :)  Why isn't this work just funded by Columbia?
  17233. It certainly seems worthwhile enough just in advertising alone.  
  17234.  
  17235. -Mike
  17236.  
  17237.  
  17238. From news@columbia.edu Sun Oct  2 05:53:54 1994
  17239. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA11714
  17240.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 2 Oct 1994 01:59:46 -0400
  17241. Received: by apakabar.cc.columbia.edu id AA26923
  17242.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 2 Oct 1994 01:59:45 -0400
  17243. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!eff!neoucom.edu!news.ysu.edu!yfn.ysu.edu!am856
  17244. From: am856@yfn.ysu.edu (Michael DeCosta III)
  17245. Newsgroups: comp.protocols.kermit.misc
  17246. Subject: Kermit CD ROM?
  17247. Date: 2 Oct 1994 05:53:54 GMT
  17248. Organization: St. Elizabeth Hospital, Youngstown, OH
  17249. Lines: 4
  17250. Message-Id: <36lhti$cp0@news.ysu.edu>
  17251. Reply-To: am856@yfn.ysu.edu (Michael DeCosta III)
  17252. Nntp-Posting-Host: yfn2.ysu.edu
  17253. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  17254.  
  17255.  
  17256. Hmmm....I know Columbia probably doesn't have the staff for this,
  17257. but it sure sounds like a Kermit CD-ROM full of Kermits, Kermit utilities,
  17258. scripts and manuals from Columbia could be a fund generator?
  17259.  
  17260. From news@columbia.edu Sun Oct  2 08:02:05 1994
  17261. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA15253
  17262.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 2 Oct 1994 04:01:04 -0400
  17263. Received: by apakabar.cc.columbia.edu id AA01114
  17264.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 2 Oct 1994 04:01:02 -0400
  17265. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!vixen.cso.uiuc.edu!news.uoregon.edu!cs.uoregon.edu!usenet.ee.pdx.edu!not-for-mail
  17266. From: rkwee@ee.pdx.edu (Roland Kwee)
  17267. Newsgroups: comp.protocols.kermit.misc
  17268. Subject: Please explain Kermit's copyright
  17269. Date: 2 Oct 1994 01:02:05 -0700
  17270. Lines: 56
  17271. Message-Id: <36lpdt$ns4@cruella.ee.pdx.edu>
  17272. Nntp-Posting-Host: cruella.ee.pdx.edu
  17273. Summary: What exactly is and is not permitted with Kermit?
  17274. Keywords: legal profit freeware restrictions
  17275. X-Newsreader: NN version 6.4.19 #2
  17276. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  17277.  
  17278. In this time where the legal status of Kermit on ftp sites and
  17279. CD-ROM is heavily debated, it wouldn't harm if someone from
  17280. Columbia (Frank, Joe?) could explain in some detail what is
  17281. permitted with Kermit and what not. Such a discussion happened
  17282. not too long ago about the GNU public license for their libraries.
  17283.  
  17284. Here are some specific questions:
  17285.  
  17286. 1) I understood that a commercial program like Procomm could include
  17287. the Kermit protocol and source code as long as it wouldn't charge 
  17288. for that. The purchase (license) price would be for the non-Kermit
  17289. part of the product alone, and the Kermit part would be passed on
  17290. to the user for free. Is this correct?
  17291.  
  17292. 2) Could one charge money for giving someone a copy of Kermit on a 
  17293. diskette, to cover the cost of the diskette and the copying of the
  17294. files, and the postage and handling? This would not be a charge for
  17295. the program itself. It would still be an opportunity to make a profit,
  17296. . The diskette maker may make a profit, the delivery service,
  17297. the guy that spends time operating the copying device (also called wage),
  17298. and so on. This opportunity of making a profit is clearly linked to
  17299. the contents of the files, in this case the quality of the Kermit
  17300. product.
  17301.  
  17302. 3) In the case of the Simtel/Garbo CD's, did I understand it correcly
  17303. that Columbia told them that the distribution of Kermit required an
  17304. agreement with Columbia? About what kind of demands are we talking 
  17305. here? If Columbia wanted one dollar for each CD, I could understand
  17306. why the CD makers remove Kermit. If it were 0.1 cent, or a 100 dollar
  17307. lump sum, It would be a little different. Right now I see a lot
  17308. of discussion without having any idea about the order of magnitude
  17309. of the problem.
  17310.  
  17311. 4) Does Columbia _own_ all contributions made by the numerous
  17312. volunteers that actually created the various Kermit versions? Would
  17313. Columbia refuse contributions covered by the GNU public license?
  17314.  
  17315. 5) Long ago I must have read something like: Kermit is not public domain
  17316. to prevent others from slapping their copyright mark on it. This way,
  17317. it would be truly free for everybody to use it for whatever purpose. It
  17318. is freer than public domain. Correct?
  17319.  
  17320. 5A) If I create a program and put it in the public domain, could someone
  17321. take it, change two comments, and exclusively own that entire modified
  17322. program?
  17323.  
  17324. 6) Suppose I run a commercial business for profit. Can I freely use
  17325. the Kermit program? Even if my business consists entirely of transfering
  17326. files through modems using Kermit?
  17327.  
  17328. These are my questions. Certainly, people interested in ftp-archives
  17329. and CD-ROM will have additional questions. For me, as a layman in law,
  17330. the copyright statement of Kermit sometimes needs some clarification.
  17331.  
  17332. Thanks, Roland
  17333. email: RolandKwee@ACM.org
  17334.  
  17335. From news@columbia.edu Sun Oct  2 09:52:33 1994
  17336. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA23709
  17337.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 2 Oct 1994 06:44:34 -0400
  17338. Received: by apakabar.cc.columbia.edu id AA06305
  17339.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 2 Oct 1994 06:44:33 -0400
  17340. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!MathWorks.Com!news.duke.edu!eff!news.umbc.edu!haven.umd.edu!cville-srv.wam.umd.edu!drkwlf
  17341. From: drkwlf@wam.umd.edu (Sir DarkWolf)
  17342. Newsgroups: comp.protocols.kermit.misc
  17343. Subject: Kermit on Linux help
  17344. Date: 2 Oct 1994 09:52:33 GMT
  17345. Organization: University of Maryland, College Park
  17346. Lines: 20
  17347. Message-Id: <36lvt1$ga1@cville-srv.wam.umd.edu>
  17348. Nntp-Posting-Host: rac5.wam.umd.edu
  17349. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  17350.  
  17351. I'm attempting to run kermit from a linux system installed on my pc.  I 
  17352. am having serious problems (well, serious to me anyway) getting my modem 
  17353. to dial.  I have a USRobotics Sportster 14400, and use the "set modem 
  17354. sportster" command when running kermit, then "set line /dev/cua1", then 
  17355. "set speed 9600".  But, when I dial a number, it either tells me that it 
  17356. can't initialize the modem, or that the dial timeout interval was 
  17357. exceeded and it dumps me back into a kermit prompt.  I have tried setting 
  17358. the dial timeout interval up through 120 sec, but this still doesn't 
  17359. solve it.  I have also set the dial init-string to an init string that 
  17360. DOES work with crosstalk under dos.  (AT B0 X4 &B1 &H1 &R2 E0 V1).  Does 
  17361. anybody have an idea what I'm doing wrong, or could prompt me for some 
  17362. extra info that will help them solve this for me.  I would greatly 
  17363. appreciate it.
  17364. Thanks
  17365.  
  17366. -- 
  17367.           ********Grand Master of the Cavalry for a.f.m-p********
  17368.           *      Sir DarkWolf       *    The dirty grey knight  *
  17369.           *   drkwlf@wam.umd.edu    *    with blue speckles.    *
  17370.           *******************************************************
  17371.  
  17372. From news@columbia.edu Sun Oct  2 14:36:50 1994
  17373. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA25053
  17374.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 2 Oct 1994 10:36:53 -0400
  17375. Received: by apakabar.cc.columbia.edu id AA27239
  17376.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 2 Oct 1994 10:36:52 -0400
  17377. Path: news.columbia.edu!usenet
  17378. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  17379. Newsgroups: comp.protocols.kermit.misc
  17380. Subject: Re: CKermit keys
  17381. Date: 2 Oct 1994 14:36:50 GMT
  17382. Organization: Columbia University
  17383. Lines: 21
  17384. Message-Id: <36mgi2$qj5@apakabar.cc.columbia.edu>
  17385. References: <36l4m9$agi@infoserv.rug.ac.be>
  17386. Nntp-Posting-Host: fdc.cc.columbia.edu
  17387. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  17388.  
  17389. In article <36l4m9$agi@infoserv.rug.ac.be> rsamanya@eduserv.rug.ac.be (ranan  
  17390. samanya) writes:
  17391. > I'm using CKermit for OS/2 to connect to the server. When I use joe's
  17392. > editor, I can't use the PGUP, PGDOWN, or any cursor keys (PGUP and PGDOWN
  17393. > is reserved for Kermit's scroll screen). Is there a way to change this
  17394. > behaviour?
  17395. Of course.  One of Kermit's strongest features is key mapping.
  17396.  
  17397. In OS/2 C-Kermit 5A(190), still in beta but not for long, each of these
  17398. actions has a "verb" associated with it.  You can assign the verb to
  17399. any key you want.  Thus you can move the rollback functions to the keys
  17400. of your choice.
  17401.  
  17402. Now I have no idea what "joe's editor" expects to see when you hit PgUp
  17403. and PdDown, but whatever it is, you can program those keys to send those
  17404. things.
  17405.  
  17406. It's all in the documentation :-)
  17407.  
  17408. - Frank
  17409.  
  17410. From news@columbia.edu Sun Oct  2 14:52:25 1994
  17411. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA25479
  17412.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 2 Oct 1994 10:52:27 -0400
  17413. Received: by apakabar.cc.columbia.edu id AA28026
  17414.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 2 Oct 1994 10:52:26 -0400
  17415. Path: news.columbia.edu!usenet
  17416. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  17417. Newsgroups: comp.protocols.kermit.misc
  17418. Subject: Re: Kermit on Linux help
  17419. Date: 2 Oct 1994 14:52:25 GMT
  17420. Organization: Columbia University
  17421. Lines: 23
  17422. Message-Id: <36mhf9$rbo@apakabar.cc.columbia.edu>
  17423. References: <36lvt1$ga1@cville-srv.wam.umd.edu>
  17424. Nntp-Posting-Host: fdc.cc.columbia.edu
  17425. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  17426.  
  17427. In article <36lvt1$ga1@cville-srv.wam.umd.edu> drkwlf@wam.umd.edu (Sir  
  17428. DarkWolf) writes:
  17429. > I'm attempting to run kermit from a linux system installed on my pc.  I 
  17430. > am having serious problems (well, serious to me anyway) getting my modem 
  17431. > to dial.  I have a USRobotics Sportster 14400, and use the "set modem 
  17432. > sportster" command when running kermit, then "set line /dev/cua1", then 
  17433. > "set speed 9600".  But, when I dial a number, it either tells me that it 
  17434. > can't initialize the modem, or that the dial timeout interval was 
  17435. > exceeded and it dumps me back into a kermit prompt.
  17436. >
  17437. Which version of C-Kermit are you using?  Please try version 5A(190),
  17438. still in Beta.  It has numerous low-level i/o improvements for Linux.
  17439. If you still have trouble, might I recommend pages 50-67 of the manual,
  17440. "Using C-Kermit".  Yes, 17 pages on dialing, and with good reason -- there
  17441. are more things to consider than are practical to list in a newsgroup
  17442. message.  You might also want to take a peek at the MODEMS AND DIALING
  17443. and DIALING HINTS AND TIPS sections of the ckcker.bwr file.
  17444.  
  17445. If you can't find the answer in any of these places, send email to me with
  17446. details about your connection, versions, and exactly which commands you used
  17447. to set up the call.
  17448.  
  17449. - Frank
  17450.  
  17451. From news@columbia.edu Sun Oct  2 15:06:29 1994
  17452. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA26366
  17453.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 2 Oct 1994 11:06:32 -0400
  17454. Received: by apakabar.cc.columbia.edu id AA28683
  17455.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 2 Oct 1994 11:06:31 -0400
  17456. Path: news.columbia.edu!usenet
  17457. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  17458. Newsgroups: comp.protocols.kermit.misc
  17459. Subject: Re: vt220 mode in OS/2 ckermit 1.90 beta
  17460. Date: 2 Oct 1994 15:06:29 GMT
  17461. Organization: Columbia University
  17462. Lines: 45
  17463. Message-Id: <36mi9l$s07@apakabar.cc.columbia.edu>
  17464. References: <1994Oct2.035230.5054@janus.cat.csiro.au>
  17465. Nntp-Posting-Host: fdc.cc.columbia.edu
  17466. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  17467.  
  17468. lIn article <1994Oct2.035230.5054@janus.cat.csiro.au>
  17469. grl@janus.cat.csiro.au (Greg Lehmann) writes:
  17470.  
  17471. > I have read the manuals but am afraid the terminology does me in. I have
  17472. > a wordperfect document on a sun and want to edit it on my pc emulating a
  17473. > vt220. It appears that the character sets are stuffed up because the
  17474. > accents are not working properly. It was originally entered into wp on a
  17475. > vt220 and 1now I need to change a few things, without access to a real
  17476. > vt220 anymore.  The document is in french.
  17477. >
  17478. It all works, but C-Kermit is not a mind reader.  French can be represented
  17479. by at least the following character sets on the host:
  17480.  
  17481.   ISO 646 French national version (7-bit)
  17482.   The VTxxx Canadian French "NRC" (7-bit)
  17483.   ISO 8859-1 Latin Alphabet 1 (8-bit)
  17484.   DEC Multinational Character set (8-bit)
  17485.   Data General International (8-bit)
  17486.   Hewlett-Packard Roman8 (8-bit)
  17487.   NeXT Multinational (8-bit)
  17488.  
  17489.  ... to name a few.  Kermit understands all of these, but you have to tell
  17490. it which one to use.  The comand is SET TERMINAL CHARACTER-SET.  Come to
  17491. think of it, it is very likely that when the file was transferred to the
  17492. Sun from the PC originally, that no character-set translations were done
  17493. at all, in which case it is still encoded in an IBM code page.  Believe it
  17494. or not, you can even tell C-Kermit to SET TERMINAL CHARACTER-SET CP850
  17495. (or whatever) when talking to a Sun.
  17496.  
  17497. Secondly, if the file is encoded in an 8-bit character you have to make
  17498. sure that you have opened up an 8-bit connection to the Sun.  Tell
  17499. C-Kermit to SET TERMINAL BYTESIZE 8.  You might also have to tell the Sun
  17500. to "stty pass8".  You also have to be using an 8-bit clean editor on the
  17501. Sun, such as EMACS 19 or Mule.  EMACS 18 won't do it.  I don't know about
  17502. VI, but I doubt it.
  17503.  
  17504. > The first thing I notice is
  17505. > that even the line graphics don't work, although they do when kermit is
  17506. > in vt102 mode. Does anyone know how to get it working?
  17507. >
  17508. There was a bug in OS/2 C-Kermit in some of the 5A(190) Alphas and Betas,
  17509. now fixed.  Line graphics work fine in the copy that you will find on
  17510. kermit.columbia.edu, directory kermit/test/bin, file cku190.zip.
  17511.  
  17512. - Frank
  17513.  
  17514. From news@columbia.edu Sun Oct  2 15:23:09 1994
  17515. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA27212
  17516.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 2 Oct 1994 11:31:47 -0400
  17517. Received: by apakabar.cc.columbia.edu id AA00300
  17518.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 2 Oct 1994 11:31:46 -0400
  17519. Path: news.columbia.edu!panix!MathWorks.Com!news.duke.edu!convex!cs.utexas.edu!swrinde!pipex!sunic!news.funet.fi!zippo.uwasa.fi!uwasa.fi!ts
  17520. From: ts@uwasa.fi (Timo Salmi)
  17521. Newsgroups: comp.protocols.kermit.misc
  17522. Subject: Re: Are Columbia U's files still avial for FTP?
  17523. Date: 2 Oct 1994 15:23:09 GMT
  17524. Organization: University of Vaasa
  17525. Lines: 56
  17526. Message-Id: <36mj8t$1f8@zippo.uwasa.fi>
  17527. References: <dmurdoch.1325.2E8C5321@mast.queensu.ca> <36hsus$qtn@apakabar.cc.columbia.edu> <36l7j2$6uh@lynx.unm.edu>
  17528. Nntp-Posting-Host: uwasa.fi
  17529. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  17530.  
  17531. In article <36l7j2$6uh@lynx.unm.edu> galway@chtm.eece.unm.edu writes:
  17532. >Looking at the larger issues - beyond the Kermit/Columbia/SimTel/Garbo
  17533. >situation - notice that the economic viability of marketing software
  17534.  
  17535. The understandable problem with this difficult discussion have been
  17536. its excessive simplifications.  There is one further facet that has
  17537. not been brought up emphatically, so I will. 
  17538.  
  17539. Take an obviously popular university FTP site like Garbo.  Contrary
  17540. to what some users may have assumed, we certainly do not exist for
  17541. the purpose of generating profits.  In fact all the Garbo users are
  17542. heavily subsidized by the tax-payers.  Just like all the Internet
  17543. users are, more or less, since this is net is much financed from
  17544. public funds throughout the world.  Every FTP user and everyone now
  17545. reading this posting (you and I included!) is dipping into someone
  17546. else's pocket! So are the SimTel users even if SimTel is compelled
  17547. to be more self-sufficient than we are, and needs the proceeds from
  17548. the CDROM in order to exist for you.  Else it will cease to exist
  17549. for us all. 
  17550.  
  17551. Since also Garbo happens to be a popular FTP site, there is a good
  17552. chance that also we will be put an a CDROM.  I do not want to forbid
  17553. that possibility to retain all possible programs. 
  17554.  
  17555. I must confess that I am worried about the current trend which the
  17556. Kermit restriction exemplifies as one of the many.  HERE IS THE
  17557. POINT: Taken to the extremes this general trend will begin to affect
  17558. the responsibly acting FTP sites, and the FREE services they provide
  17559. to the net.  Already the trend has caused a lot of extra work also
  17560. to the FTP site maintainers.  That extra work taxes our resources
  17561. and takes away from the services we provide, and it affects the
  17562. motivation of FTP site maintainers.  (Just like this unfortunately
  17563. taxes Frank's capacity). 
  17564.  
  17565. Kermit is by far not the only such case this season.  Nor is a
  17566. single university (Columbia) responsible for what is happening in
  17567. general.  I am not trying to say that, in case someone
  17568. misunderstands.
  17569.  
  17570. In broad terms all this exemplifies the current 'to be or not to be'
  17571. status of the Internet community.  The ideals and the financial
  17572. realities are clashing more and more, as every user with sufficient
  17573. experience on Usenet will have gathered. 
  17574.  
  17575. Sigh!  This no longer feels like only a comp.protocols.kermit.misc
  17576. subject.  Maybe we should find a more appropriate newsgroup for
  17577. discussing the broader issue and its imlications.
  17578.  
  17579.    All the best, Timo
  17580.  
  17581. ..................................................................
  17582. Prof. Timo Salmi      Co-moderator of comp.archives.msdos.announce
  17583. Moderating at garbo.uwasa.fi anonymous FTP  archives  128.214.87.1
  17584. Faculty of Accounting & Industrial Management; University of Vaasa
  17585. Internet: ts@uwasa.fi   BBS +(358)-61-3170972; FIN-65101,  Finland
  17586.  
  17587.  
  17588. From news@columbia.edu Sun Oct  2 14:32:34 1994
  17589. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA27649
  17590.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 2 Oct 1994 11:41:16 -0400
  17591. Received: by apakabar.cc.columbia.edu id AA00819
  17592.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 2 Oct 1994 11:41:15 -0400
  17593. Path: news.columbia.edu!panix!MathWorks.Com!news.duke.edu!convex!cs.utexas.edu!swrinde!howland.reston.ans.net!math.ohio-state.edu!jussieu.fr!univ-lyon1.fr!swidir.switch.ch!newsfeed.ACO.net!Austria.EU.net!EU.net!uunet!newsflash.concordia.ca!canopus.cc.umanitoba.ca!rahardj
  17594. From: rahardj@cc.umanitoba.ca (Budi Rahardjo)
  17595. Newsgroups: comp.protocols.kermit.misc
  17596. Subject: Re: Columbia University's Kermit copyright
  17597. Date: 2 Oct 1994 14:32:34 GMT
  17598. Organization: The University of Manitoba
  17599. Lines: 63
  17600. Message-Id: <36mga2$t6q@canopus.cc.umanitoba.ca>
  17601. References: <36jrgq$h1h@canopus.cc.umanitoba.ca> <36kvvc$9u9@apakabar.cc.columbia.edu>
  17602. Nntp-Posting-Host: antares.cc.umanitoba.ca
  17603. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  17604.  
  17605. fdc@fdc.cc.columbia.edu (Frank da Cruz) writes:
  17606.  
  17607. : In article <36jrgq$h1h@canopus.cc.umanitoba.ca> rahardj@cc.umanitoba.ca (Budi  
  17608. : Rahardjo) writes:
  17609. : > 5. Personally, with all the troubles. I would rather change to
  17610. : >    a different program/implementation. Just one user, no big deal, eh ?
  17611. : >    Well, don't underestimate. I always recommend your kermit
  17612. : >    to friends/users/clients, and so do many people.
  17613. : > 
  17614. : This is a point of view that I can't understand.  Nobody is restricting your
  17615. : use of Kermit software or even asking you to spend a dime for it.  You
  17616. : can ftp it from any site that carries it any time you want.  
  17617.  
  17618. What about those people who don't have access to FTP?
  17619. Do you also send floppy disks for FREE?
  17620.  
  17621. : But it's not
  17622. : enough that we should produce the software and give it to you; we must
  17623. : also give it to a third party before you will agree to use it.  
  17624.  
  17625. You are missing the point. You are RESTRICTING it to 3rd party,
  17626. which is actually helping you to distribute kermit. You are restricting
  17627. the distribution.
  17628. You have a view that these 3rd parties are scums, milking your sweat,
  17629. where actually they help you distribute your program. Where is your
  17630. compassion too?
  17631.  
  17632. Nobody is forcing me to buy their CDs. I am willingly paid for the CD,
  17633. and I KNOW all the programs are available for FREE.
  17634.  
  17635. : The part
  17636. : I don't understand is why your compassion for this third party does not
  17637. : extend in equal part to the people who designed, wrote, documented, and
  17638. : support the software in the first place.
  17639.  
  17640. The problem I have is you are making the distribution convoluted.
  17641. If I were to give somebody a copy of kermit on a disk and I charge him/her
  17642. the price of a disk, you are going to accuse me of selling kermit.
  17643. How about if somebody put your kermit in a paid-BBS ?
  17644. Are you going to get the BBS sysop too?
  17645. Are you going to remove kermit from Linux CDs ???
  17646.  
  17647. In a way, I am also helping you guys to distribute kermit and making
  17648. it popular. In some cases I also helping people to configure it
  17649. (in a way supporting it). Am I getting paid for it ? No. 
  17650. It's your program, you can do whatever you want.
  17651. But if it makes it difficult for us to distribute it ... I won't do it.
  17652.  
  17653. I salute those people who design, wrote, documented, and support
  17654. the software. But you are missing one more group, people who distribute
  17655. the software.
  17656.  
  17657. To put it bluntly, you have a really good software but you want to
  17658. keep it to yourself, or mildly, you want to be the central distribution.
  17659. Fine. My 2 cents.
  17660.  
  17661.  
  17662. : - Frank
  17663. -- budi
  17664. -- 
  17665. Budi Rahardjo <Budi_Rahardjo@UManitoba.Ca>
  17666. #include <std-disclaimer.h>
  17667. Unix Support - Computer Services - University of Manitoba
  17668.  
  17669. From news@columbia.edu Sun Oct  2 15:57:23 1994
  17670. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA28249
  17671.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 2 Oct 1994 11:57:25 -0400
  17672. Received: by apakabar.cc.columbia.edu id AA01645
  17673.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 2 Oct 1994 11:57:24 -0400
  17674. Path: news.columbia.edu!usenet
  17675. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  17676. Newsgroups: comp.protocols.kermit.misc
  17677. Subject: Re: Please explain Kermit's copyright
  17678. Date: 2 Oct 1994 15:57:23 GMT
  17679. Organization: Columbia University
  17680. Lines: 154
  17681. Message-Id: <36ml93$1ja@apakabar.cc.columbia.edu>
  17682. References: <36lpdt$ns4@cruella.ee.pdx.edu>
  17683. Nntp-Posting-Host: fdc.cc.columbia.edu
  17684. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  17685.  
  17686. In article <36lpdt$ns4@cruella.ee.pdx.edu> rkwee@ee.pdx.edu (Roland Kwee)
  17687. writes:
  17688. > In this time where the legal status of Kermit on ftp sites and
  17689. > CD-ROM is heavily debated, it wouldn't harm if someone from
  17690. > Columbia (Frank, Joe?) could explain in some detail what is
  17691. > permitted with Kermit and what not. Such a discussion happened
  17692. > not too long ago about the GNU public license for their libraries.
  17693. OK, I'll give it a shot, but with all the standard disclaimers,
  17694. like you see at the bottom of car-leasing commercials :-)
  17695.  
  17696. > 1) I understood that a commercial program like Procomm could include
  17697. > the Kermit protocol and source code as long as it wouldn't charge 
  17698. > for that. The purchase (license) price would be for the non-Kermit
  17699. > part of the product alone, and the Kermit part would be passed on
  17700. > to the user for free. Is this correct?
  17701. This has been our policy from the beginning, but it is clearly not a
  17702. good one for anybody but the commercial software makers.  Why?
  17703.  
  17704.  . Columbia gets no income.
  17705.  . Real Kermit software loses "market share".
  17706.  . The Kermit implementations in many of these programs give
  17707.    Kermit a bad name.
  17708.  . These people *are* making money from Kermit -- Look at all the
  17709.    postings on the many newsgroups from people talking about using
  17710.    Kermit in <commercial-or-shareware-package-of-your-choice>.  Who
  17711.    is to say the presence of the word "Kermit" on their package
  17712.    has not affected their sales?
  17713.  . We (Columbia) get countless tech support questions from users of
  17714.    these products.  Some of the vendors even go so far as to tell
  17715.    their customers: "Kermit problem? Call Columbia."
  17716.  
  17717. It's another case of "they get the money, we get the extra work", AND the
  17718. bad rep in the newsgroups and the trade press to boot.  But to answer your
  17719. question: no, there is nothing to stop anybody from writing a Kermit
  17720. implementation, no matter how minimal or buggy, without asking permission
  17721. from Columbia.  They cannot, however, use or even look at our copyrighted
  17722. source code without our permission.
  17723.  
  17724. > 2) Could one charge money for giving someone a copy of Kermit on a 
  17725. > diskette, to cover the cost of the diskette and the copying of the
  17726. > files, and the postage and handling? This would not be a charge for
  17727. > the program itself. It would still be an opportunity to make a profit,
  17728. > .. The diskette maker may make a profit, the delivery service,
  17729. > the guy that spends time operating the copying device (also called wage),
  17730. > and so on. This opportunity of making a profit is clearly linked to
  17731. > the contents of the files, in this case the quality of the Kermit
  17732. > product.
  17733. I'm not going to answer this one directly.  Everybody looks for loopholes
  17734. to exploit.  Here is what we WANT to happen: if you use MS-DOS Kermit or
  17735. C-Kermit enough to need to know anything about it, purchase the manual.
  17736. If you don't do that, you waste your time and ours, and the net's.  You
  17737. run up bigger phone bills that you would have if you had read the manual,
  17738. etc etc, and, yes, buying the manual helps keep the Kermit effort alive.
  17739.  
  17740. > 3) In the case of the Simtel/Garbo CD's, did I understand it correcly
  17741. > that Columbia told them that the distribution of Kermit required an
  17742. > agreement with Columbia?
  17743. >
  17744. More to the point: the copyright notice says that, and the copyright
  17745. notice was overlooked.
  17746.  
  17747. > About what kind of demands are we talking here?
  17748. >
  17749. That's between us and the CD maker or any other commercial establishment
  17750. that wants to redistribute our software.  The negotiations are private.
  17751.  
  17752. > 4) Does Columbia _own_ all contributions made by the numerous
  17753. > volunteers that actually created the various Kermit versions? Would
  17754. > Columbia refuse contributions covered by the GNU public license?
  17755. First let me say that we have always gone out of our way to publicly
  17756. acknowledge all contributed code and bug fixes, and publicly thank and
  17757. praise the contributors.  I believe, but I can't swear, that everybody who
  17758. makes such contributions understands that they are going into copyrighted
  17759. software.  Nobody has ever complained about this.  This is a system that
  17760. works -- the contributors get the features and fixes they want, and these
  17761. get supported and carried forward into new releases, and lots of other
  17762. people benefit at the same time.  If you're asking me, do I make them sign
  17763. a waiver, no I do not.
  17764.  
  17765. Can we get real here for a minute?  This used to be a collegial,
  17766. cooperative, worldwide effort, unhampered by pointless legalisms, from
  17767. which *everybody* benefitted -- even significant numbers of entrepreneurs
  17768. after they entered into agreements with us.  It even used to be... fun.
  17769. Kermit has played a major role in many humanitarian causes -- cancer and
  17770. AIDS research, Bosnian war relief, ozone layer research in Antarctica,
  17771. space exploration, etc etc, where the cost of any other solution would
  17772. have been prohibitive -- it has saved lives, promoted communication in
  17773. parts of the world that could not have accomplished it any other way,
  17774. helped to spread democracy (more about this next month), and much more.
  17775. On a more mundane level, I would venture to say that it has saved
  17776. universities, governments, and other cash-poor institutions billions of
  17777. dollars, which ultimately would have come out of your pocket in taxes or
  17778. tuition.
  17779.  
  17780. Who on this planet has suffered from how we conduct our business?  Now you
  17781. want us to bring in the lawyers and accountants?
  17782.  
  17783. > 5) Long ago I must have read something like: Kermit is not public domain
  17784. > to prevent others from slapping their copyright mark on it. This way,
  17785. > it would be truly free for everybody to use it for whatever purpose. It
  17786. > is freer than public domain. Correct?
  17787. In a sense, it is.  The copyright notice prevents commercial enterprises
  17788. from distributing our software without our permission.  It places no
  17789. restrictions on anybody's use of the software, only the redistribution of it
  17790. by commercial enterprises.
  17791.  
  17792. > 5A) If I create a program and put it in the public domain, could someone
  17793. > take it, change two comments, and exclusively own that entire modified
  17794. > program?
  17795. Yes.  And if you were still using your own copy of it, they could take you
  17796. to court.  There was a case about 15 years ago where a university had to
  17797. pay a big settlement in court because an entrepeneur took their
  17798. public-domain code, which they had written themselves for their own use,
  17799. slapped his copyright on it, and then sued them for using it.  Sorry, I
  17800. can't recall the name or docket-number of the case, but there really was
  17801. a case like this.
  17802.  
  17803. > 6) Suppose I run a commercial business for profit. Can I freely use
  17804. > the Kermit program? Even if my business consists entirely of transfering
  17805. > files through modems using Kermit?
  17806. Yes, on your computer.  But you can't give out copies of our software to
  17807. your customers without our permission.
  17808.  
  17809. Obviously, however, if you were a very rich and prominent business,
  17810. it might be in your interest to help support our continued work -- if
  17811. we went under, then so could you.
  17812.  
  17813. > These are my questions. Certainly, people interested in ftp-archives
  17814. > and CD-ROM will have additional questions. For me, as a layman in law,
  17815. > the copyright statement of Kermit sometimes needs some clarification.
  17816. I think what disturbs me most about this discussion is that people seem
  17817. to be more concerned with "how can we make money from this?" than "how can
  17818. I get it for my own use?" or "how can I learn to use it more effectively?".
  17819.  
  17820. If you want to make money from our work, then you will have to share that
  17821. money with us.
  17822.  
  17823. If you want to use our work directly, nobody is forcing you to spend one red
  17824. cent.  If Kermit became shareware, as so many of you advocate, then everybody
  17825. who uses it would have to (a) send us money, (b) stop using it, or (c) become
  17826. an outlaw.  That would include the universities, government agencies,
  17827. research institute, hospitals, convents, and orphanages.
  17828.  
  17829. Why don't we give it rest, eh?  Thanks.
  17830.  
  17831. - Frank
  17832.  
  17833. From news@columbia.edu Sun Oct  2 16:09:59 1994
  17834. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA28767
  17835.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 2 Oct 1994 12:10:02 -0400
  17836. Received: by apakabar.cc.columbia.edu id AA02191
  17837.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 2 Oct 1994 12:10:00 -0400
  17838. Path: news.columbia.edu!usenet
  17839. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  17840. Newsgroups: comp.protocols.kermit.misc
  17841. Subject: Re: Are Columbia U's files still avial for FTP?
  17842. Date: 2 Oct 1994 16:09:59 GMT
  17843. Organization: Columbia University
  17844. Lines: 42
  17845. Message-Id: <36mm0n$24d@apakabar.cc.columbia.edu>
  17846. References: <36mj8t$1f8@zippo.uwasa.fi>
  17847. Nntp-Posting-Host: fdc.cc.columbia.edu
  17848. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  17849.  
  17850. In article <36mj8t$1f8@zippo.uwasa.fi> ts@uwasa.fi (Timo Salmi) writes:
  17851. > In article <36l7j2$6uh@lynx.unm.edu> galway@chtm.eece.unm.edu writes:
  17852. > >Looking at the larger issues - beyond the Kermit/Columbia/SimTel/Garbo
  17853. > >situation - notice that the economic viability of marketing software
  17854. > etc etc...
  17855. >
  17856. Yes, Timo.  We are living in times when the Internet is changing from
  17857. a publicly sponsored medium for the free exchange of "ideas" (in the
  17858. broadest sense) to a commodity exchange.  This is one of the growing
  17859. pains.  To compound the problem, most newcomers to the Internet view it
  17860. as a giant bag of free goodies and have no conception of the amount of
  17861. work that went into establishing the foundations of the Internet, and
  17862. all the software and other resources that lay at their fingertips.  The
  17863. idea is to take what you can get and run, and pay no thought to tomorrow.
  17864.  
  17865. > I must confess that I am worried about the current trend which the
  17866. > Kermit restriction exemplifies as one of the many.  HERE IS THE
  17867. > POINT: Taken to the extremes this general trend will begin to affect
  17868. > the responsibly acting FTP sites, and the FREE services they provide
  17869. > to the net.  Already the trend has caused a lot of extra work also
  17870. > to the FTP site maintainers.  That extra work taxes our resources
  17871. > and takes away from the services we provide, and it affects the
  17872. > motivation of FTP site maintainers.  (Just like this unfortunately
  17873. > taxes Frank's capacity). 
  17874. Actually, this new trend is only the expected and logical outcome of
  17875. the trend that directly preceded it -- the commercialization of the net
  17876. by turning ftp archive sites into CD-ROM masters.  The net was not
  17877. designed for that.  Now it seems we all have to do more work, and as
  17878. Timo observes, that work must be paid for.  Soon there will be
  17879. bureaucracies, regulating agencies, waivers, loyalty oaths, and taxes
  17880. (in one form or another) to pay for them.  Who will benefit?  The
  17881. lawyers and investors.
  17882.  
  17883. > Sigh!  This no longer feels like only a comp.protocols.kermit.misc
  17884. > subject.  Maybe we should find a more appropriate newsgroup for
  17885. > discussing the broader issue and its imlications.
  17886. Ha ha, good luck, Timo!  It took me *months* to get this newsgroup
  17887. established, and boy am I glad I did!
  17888.  
  17889. - Frank
  17890.  
  17891. From news@columbia.edu Sun Oct  2 16:16:06 1994
  17892. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA29036
  17893.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 2 Oct 1994 12:16:08 -0400
  17894. Received: by apakabar.cc.columbia.edu id AA02778
  17895.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 2 Oct 1994 12:16:07 -0400
  17896. Path: news.columbia.edu!watsun.cc.columbia.edu!jaltman
  17897. From: jaltman@watsun.cc.columbia.edu (Jeffrey Altman)
  17898. Newsgroups: comp.protocols.kermit.misc
  17899. Subject: Re: vt220 mode in OS/2 ckermit 1.90 beta
  17900. Date: 2 Oct 1994 16:16:06 GMT
  17901. Organization: Columbia University
  17902. Lines: 87
  17903. Message-Id: <36mmc6$2ml@apakabar.cc.columbia.edu>
  17904. References: <1994Oct2.035230.5054@janus.cat.csiro.au> <36mi9l$s07@apakabar.cc.columbia.edu>
  17905. Nntp-Posting-Host: watsun.cc.columbia.edu
  17906. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  17907.  
  17908. In article <36mi9l$s07@apakabar.cc.columbia.edu>,
  17909. Frank da Cruz <fdc@fdc.cc.columbia.edu> wrote:
  17910. >lIn article <1994Oct2.035230.5054@janus.cat.csiro.au>
  17911. >grl@janus.cat.csiro.au (Greg Lehmann) writes:
  17912. >
  17913. >> I have read the manuals but am afraid the terminology does me in. I have
  17914. >> a wordperfect document on a sun and want to edit it on my pc emulating a
  17915. >> vt220. It appears that the character sets are stuffed up because the
  17916. >> accents are not working properly. It was originally entered into wp on a
  17917. >> vt220 and 1now I need to change a few things, without access to a real
  17918. >> vt220 anymore.  The document is in french.
  17919. >>
  17920. >It all works, but C-Kermit is not a mind reader.  French can be represented
  17921. >by at least the following character sets on the host:
  17922. >
  17923. >  ISO 646 French national version (7-bit)
  17924. >  The VTxxx Canadian French "NRC" (7-bit)
  17925. >  ISO 8859-1 Latin Alphabet 1 (8-bit)
  17926. >  DEC Multinational Character set (8-bit)
  17927. >  Data General International (8-bit)
  17928. >  Hewlett-Packard Roman8 (8-bit)
  17929. >  NeXT Multinational (8-bit)
  17930. >
  17931. > ... to name a few.  Kermit understands all of these, but you have to tell
  17932. >it which one to use.  The comand is SET TERMINAL CHARACTER-SET.  Come to
  17933.  
  17934. This part is correct.  Word Perfect exists on the Sun as a Sun executable.
  17935. There was no file transfer.  So don't worry about the IBM code pages.
  17936. >
  17937. >Secondly, if the file is encoded in an 8-bit character you have to make
  17938. >sure that you have opened up an 8-bit connection to the Sun.  Tell
  17939. >C-Kermit to SET TERMINAL BYTESIZE 8.  You might also have to tell the Sun
  17940. >to "stty pass8".  
  17941.  
  17942. This is accurate.
  17943.  
  17944. >You also have to be using an 8-bit clean editor on the
  17945. >Sun, such as EMACS 19 or Mule.  EMACS 18 won't do it.  I don't know about
  17946. >VI, but I doubt it.
  17947.  
  17948. Again.  Don't worry about this.  You are using Word Perfect as your editor.
  17949.  
  17950. >> The first thing I notice is
  17951. >> that even the line graphics don't work, although they do when kermit is
  17952. >> in vt102 mode. Does anyone know how to get it working?
  17953. >>
  17954. >There was a bug in OS/2 C-Kermit in some of the 5A(190) Alphas and Betas,
  17955. >now fixed.  Line graphics work fine in the copy that you will find on
  17956. >kermit.columbia.edu, directory kermit/test/bin, file cku190.zip.
  17957. >
  17958. >- Frank
  17959.  
  17960. Just set the character set to an appropriate one.  And us the Updates 
  17961. command to view the CKERMIT.INF file.  Look up the Compose command which
  17962. will allow you to easily enter all of the accented characters.
  17963.  
  17964. Have a nice day.
  17965.  
  17966. x
  17967. x
  17968. x
  17969. x
  17970. x
  17971. x
  17972. x
  17973. x
  17974. x
  17975. x
  17976. x
  17977. x
  17978. x
  17979. x
  17980. x
  17981. x
  17982. x
  17983. x
  17984. x
  17985. x
  17986. x
  17987. x
  17988. x
  17989.  
  17990.  
  17991. Jeffrey Altman * PO Box 220415 * Great Neck, NY * 11022-0415 * (516) 466-5495
  17992. "C-Kermit: available on more platforms than any other communications software."
  17993. "Kermit FTP: sending files whenever and wherever they are needed."
  17994. OS/2 version 189 via ftp from watsun.cc.columbia.edu /kermit/bin/ckoker.zip 
  17995.  
  17996. From news@columbia.edu Sun Oct  2 16:28:00 1994
  17997. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA29414
  17998.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 2 Oct 1994 12:28:03 -0400
  17999. Received: by apakabar.cc.columbia.edu id AA03496
  18000.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 2 Oct 1994 12:28:02 -0400
  18001. Path: news.columbia.edu!usenet
  18002. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  18003. Newsgroups: comp.protocols.kermit.misc
  18004. Subject: Re: Columbia University's Kermit copyright
  18005. Date: 2 Oct 1994 16:28:00 GMT
  18006. Organization: Columbia University
  18007. Lines: 19
  18008. Message-Id: <36mn2g$3d3@apakabar.cc.columbia.edu>
  18009. References: <36mga2$t6q@canopus.cc.umanitoba.ca>
  18010. Nntp-Posting-Host: fdc.cc.columbia.edu
  18011. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  18012.  
  18013. In article <36mga2$t6q@canopus.cc.umanitoba.ca> rahardj@cc.umanitoba.ca (Budi  
  18014. Rahardjo) writes:
  18015. > You have a view that these 3rd parties are scums, milking your sweat,
  18016. > where actually they help you distribute your program. Where is your
  18017. > compassion too?
  18018. Not all all.  Timo and Keith are good guys.  But our interests in this
  18019. matter our diametrically opposed.  Let me ONCE AGAIN very briefly say:
  18020.  
  18021.   CDROMs are perfect for distributing shareware.  I praise Timo,
  18022.   Keith, Walnut Creek, and everybody who distributes shareware on
  18023.   CDROMs or any other way.  CDROMs are also good for *true* freeeware,
  18024.   i.e. software whose development and maintenance does not need to
  18025.   be supported in any way, but in that case you get what you pay for.
  18026.  
  18027. CDROMs, however, are not good for distributing software that does not
  18028. fall into these categories.  Kermit is such software.
  18029.  
  18030. - Frank
  18031.  
  18032. From news@columbia.edu Sun Oct  2 16:25:45 1994
  18033. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA00204
  18034.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 2 Oct 1994 12:50:40 -0400
  18035. Received: by apakabar.cc.columbia.edu id AA04823
  18036.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 2 Oct 1994 12:50:39 -0400
  18037. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!newsxfer.itd.umich.edu!newsrelay.iastate.edu!news.iastate.edu!billmaly
  18038. From: billmaly@iastate.edu (WhoWantsTaKnow)
  18039. Newsgroups: comp.protocols.kermit.misc
  18040. Subject: SLOW downloads
  18041. Date: 2 Oct 1994 16:25:45 GMT
  18042. Organization: Iowa State University, Ames, IA
  18043. Lines: 16
  18044. Message-Id: <36mmu9$qj0@news.iastate.edu>
  18045. Nntp-Posting-Host: des1.iastate.edu
  18046. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  18047.  
  18048. I use KERMIT as my primary(only) comm. software, mostly to tie into my
  18049. University's computer(internet) and to download files. The problem I
  18050. have, even when connecting at speeds of 9600 and above, my download time
  18051. is so slow. It takes more than an hour to dowload a 1 meg file. Is this
  18052. normal, and if not, what can be done to fix it? Thanks!
  18053.  
  18054.  
  18055. -- 
  18056. Bill Maly
  18057. billmaly@iastate.edu
  18058.  
  18059.  
  18060.  
  18061.  
  18062.  
  18063.  
  18064.  
  18065. From news@columbia.edu Sun Oct  2 16:49:56 1994
  18066. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA00442
  18067.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 2 Oct 1994 12:55:54 -0400
  18068. Received: by apakabar.cc.columbia.edu id AA05124
  18069.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 2 Oct 1994 12:55:54 -0400
  18070. Path: news.columbia.edu!panix!zip.eecs.umich.edu!newsxfer.itd.umich.edu!europa.eng.gtefsd.com!howland.reston.ans.net!math.ohio-state.edu!jussieu.fr!univ-lyon1.fr!swidir.switch.ch!newsfeed.ACO.net!Austria.EU.net!EU.net!uunet!winternet.com!jamess
  18071. From: jamess@winternet.com (James Sturdevant)
  18072. Newsgroups: comp.protocols.kermit.misc
  18073. Subject: Re: MS-Kermit question
  18074. Date: 2 Oct 1994 16:49:56 GMT
  18075. Organization: StarNet Communications, Inc
  18076. Lines: 27
  18077. Message-Id: <36mobk$7t0@blackice.winternet.com>
  18078. References: <36evui$9t@mathserv.mps.ohio-state.edu> <36f562$63q@apakabar.cc.columbia.edu> <36fu6e$jd@blackice.winternet.com> <1994Sep30.075153.28308@cc.usu.edu>
  18079. Nntp-Posting-Host: icicle.winternet.com
  18080. X-Newsreader: TIN [version 1.2 PL2]
  18081. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  18082.  
  18083. Joe Doupnik (jrd@cc.usu.edu) wrote:
  18084. : In article <36fu6e$jd@blackice.winternet.com>, jamess@winternet.com (James Sturdevant) writes:
  18085. : > Frank da Cruz (fdc@fdc.cc.columbia.edu) wrote:
  18086. : > : In article <36evui$9t@mathserv.mps.ohio-state.edu>  
  18087. : > : davis@pacific.mps.ohio-state.edu writes:
  18088. : > : >   This has been bugging me for a long time but I do not know what to do
  18089. : > : > about it:  Ctrl-ENTER returns a Ctrl-J character (linefeed).  Is there
  18090. : > : > anyway to suppress this?   That is, have Ctrl-ENTER simply return a RET
  18091. : > : > character?
  18092. : > : > 
  18093. : > [Snip] Advice on redefining keys...
  18094. : > 
  18095. : > That works on most keys...  Two keys left of the the "dual entry" table are
  18096. : > Ctrl-J/Ctrl-Enter and Esc/Ctrl-[.  I believe that these are the only two (on
  18097. : > standard 101 keyboards) that cannot be independently defined.
  18098. : > 
  18099. : > JamesS
  18100. : ----------
  18101. :     Yup. Control-Enter is ^J from the Bios and we can't distinguish it
  18102. : from typing Control-J. It is one of the many "features" of the IBM PC Bios.
  18103. :     Joe D.
  18104. Yes, but there are different scan codes along with the ascii code. You 
  18105. differentiate between the enter key and ctrl-M, the duplicate keys on the
  18106. keypad and the keyboard, etc.  All I am interested in is differentiating these
  18107. keys also.  (I have source code if you want it!)
  18108.  
  18109. JamesS
  18110.  
  18111. From news@columbia.edu Sun Oct  2 17:18:05 1994
  18112. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA01291
  18113.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 2 Oct 1994 13:18:10 -0400
  18114. Received: by apakabar.cc.columbia.edu id AA06639
  18115.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 2 Oct 1994 13:18:08 -0400
  18116. Path: news.columbia.edu!usenet
  18117. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  18118. Newsgroups: comp.protocols.kermit.misc
  18119. Subject: Re: SLOW downloads
  18120. Date: 2 Oct 1994 17:18:05 GMT
  18121. Organization: Columbia University
  18122. Lines: 152
  18123. Message-Id: <36mq0d$6f9@apakabar.cc.columbia.edu>
  18124. References: <36mmu9$qj0@news.iastate.edu>
  18125. Nntp-Posting-Host: fdc.cc.columbia.edu
  18126. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  18127.  
  18128. In article <36mmu9$qj0@news.iastate.edu> billmaly@iastate.edu  
  18129. (WhoWantsTaKnow) writes:
  18130. > I use KERMIT as my primary(only) comm. software, mostly to tie into my
  18131. > University's computer(internet) and to download files. The problem I
  18132. > have, even when connecting at speeds of 9600 and above, my download time
  18133. > is so slow. It takes more than an hour to dowload a 1 meg file. Is this
  18134. > normal, and if not, what can be done to fix it? Thanks!
  18135. Oh good, we have come full circle.  I now reproduce my very first posting
  18136. to this newsgroup.  Ah, memories...
  18137.  
  18138. To answer your question, somewhat longwindedly, since this Question is
  18139. Asked so Frequently :-) ...
  18140.  
  18141. Zmodem is optimized for speed on the assumption that it has a clear 8-bit
  18142. transparent channel with no blockages (small buffers, etc), and so, out of
  18143. the box, when it works it goes fast.  The tradeoff is that it often does
  18144. not work at all, in which case you have to configure it in various ways --
  18145. escaping of control characters, changing window size, etc.  In some cases
  18146. it can't be made to work at all, either because of the nature of the
  18147. connection, or because of one or both of the computers on the two ends.
  18148.  
  18149. Kermit, on the other hand, is configured to work -- i.e. transfer files --
  18150. out of the box, even under hostile conditions.  By default, it does not 
  18151. assume that control characters pass through transparently, nor that large
  18152. buffers are available.  It does not even assume a full-duplex connection.
  18153. The tradeoff is speed.
  18154.  
  18155. In a perfect world, there would be no tradeoffs, but the world is far from
  18156. perfect.  7-bit transmission is still extremely common, small buffers are
  18157. very common, even in modern terminal servers and other communications
  18158. processors, flow control is rarely implemented correctly and effectively,
  18159. telephone lines are still noisy, and we still have a bewildering array
  18160. of communication methods needed for accessing different kinds of hosts and
  18161. services.  Most PCs are still shipped with non-buffered UARTs; many PCs
  18162. have interrupt conflicts, noisy buses, etc; many modern modems are buggy.
  18163. The list goes on.  This is by way of demonstrating that Kermit's default
  18164. tuning is not crazy, and goes a long way towards explaining its justified
  18165. reputation for dependability.
  18166.  
  18167. Unfortunately, because of the tradeoffs necessary to achieve its
  18168. reliability, Kermit has a reputation for slowness:
  18169.  
  18170.   Yes, Kermit transfers are slow if you use the default tuning.
  18171.  
  18172. However, you can make Kermit go as fast the communication path will permit
  18173. by changing a few parameters.  But first, here are some general principles
  18174. that apply to all communications software:
  18175.  
  18176.  1. Ensure that you have an effective means of flow control enabled at
  18177.     every juncture along the communication path (this applies to any file
  18178.     transfer protocol).  For example, when using high-speed,
  18179.     error-correcting modems, you should use some form of hardware flow
  18180.     control, most commonly RTS/CTS.  You have to tell the software to use
  18181.     it, AND you have to tell the modem to use it too -- if the flow
  18182.     control methods of the PC and the modem do not agree, then data will
  18183.     be lost.
  18184.  
  18185.  2. If your modem is capable of data compression, use it.  Fix the
  18186.     interface speed of the software to four times the connection speed if
  18187.     possible -- e.g. for a V.32bis 14400 bps connection, use an interface
  18188.     speed of 57600, or else the modem's compression capacity is likely to
  18189.     be wasted.
  18190.  
  18191.  3. On network connections (e.g. TCP/IP), it is usually best to turn off
  18192.     flow control entirely, because the underlying networking method
  18193.     supplies fully effective flow control.
  18194.  
  18195. Now, to make Kermit go fast, follow these steps:
  18196.  
  18197.  1. Use real Kermit software, not the many shareware and commercial
  18198.     packages, most of whose Kermit protocol implementations lack the
  18199.     performance features listed below and/or the means for the user to
  18200.     control them.
  18201.  
  18202.  2. Use long packets.  Kermit's default packet length is 94.  You can
  18203.     increase it to a theoretical maximum of 9024.  Give the following
  18204.     command to the file receiver:
  18205.  
  18206.       SET RECEIVE PACKET-LENGTH 2000  ; (or other length)
  18207.  
  18208.     The longer you make the packets, the more efficient the file transfer
  18209.     will be... IF IT WORKS.  If you make packets longer than some buffer
  18210.     somewhere along the line, and effective flow control is lacking, the
  18211.     transfer might not work.  Also, the longer the packet, the greater
  18212.     the chance it will be hit by noise, and the longer it takes to
  18213.     retransmit.
  18214.  
  18215.  3. On full duplex connections, use sliding windows.  Sliding windows
  18216.     allow packets to be transmitted in a continuous stream, rather than
  18217.     "stop and wait" style.  The command is:
  18218.  
  18219.       SET WINDOW 4 ; (or other number)
  18220.  
  18221.     The maximum is 32 (or less, depending on the implementation).  Give
  18222.     this command to *both* Kermit programs.
  18223.  
  18224. For text files and uncompressed binary files, this should give you very
  18225. good performance -- efficiencies in the 85%-100% range.  For compressed
  18226. files, and certain other types of binary files, you can squeeze out
  18227. another 20-25% efficiency by telling Kermit not to prefix a given list of
  18228. control characters.  A typical sequence might be:
  18229.  
  18230.   SET CONTROL UNPREFIX ALL  ;  Unprefix all control characters.
  18231.   SET CONTROL PREFIX 0 1 13 129 141 ...  ; Add back prefixes for these.
  18232.  
  18233. This requires a lot of trial and error because there is no way that a
  18234. communication software program can know what characters are safe and
  18235. which ones are not on a particular connection.  For example, you might be
  18236. going through an X.25 PAD where Ctrl-P will pop you back to the PAD
  18237. prompt.  Or you might be going through a TELNET terminal server where
  18238. Ctrl-] or Ctrl-^ will pop you back to the terminal server prompt.  Or the
  18239. connection might be using Xon/Xoff flow control, and sending Ctrl-S as a
  18240. data character might freeze the connection.
  18241.  
  18242. If you take all of these steps, using optimal packet lengths, window
  18243. sizes, and unprefixing, you should achieve transfer rates comparable to,
  18244. and often better than, the Zmodem implementations that you find in Telix,
  18245. Procomm, and similar shareware and commercial packages; for example, on a
  18246. V.32bis/V.42/V.42bis connection, RTS/CTS flow control, no parity, 57600
  18247. bps interface speed:
  18248.  
  18249.   Typical text files:        3500 cps (characters per second)
  18250.   Uncompressed binary files: 2400 cps (e.g. PC KERMIT.EXE)
  18251.   Compressed files:          1600 cps (e.g. ZIP files)
  18252.  
  18253. These figures come from Kermit News #5, June 1993, which is available via
  18254. anonymous ftp from kermit.columbia.edu, directory kermit/e, file
  18255. newsn5.txt (ASCII) or newsn5.ps (PostScript).  Also see newsn4.txt (.ps)
  18256. for a detailed discussion of long packets and sliding windows.
  18257.  
  18258. Kermit software is available via anonymous ftp to kermit.columbia.edu
  18259. [128.59.39.2], directory kermit and its subdirectories.  There are
  18260. literally hundreds of different Kermit programs for *almost* every machine
  18261. and operating system imaginable.  The most widely used Kermit programs
  18262. are:
  18263.  
  18264.  . MS-DOS Kermit 3.13 for DOS and Windows.
  18265.    No, this is not a native Windows application, but yes, this
  18266.    is the software we recommend for Windows.
  18267.    File: kermit/bin/msvib.zip.
  18268.  
  18269.  . C-Kermit 5A(189) for UNIX, VMS, OS/2, AOS/VS, the Commodore Amiga, etc.
  18270.    UNIX: kermit/bin/cku190.tar.Z.
  18271.    VMS: Get kermit/b/ckvaaa.hlp, read it, take it from there.
  18272.    Others: Get kermit/b/ckaaaa.hlp, read it, take it from there.
  18273.  
  18274.  . IBM Mainframe Kermit-370 for VM/CMS, MVS/TSO, CICS, and MUSIC.
  18275.    kermit/b/ik*.*.
  18276.  
  18277. - Frank
  18278.  
  18279. From news@columbia.edu Sun Oct  2 18:17:30 1994
  18280. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA03383
  18281.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 2 Oct 1994 14:17:33 -0400
  18282. Received: by apakabar.cc.columbia.edu id AA10583
  18283.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 2 Oct 1994 14:17:32 -0400
  18284. Path: news.columbia.edu!usenet
  18285. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  18286. Newsgroups: comp.protocols.kermit.misc
  18287. Subject: Policy, final word
  18288. Date: 2 Oct 1994 18:17:30 GMT
  18289. Organization: Columbia University
  18290. Lines: 21
  18291. Message-Id: <36mtfq$aak@apakabar.cc.columbia.edu>
  18292. Nntp-Posting-Host: fdc.cc.columbia.edu
  18293. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  18294.  
  18295. Signing off from this discussion:
  18296.  
  18297.  a. Apologies to anyone I have offended, and to anyone else who might
  18298.     have been offended by anything that has passed through this newsgroup
  18299.     even if it wasn't offensive.
  18300.  
  18301.  b. If you want to use Kermit softwre, go ahead and use it.  Same as
  18302.     always.  No change.
  18303.  
  18304.  c. If you want to *sell* Kermit software, get in touch with us and we'll
  18305.     talk about it.  Same as always, no change.  (Lest I have misspoken
  18306.     again, then let me rephrase: If you want to sell an object or other
  18307.     entity that has Kermit software engraved, embedded, inscribed, or 
  18308.     otherwise adhering to it or imprinted upon its molecular structure,
  18309.     in a fashion that is retrievable or usable by your customers or
  18310.     clients, also please consult with us first.)
  18311.  
  18312.  d. If all you want is an argument, there is a great Monty Python skit
  18313.     I can recommend ... :-)
  18314.  
  18315. - Frank
  18316.  
  18317. From news@columbia.edu Sun Oct  2 19:00:45 1994
  18318. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA07005
  18319.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 2 Oct 1994 15:12:35 -0400
  18320. Received: by apakabar.cc.columbia.edu id AA13923
  18321.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 2 Oct 1994 15:12:34 -0400
  18322. Path: news.columbia.edu!panix!MathWorks.Com!news.duke.edu!concert!news.wfu.edu!matthews
  18323. From: matthews@wfu.edu (Rick Matthews)
  18324. Newsgroups: comp.protocols.kermit.misc
  18325. Subject: Re: Are Columbia U's files still avial for FTP?
  18326. Date: 2 Oct 1994 19:00:45 GMT
  18327. Organization: Wake Forest University
  18328. Lines: 23
  18329. Message-Id: <36n00t$pp5@eis.wfunet.wfu.edu>
  18330. References: <dmurdoch.1325.2E8C5321@mast.queensu.ca> <36hsus$qtn@apakabar.cc.columbia.edu> <36l7j2$6uh@lynx.unm.edu>
  18331. Nntp-Posting-Host: acg60.wfunet.wfu.edu
  18332. X-Newsreader: TIN [version 1.2 PL2]
  18333. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  18334.  
  18335. Denis McKeon (galway@chtm.eece.unm.edu) wrote:
  18336. : The CDROM entrepreneur and the software developer/supporters
  18337. : are faced with negotiating issues like those Frank has outlined
  18338. : (who gets how much from CDROM sales, how to recover support costs,
  18339. : whether focus on support or on development.)  Like it or not,
  18340. : those issues and the various contracts cost money.
  18341.  
  18342. : The bottom line is that with that additional cost threshold, it is more
  18343. : difficult to find an exploitable niche.
  18344.  
  18345. I don't think we need to worry about what would happen to the
  18346. PD/shareware CD-ROM vendors if "everything like Kermit" had similar
  18347. distribution policies.  There simply isn't that much stuff out there
  18348. that is high quality, free, complex enough to require substantial
  18349. support, and well supported, which is my definition of "like Kermit."
  18350.  
  18351. And even if there was, it's the developers' call to make.
  18352.  
  18353. --
  18354. Rick Matthews                     matthews@wfu.edu            Ham radio:
  18355. Wake Forest University            910-759-5340   (Voice)      WA4GSP
  18356. Winston-Salem, NC 27109-7507      910-759-6142   (FAX)
  18357.  
  18358.  
  18359. From news@columbia.edu Sun Oct  2 18:40:51 1994
  18360. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA07457
  18361.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 2 Oct 1994 15:22:41 -0400
  18362. Received: by apakabar.cc.columbia.edu id AA14738
  18363.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 2 Oct 1994 15:22:40 -0400
  18364. Newsgroups: comp.protocols.kermit.misc
  18365. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!swrinde!elroy.jpl.nasa.gov!decwrl!netcomsv!ix.netcom.com!netcom.com!jhurwit
  18366. From: jhurwit@netcom.com (Jeffrey Hurwit)
  18367. Subject: Re: SLOW downloads
  18368. Message-Id: <jhurwitCx26K5.26E@netcom.com>
  18369. Organization: Organization?  What organization?
  18370. X-Newsreader: TIN [version 1.2 PL1]
  18371. References: <36mmu9$qj0@news.iastate.edu>
  18372. Date: Sun, 2 Oct 1994 18:40:51 GMT
  18373. Lines: 22
  18374. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  18375.  
  18376. In article <36mmu9$qj0@news.iastate.edu>, 
  18377. WhoWantsTaKnow (billmaly@iastate.edu) wrote:
  18378.  
  18379. >I use KERMIT as my primary(only) comm. software, mostly to tie into my
  18380. >University's computer(internet) and to download files. The problem I
  18381. >have, even when connecting at speeds of 9600 and above, my download time
  18382. >is so slow. It takes more than an hour to dowload a 1 meg file. Is this
  18383. >normal, and if not, what can be done to fix it? Thanks!
  18384.  
  18385.     o If the file is not already compressed, compress it.
  18386.     o Use (reasonably) long packets-- 1K-2K works well.
  18387.     o Use sliding windows (3-5 usually works well).
  18388.     o Unprefix as many control characters as you can (this requires
  18389.       experimentation, but in general you need to prefix OS-sensitive
  18390.       characters such as ^C (DOS and Unix), ^Z (Unix), and also ^M
  18391.       (CR), ^J (LF), ^A (start of packet), etc).
  18392.     o Get the latest Kermit software; older versions don't support
  18393.       these features.
  18394.     o Read the help files and spend some time experimenting to find out
  18395.       how to make and optimize these settings.
  18396.  
  18397.                         Jeff
  18398.  
  18399. From news@columbia.edu Sun Oct  2 19:12:33 1994
  18400. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA07882
  18401.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 2 Oct 1994 15:31:15 -0400
  18402. Received: by apakabar.cc.columbia.edu id AA15354
  18403.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 2 Oct 1994 15:31:14 -0400
  18404. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!pipex!sunic!news.funet.fi!zippo.uwasa.fi!uwasa.fi!ts
  18405. From: ts@uwasa.fi (Timo Salmi)
  18406. Newsgroups: comp.protocols.kermit.misc
  18407. Subject: Re: Please explain Kermit's copyright
  18408. Date: 2 Oct 1994 19:12:33 GMT
  18409. Organization: University of Vaasa
  18410. Lines: 29
  18411. Message-Id: <36n0n1$4uo@zippo.uwasa.fi>
  18412. References: <36lpdt$ns4@cruella.ee.pdx.edu> <36ml93$1ja@apakabar.cc.columbia.edu>
  18413. Nntp-Posting-Host: uwasa.fi
  18414. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  18415.  
  18416. In article <36ml93$1ja@apakabar.cc.columbia.edu> fdc@fdc.cc.columbia.edu (Frank da Cruz) writes:
  18417. :In article <36lpdt$ns4@cruella.ee.pdx.edu> rkwee@ee.pdx.edu (Roland Kwee)
  18418. :writes:
  18419. :> 3) In the case of the Simtel/Garbo CD's, did I understand it correcly
  18420. :> that Columbia told them that the distribution of Kermit required an
  18421. :> agreement with Columbia?
  18422. :>
  18423. :More to the point: the copyright notice says that, and the copyright
  18424. :notice was overlooked.
  18425.  
  18426. Exactly.  That is true.  And, as you know, as responsible net
  18427. citizens we remedied the situation at our end immediately when we
  18428. realized the conditions.  I am *NOT* objecting, but the sadly funny
  18429. part is that the more responsibly one acts the more often one gets
  18430. bitten.  I am not changing that, though.
  18431.  
  18432. :Who on this planet has suffered from how we conduct our business?  Now you
  18433. :want us to bring in the lawyers and accountants?
  18434.  
  18435. Frank, on the lighter side of things.  Do you realize that I *AM* an
  18436. accountant.  Perhaps it explains everything :-). 
  18437.  
  18438.    All the best, Timo
  18439.  
  18440. ..................................................................
  18441. Prof. Timo Salmi      Co-moderator of comp.archives.msdos.announce
  18442. Moderating at garbo.uwasa.fi anonymous FTP  archives  128.214.87.1
  18443. Faculty of Accounting & Industrial Management; University of Vaasa
  18444. Internet: ts@uwasa.fi   BBS +(358)-61-3170972; FIN-65101,  Finland
  18445.  
  18446. From news@columbia.edu Sun Oct  2 22:34:46 1994
  18447. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA18457
  18448.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 2 Oct 1994 18:45:44 -0400
  18449. Received: by apakabar.cc.columbia.edu id AA27729
  18450.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 2 Oct 1994 18:45:42 -0400
  18451. Newsgroups: comp.protocols.kermit.misc
  18452. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!library.ucla.edu!agate!msuinfo!harbinger.cc.monash.edu.au!bunyip.cc.uq.oz.au!janus.cat.csiro.au!grl
  18453. From: grl@janus.cat.csiro.au (Greg Lehmann)
  18454. Subject: Re: vt220 mode in OS/2 ckermit 1.90 beta
  18455. Message-Id: <1994Oct2.223446.20598@janus.cat.csiro.au>
  18456. Organization: CSIRO Queensland Centre for Advanced Technologies
  18457. References: <1994Oct2.035230.5054@janus.cat.csiro.au> <36mi9l$s07@apakabar.cc.columbia.edu> <36mmc6$2ml@apakabar.cc.columbia.edu>
  18458. Date: Sun, 2 Oct 94 22:34:46 GMT
  18459. Lines: 81
  18460. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  18461.  
  18462. jaltman@watsun.cc.columbia.edu (Jeffrey Altman) writes:
  18463.  
  18464. >In article <36mi9l$s07@apakabar.cc.columbia.edu>,
  18465. >Frank da Cruz <fdc@fdc.cc.columbia.edu> wrote:
  18466. >>lIn article <1994Oct2.035230.5054@janus.cat.csiro.au>
  18467. >>grl@janus.cat.csiro.au (Greg Lehmann) writes:
  18468. >>
  18469. >>> I have read the manuals but am afraid the terminology does me in. I have
  18470. >>> a wordperfect document on a sun and want to edit it on my pc emulating a
  18471. >>> vt220. It appears that the character sets are stuffed up because the
  18472. >>> accents are not working properly. It was originally entered into wp on a
  18473. >>> vt220 and 1now I need to change a few things, without access to a real
  18474. >>> vt220 anymore.  The document is in french.
  18475. >>>
  18476. >>It all works, but C-Kermit is not a mind reader.  French can be represented
  18477. >>by at least the following character sets on the host:
  18478. >>
  18479. >>  ISO 646 French national version (7-bit)
  18480. >>  The VTxxx Canadian French "NRC" (7-bit)
  18481. >>  ISO 8859-1 Latin Alphabet 1 (8-bit)
  18482. >>  DEC Multinational Character set (8-bit)
  18483. >>  Data General International (8-bit)
  18484. >>  Hewlett-Packard Roman8 (8-bit)
  18485. >>  NeXT Multinational (8-bit)
  18486. >>
  18487. >> ... to name a few.  Kermit understands all of these, but you have to tell
  18488. >>it which one to use.  The comand is SET TERMINAL CHARACTER-SET.  Come to
  18489.  
  18490. >This part is correct.  Word Perfect exists on the Sun as a Sun executable.
  18491. >There was no file transfer.  So don't worry about the IBM code pages.
  18492.  
  18493. I did
  18494.  
  18495. SET TERM CHAR FRENCH
  18496. SET TERM BYTE 8
  18497.  
  18498. and checked with show term after starting kermit
  18499.  
  18500. >>Secondly, if the file is encoded in an 8-bit character you have to make
  18501. >>sure that you have opened up an 8-bit connection to the Sun.  Tell
  18502. >>C-Kermit to SET TERMINAL BYTESIZE 8.  You might also have to tell the Sun
  18503. >>to "stty pass8".  
  18504.  
  18505. >This is accurate.
  18506.  
  18507. on the sun (sunos 4.1.3) I did an (which was something I hadn't tried before)
  18508.  
  18509. stty pass8
  18510.  
  18511. >>You also have to be using an 8-bit clean editor on the
  18512. >>Sun, such as EMACS 19 or Mule.  EMACS 18 won't do it.  I don't know about
  18513. >>VI, but I doubt it.
  18514.  
  18515. >Again.  Don't worry about this.  You are using Word Perfect as your editor.
  18516.  
  18517. >>> The first thing I notice is
  18518. >>> that even the line graphics don't work, although they do when kermit is
  18519. >>> in vt102 mode. Does anyone know how to get it working?
  18520. >>>
  18521. >>There was a bug in OS/2 C-Kermit in some of the 5A(190) Alphas and Betas,
  18522. >>now fixed.  Line graphics work fine in the copy that you will find on
  18523. >>kermit.columbia.edu, directory kermit/test/bin, file cku190.zip.
  18524.  
  18525.  
  18526. I only got the last one from there about 1 week ago.
  18527. Still, after all these suggestions, the accents are wrong and there is no
  18528. line graphics box around the WordPerfect and Version 5.1 message at
  18529. startup. Instead there are J's and K's etc.
  18530.  
  18531.  
  18532. >Just set the character set to an appropriate one.  And us the Updates 
  18533. >command to view the CKERMIT.INF file.  Look up the Compose command which
  18534. >will allow you to easily enter all of the accented characters.
  18535.  
  18536.  
  18537. Thanks for the help so far but have you any other ideas on what to try?
  18538. -- 
  18539. Greg Lehmann,
  18540. CSIRO Division of Manufacturing Technology,   Telephone: +61 7 212 4537
  18541. P.O. Box 883, Kenmore, QLD 4069, Australia.   Facsimile: +61 7 212 4681
  18542. 2643 Moggill Rd., Pinjarra Hills, QLD 4069.   Internet:  grl@brb.dmt.csiro.au
  18543.  
  18544. From news@columbia.edu Sun Oct  2 23:11:38 1994
  18545. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA19891
  18546.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 2 Oct 1994 19:11:40 -0400
  18547. Received: by apakabar.cc.columbia.edu id AA29317
  18548.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 2 Oct 1994 19:11:39 -0400
  18549. Path: news.columbia.edu!usenet
  18550. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  18551. Newsgroups: comp.protocols.kermit.misc
  18552. Subject: Re: vt220 mode in OS/2 ckermit 1.90 beta
  18553. Date: 2 Oct 1994 23:11:38 GMT
  18554. Organization: Columbia University
  18555. Lines: 22
  18556. Message-Id: <36nena$sk1@apakabar.cc.columbia.edu>
  18557. References: <1994Oct2.223446.20598@janus.cat.csiro.au>
  18558. Nntp-Posting-Host: fdc.cc.columbia.edu
  18559. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  18560.  
  18561. In article <1994Oct2.223446.20598@janus.cat.csiro.au> grl@janus.cat.csiro.au  
  18562. (Greg Lehmann) writes:
  18563. > I did:
  18564. > SET TERM CHAR FRENCH
  18565. > SET TERM BYTE 8
  18566. But how do you know the character-set is "french"?  How do you know it
  18567. is not Latin-1, or DEC-MCS, or one of the others?  Note that "french"
  18568. is a 7-bit set, so you don't need to SET TERM BYTE 8 in order to use it.
  18569. Ditto for "stty pass8" on the Sun.
  18570.  
  18571. Why don't we take this offline -- please send me a message containing:
  18572.  
  18573.  . The exact Kermit version, e.g. 5A(190) Beta.23 18 Sep 94.
  18574.  . The exact sequence of commands you issued.
  18575.  . A uuencoded piece of the file in question so I can figure out
  18576.    which character-set it is encoded in.
  18577.  
  18578. Thanks.
  18579.  
  18580. - Frank <fdc@columbia.edu>
  18581.  
  18582. From news@columbia.edu Sun Oct  2 23:54:37 1994
  18583. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA21802
  18584.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 2 Oct 1994 19:54:51 -0400
  18585. Received: by apakabar.cc.columbia.edu id AA02338
  18586.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 2 Oct 1994 19:54:50 -0400
  18587. Path: news.columbia.edu!panix!ddsw1!redstone.interpath.net!mercury.interpath.net!not-for-mail
  18588. From: puff@mercury.interpath.net (Pat Fogarty)
  18589. Newsgroups: comp.protocols.kermit.misc
  18590. Subject: Re: Columbia University's Kermit copyright
  18591. Date: 2 Oct 1994 19:54:37 -0400
  18592. Organization: Interpath -- Public Access UNIX for North Carolina
  18593. Lines: 15
  18594. Message-Id: <36nh7t$gbj@mercury.interpath.net>
  18595. References: <9409300557.AA12036@simtel.coast.net> <36h490$9hc@apakabar.cc.columbia.edu> <36kaa4$lmm@knot.queensu.ca>
  18596. Nntp-Posting-Host: mercury.interpath.net
  18597. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  18598.  
  18599. It seems to me that if the principals in this brouhaha can agree to 
  18600. respect each other's positions, all the rest of us should do likewise. 
  18601.  
  18602. As far as folks without ftp access, there's usually a free BBS around 
  18603. with it. Or email ftp. Or break down and buy a disk from Columbia. It's 
  18604. not like there's a new version out three times a year.
  18605.  
  18606.  
  18607. My .02; you mileage may vary....
  18608.  
  18609.  
  18610. Pat
  18611.  
  18612. -- 
  18613. Pat Fogarty    puff@mercury.interpath.net    pff@shell.portal.com
  18614.  
  18615. From news@columbia.edu Mon Oct  3 02:52:31 1994
  18616. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA00690
  18617.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 2 Oct 1994 23:12:34 -0400
  18618. Received: by apakabar.cc.columbia.edu id AA15252
  18619.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 2 Oct 1994 23:12:33 -0400
  18620. Path: news.columbia.edu!panix!MathWorks.Com!news.kei.com!ub!ns.potsdam.edu!news.potsdam.edu!nelson
  18621. From: nelson@crynwr.crynwr.com (Russell Nelson)
  18622. Newsgroups: comp.protocols.kermit.misc
  18623. Subject: Re: Which ethernet card for MS-Kermit?
  18624. Date: 03 Oct 1994 02:52:31 GMT
  18625. Organization: Crynwr Software
  18626. Lines: 19
  18627. Message-Id: <NELSON.94Oct2225231@crynwr.crynwr.com>
  18628. References: <36el10$5hq@xmission.xmission.com>
  18629. Nntp-Posting-Host: nh2.potsdam.edu
  18630. In-Reply-To: fozz@xmission.com's message of 29 Sep 1994 09:04:00 -0600
  18631. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  18632.  
  18633. In article <36el10$5hq@xmission.xmission.com> fozz@xmission.com (Fozziliny Moo) writes:
  18634.  
  18635.    Is an NE2000 compatible card going to work for me? Then do I just
  18636.    load IPX? Or do I use a different driver software?  correctly, upon
  18637.    knowing the software interrupt of the device driver I can just go
  18638.    into MS-Kermit and say SET TCP/IP PACKET-DRIVER-INTERRUPT \xXX.
  18639.  
  18640. It's not even that hard.  Just install a packet driver.  Put it at
  18641. 0x7e (I've never heard any complaints about conflicts at that
  18642. interrupt).  So for the NE2000, you'd say "ne2000 0x7e 3 0x300".  Then
  18643. set Kermit up to use TCP/IP (and you don't even need the above command
  18644. -- it's only used if you have multiple packet drivers), and whooosh,
  18645. you're up.
  18646.  
  18647. --
  18648. -russ <nelson@crynwr.com>    http://www.crynwr.com/crynwr/nelson.html
  18649. Crynwr Software   | Crynwr Software sells packet driver support | ask4 PGP key
  18650. 11 Grant St.      | +1 315 268 1925 (9201 FAX)  | What is thee doing about it?
  18651. Potsdam, NY 13676 | LPF member - ask me about the harm software patents do.
  18652.  
  18653. From news@columbia.edu Mon Oct  3 08:04:37 1994
  18654. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA14438
  18655.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 3 Oct 1994 04:53:05 -0400
  18656. Received: by apakabar.cc.columbia.edu id AA00515
  18657.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 3 Oct 1994 04:53:04 -0400
  18658. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!EU.net!sun4nl!philapd!apdnews!taren2la.apd.dec.com!groot
  18659. From: groot@apd.dec.com (Henk de Groot)
  18660. Newsgroups: comp.protocols.kermit.misc
  18661. Subject: Re: Please explain Kermit's copyright
  18662. Message-Id: <groot.781171477@taren2la.apd.dec.com>
  18663. Date: 3 Oct 94 08:04:37 GMT
  18664. References: <36lpdt$ns4@cruella.ee.pdx.edu> <36ml93$1ja@apakabar.cc.columbia.edu>
  18665. Sender: news@apd.dec.com
  18666. Reply-To: groot@apd.dec.com (Henk de Groot)
  18667. Lines: 58
  18668. X-Disclaimer: This opinion is mine alone
  18669. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  18670.  
  18671. In <36ml93$1ja@apakabar.cc.columbia.edu> fdc@fdc.cc.columbia.edu (Frank da Cruz) writes:
  18672. > . Columbia gets no income.
  18673. > . Real Kermit software loses "market share".
  18674. > . The Kermit implementations in many of these programs give
  18675. >   Kermit a bad name.
  18676. > . These people *are* making money from Kermit -- Look at all the
  18677. >   postings on the many newsgroups from people talking about using
  18678. >   Kermit in <commercial-or-shareware-package-of-your-choice>.  Who
  18679. >   is to say the presence of the word "Kermit" on their package
  18680. >   has not affected their sales?
  18681. > . We (Columbia) get countless tech support questions from users of
  18682. >   these products.  Some of the vendors even go so far as to tell
  18683. >   their customers: "Kermit problem? Call Columbia."
  18684.  
  18685. Let I start with saying that I don't understand this argument. Frank
  18686. stated that they have to distribute copies to het some income. Still he
  18687. allows the software on FTP and also maintains the claim that the software is
  18688. free, also fine. CDROM whould make the distribution too broad without
  18689. generating income; also fine.
  18690.  
  18691. Now if I get Kermit from the FTP archive at Columbia and put it on a local
  18692. BBS (which is permitted as far as I understood the copyright). Every copy
  18693. from the BBS doesn't generate any income. This is also the case if I give
  18694. a copy to a friend (and he will pass a copy to his friends because kermit is
  18695. great!). The distribution as it is now is a pyramid sceme, generating a lot
  18696. of copies without income for Columbia.
  18697.  
  18698. Frank explicity prohibited distribution on CDROM with the argument that it
  18699. will not generate income. If that is the goal then excluding CDROM is not
  18700. enough to accomplish that. The only way to limit copying without income is:
  18701.  
  18702. a) You either get it directly from an FTP site on internet.
  18703. b) Or you get it by mail order from Columbia.
  18704.  
  18705. So no more copying for friends or distribution through BBSses - this will
  18706. surely limit the number of copies (and will make it almost impossible in
  18707. Europe to get it unless you are connected to Internet or know exactly where
  18708. to write to to order it).
  18709.  
  18710. But the argument I hear is that the distribution policy is not changed so you
  18711. will allow the generation of copies without income as long as it is not
  18712. through CDROM - this is the part I don't understand. Do CDROMs contribute so
  18713. much to the distribution (and use!) of kermit that it is worthwhile to make
  18714. an exception (and make it difficult for us all)? I assume you'll say yes but
  18715. frankly I have my doubts.
  18716.  
  18717. All I can say is that I came to know kermit trough Garbo; Timo has a lot of
  18718. tools for kermit on his system (some of which he created himself) and that's
  18719. what caught my attention. We are now considering use of Kermit in a large
  18720. project (which we will negotiate with Columbia and pay for of couse) so maybe
  18721. the copy of your software on Garbo will pay off in the end.
  18722.  
  18723. Henk.
  18724.  
  18725. --
  18726.   /   / de Groot  Dep: ALD2          | E-Mail: groot@apd.dec.com
  18727.  /---/ __  __  /  Tel: +31 55 432104 | Corp: Digital Equipment Corporation
  18728. /   / (-_ / / /(  Loc: FP-B09        | Site: Apeldoorn, The Netherlands
  18729.  
  18730. From news@columbia.edu Mon Oct  3 09:40:43 1994
  18731. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA16167
  18732.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 3 Oct 1994 05:51:24 -0400
  18733. Received: by apakabar.cc.columbia.edu id AA02580
  18734.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 3 Oct 1994 05:51:23 -0400
  18735. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!math.ohio-state.edu!jussieu.fr!univ-lyon1.fr!swidir.switch.ch!newsfeed.ACO.net!Austria.EU.net!EU.net!uunet!tymix.Tymnet.COM!tardis.Tymnet.COM!tardis.Tymnet.COM!not-for-mail
  18736. From: jms@tardis.Tymnet.COM (Joe Smith)
  18737. Newsgroups: comp.protocols.kermit.misc
  18738. Subject: Re: kermit packets past 9024 barrier??
  18739. Date: 3 Oct 1994 02:40:43 -0700
  18740. Organization: MCI Data Services, TYMNET Global Network Operations
  18741. Lines: 29
  18742. Message-Id: <36ojir$t34@tardis.Tymnet.COM>
  18743. References: <367e23$d01@news.iastate.edu> <1994Sep26.172014.27900@cc.usu.edu>
  18744. Nntp-Posting-Host: tardis.tymnet.com
  18745. Summary: 9024 divided by number of windows?
  18746. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  18747.  
  18748. In article <1994Sep26.172014.27900@cc.usu.edu> jrd@cc.usu.edu (Joe Doupnik) writes:
  18749. >> Any way to increase packet sizes past 9024??
  18750. >    Read up on Columbia Kermits, discover sliding windows. 31 window
  18751. >slots times 9KB per slot/packet = 279KB of stuff to be held pending ack.
  18752.  
  18753. Is that something new with version 3.14 or 5A(190)?
  18754.  
  18755. The versions of Kermit I've been using limit the buffer to 9024 bytes
  18756. total, to be divided between the windows.
  18757.  
  18758.     tardis% kermit
  18759.     C-Kermit 5A(189), 30 June 93, SunOS 4.1 (BSD)
  18760.     Type ? or HELP for help
  18761.     C-Kermit>set window 31
  18762.      Adjusting receive packet-length to 286 for 31 window slots
  18763.     C-Kermit>quit
  18764.  
  18765. On a related subject, I have found that when going through TYMNET, I can
  18766. get full speed by setting the number of window slots to anything above 1.
  18767. In particular, when downloading files from a Sun UNIX host to my Amiga
  18768. at home, SET WINDOW 2 is sufficient to keep the receive light flashing
  18769. continuously.
  18770.  
  18771.     -Joe
  18772. -- 
  18773. Joe Smith        MCI Data Services, TYMNET Global Network Operations (Vnet 854)
  18774. <jms@tymnet.com>    2560 N 1st St, MS-F2, San Jose, CA 95131     (408)922-6220
  18775. CA license plate: "POPJ P,"  36-bits forever! (4 Tymshare PDP-10s still up!)
  18776. Humorous disclaimer: "My Amiga 3000 speaks for me."
  18777.  
  18778. From news@columbia.edu Mon Oct  3 12:08:53 1994
  18779. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA18475
  18780.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 3 Oct 1994 08:08:55 -0400
  18781. Received: by apakabar.cc.columbia.edu id AA07897
  18782.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 3 Oct 1994 08:08:54 -0400
  18783. Path: news.columbia.edu!usenet
  18784. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  18785. Newsgroups: comp.protocols.kermit.misc
  18786. Subject: Re: Which ethernet card for MS-Kermit?
  18787. Date: 3 Oct 1994 12:08:53 GMT
  18788. Organization: Columbia University
  18789. Lines: 42
  18790. Message-Id: <36os8l$7mn@apakabar.cc.columbia.edu>
  18791. References: <NELSON.94Oct2225231@crynwr.crynwr.com>
  18792. Nntp-Posting-Host: fdc.cc.columbia.edu
  18793. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  18794.  
  18795. In article <NELSON.94Oct2225231@crynwr.crynwr.com> nelson@crynwr.crynwr.com  
  18796. (Russell Nelson) writes:
  18797. > In article <36el10$5hq@xmission.xmission.com> fozz@xmission.com (Fozziliny  
  18798. Moo) writes:
  18799. >    Is an NE2000 compatible card going to work for me? Then do I just
  18800. >    load IPX? Or do I use a different driver software?  correctly, upon
  18801. >    knowing the software interrupt of the device driver I can just go
  18802. >    into MS-Kermit and say SET TCP/IP PACKET-DRIVER-INTERRUPT \xXX.
  18803. > It's not even that hard.  Just install a packet driver.  Put it at
  18804. > 0x7e (I've never heard any complaints about conflicts at that
  18805. > interrupt).  So for the NE2000, you'd say "ne2000 0x7e 3 0x300".  Then
  18806. > set Kermit up to use TCP/IP (and you don't even need the above command
  18807. > -- it's only used if you have multiple packet drivers), and whooosh,
  18808. > you're up.
  18809. >
  18810. Thanks, Russ.
  18811.  
  18812. And as Joe pointed, we are absolutely not in the business of recommending
  18813. hardware.  But...
  18814.  
  18815. It migh be a useful exercise if those of you who are using MS-DOS Kermit's
  18816. built-in TCP/IP stack over a network board (not a serial port thru SLIP)
  18817. drop a note to kermit@columbia.edu listing:
  18818.  
  18819. PC hardware and OS and OS version
  18820. Network board make and model
  18821. Netword board driver(s) and version(s)
  18822.  
  18823. so we can compile a list of combinations that are known to work.  While
  18824. this list will not comprise any kind of recommendation, it will still be
  18825. useful.
  18826.  
  18827. And of course if you have a board and/or driver that does not work with
  18828. Kermit, let us know too.  We'll try to help you get it going, and if the
  18829. combination is hopeless (we don't know of any like this), that's useful
  18830. information too.
  18831.  
  18832. Thanks.
  18833.  
  18834. - Frank
  18835.  
  18836. From news@columbia.edu Mon Oct  3 12:15:47 1994
  18837. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA18746
  18838.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 3 Oct 1994 08:15:51 -0400
  18839. Received: by apakabar.cc.columbia.edu id AA10929
  18840.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 3 Oct 1994 08:15:49 -0400
  18841. Path: news.columbia.edu!usenet
  18842. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  18843. Newsgroups: comp.protocols.kermit.misc
  18844. Subject: Re: kermit packets past 9024 barrier??
  18845. Date: 3 Oct 1994 12:15:47 GMT
  18846. Organization: Columbia University
  18847. Lines: 24
  18848. Message-Id: <36oslj$ako@apakabar.cc.columbia.edu>
  18849. References: <36ojir$t34@tardis.Tymnet.COM>
  18850. Nntp-Posting-Host: fdc.cc.columbia.edu
  18851. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  18852.  
  18853. In article <36ojir$t34@tardis.Tymnet.COM> jms@tardis.Tymnet.COM (Joe Smith)  
  18854. writes:
  18855. > In article <1994Sep26.172014.27900@cc.usu.edu> jrd@cc.usu.edu (Joe Doupnik)  
  18856. writes:
  18857. > >> Any way to increase packet sizes past 9024??
  18858. > >Read up on Columbia Kermits, discover sliding windows. 31 window
  18859. > >slots times 9KB per slot/packet = 279KB of stuff to be held pending ack.
  18860. > Is that something new with version 3.14 or 5A(190)?
  18861. > The versions of Kermit I've been using limit the buffer to 9024 bytes
  18862. > total, to be divided between the windows.
  18863. Not at all.  As Joe says, you can have 31 x 9024 packets in the pipe at
  18864. once.  In the new versions (3.14 and 5A(190)), 32 x 9024.
  18865.  
  18866. Obviously, you need the memory to hold all these packet buffers.
  18867. 32 x 9024 = 288768 bytes.  In MS-DOS Kermit, that means free physical
  18868. conventional memory.  (Yes, we considered putting packet buffers "high",
  18869. but it turns out to be a bad idea for performance reasons.)
  18870.  
  18871. In C-Kermit, you might have to give a SET BUFFERS command first, to allocate
  18872. the buffer memory.  This might seem silly to you, but there is a good reason
  18873. for it -- see the documentation.
  18874.  
  18875. - Frank
  18876.  
  18877. From news@columbia.edu Mon Oct  3 13:15:58 1994
  18878. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA22604
  18879.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 3 Oct 1994 09:16:04 -0400
  18880. Received: by apakabar.cc.columbia.edu id AA23944
  18881.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 3 Oct 1994 09:16:03 -0400
  18882. Path: news.columbia.edu!usenet
  18883. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  18884. Newsgroups: comp.protocols.kermit.misc
  18885. Subject: Re: Kermit for DOS/V (Kanji Terminal Emulation)
  18886. Date: 3 Oct 1994 13:15:58 GMT
  18887. Organization: Columbia University
  18888. Lines: 31
  18889. Message-Id: <36p06e$nbp@apakabar.cc.columbia.edu>
  18890. Nntp-Posting-Host: fdc.cc.columbia.edu
  18891. Keywords: Kanji
  18892. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  18893.  
  18894. On 20 Sep 1994, jp1ek@sunc.sheffield.ac.uk (Earl H. Kinmonth) wrote:
  18895. > Does anyone know the current state of kermit for DOS/V (the
  18896. > IBM/Microsoft dual mode version for Japanese/English)?  I have a 3.13
  18897. > beta from a site in Japan, but it has one bug that renders it almost
  18898. > unusable.  The code conversion does not work properly for Old-Jis
  18899. > coding as used by Japan's largest commercial database vendor, Nikkei
  18900. > Telecom.
  18901. >
  18902. I don't know about the 3.13 beta you have -- Kanji terminal emulation for
  18903. DOS/V might or might not be in it.  It will be in version 3.14 when it is
  18904. announced (hopefully very soon).  I sent your question to the person who
  18905. wrote the Kanji terminal support for MS-DOS Kermit and received this
  18906. response:
  18907.  
  18908. "Sorry for the delay.
  18909.  
  18910. "I don't know about the Nikkei Data Base, and unfortunately, I have
  18911. no friends who are using that DataBase.
  18912.  
  18913. "However, I got another report from someone who is using the Nikkei
  18914. Telecom DataBase, and he pointed out that Nikkei Telecom uses an
  18915. improper ESC sequence to designate the JIS X 201 character set.  This
  18916. is a well-known wrong sequence which was implemented in very very old
  18917. software, and the sequence is 'ESC ( H' which should be used to
  18918. designate the Swedish character set."
  18919.  
  18920. So it looks like the right thing to do would be to get Nikkei Telecom
  18921. to fix their character-set designating escape sequence.  If this is not
  18922. the correct answer, let me know.
  18923.  
  18924. - Frank
  18925.  
  18926. From news@columbia.edu Mon Oct  3 13:14:37 1994
  18927. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA23186
  18928.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 3 Oct 1994 09:21:27 -0400
  18929. Received: by apakabar.cc.columbia.edu id AA24245
  18930.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 3 Oct 1994 09:21:26 -0400
  18931. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!pipex!lyra.csx.cam.ac.uk!warwick!bham!news!B.A.McCauley
  18932. From: B.A.McCauley@bham.ac.uk
  18933. Newsgroups: comp.protocols.kermit.misc
  18934. Subject: Transparent kermit servers
  18935. Followup-To: comp.protocols.kermit.misc
  18936. Date: 03 Oct 1994 13:14:37 GMT
  18937. Organization: The University of Birmingham, UK.
  18938. Lines: 17
  18939. Message-Id: <B.A.MCCAULEY.94Oct3141437@wcl-l.bham.ac.uk>
  18940. Nntp-Posting-Host: wcl-l.bham.ac.uk
  18941. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  18942.  
  18943. Why is it that I have to issue local kermit commands as well as remote
  18944. ones. Would it not be possible to have the local copy of Kermit simply
  18945. respond to the start of packet characters and behave like a server at
  18946. all times?
  18947.  
  18948. Similarly would it be possible (on suitable OSs) to have the kermit
  18949. server program pass all non-kermit characters to another process via a
  18950. virtual terminal thus allowing the use of a mixture of Kermit server
  18951. commands and direct host OS interaction without the need to start the
  18952. and stop the remote server?
  18953. --
  18954.     \\   ( )   No Bullshit!   | Email: B.A.McCauley@bham.ac.uk
  18955.  .  _\\__[oo       from       | Phones: +44 121 471 3789 (home)
  18956. .__/  \\ /\@  /~)  /~[   /\/[ |  +44 121 627 2171 (voice) 2175 (fax)
  18957. .  l___\\    /~~) /~~[  /   [ | PGP-fp: D7 03 2A 4B D8 3A 05 37
  18958.  # ll  l\\  ~~~~ ~   ~ ~    ~ |         A1 93 FE EA BE E3 2A 91
  18959. ###LL  LL\\ (Brian McCauley)  | More: finger bam@wcl-rs.bham.ac.uk
  18960.  
  18961. From news@columbia.edu Mon Oct  3 13:21:55 1994
  18962. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA23881
  18963.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 3 Oct 1994 09:30:23 -0400
  18964. Received: by apakabar.cc.columbia.edu id AA24951
  18965.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 3 Oct 1994 09:30:22 -0400
  18966. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!pipex!lyra.csx.cam.ac.uk!warwick!bham!news!B.A.McCauley
  18967. From: B.A.McCauley@bham.ac.uk
  18968. Newsgroups: comp.protocols.kermit.misc
  18969. Subject: Undocumented kermit server commands?
  18970. Followup-To: comp.protocols.kermit.misc
  18971. Date: 03 Oct 1994 13:21:55 GMT
  18972. Organization: The University of Birmingham, UK.
  18973. Lines: 22
  18974. Message-Id: <B.A.MCCAULEY.94Oct3142155@wcl-l.bham.ac.uk>
  18975. Nntp-Posting-Host: wcl-l.bham.ac.uk
  18976. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  18977.  
  18978. I've looked in "Kermit, A file transfer protocol" but I cannot find
  18979. docuemntation of what the "REMOTE SET" command sends to the server.
  18980.  
  18981. It appears to send a kermit generic command (packet type "G") with a
  18982. command "S".
  18983.  
  18984. I have assumed that this is equivlent to a command "V", subcommand
  18985. "S". Am I right?
  18986.  
  18987. Is there a table anywhere that list the standard variable names
  18988. (numbers?).
  18989.  
  18990. I would go look in the source myself but I read somewhere that
  18991. because I'm incorporating support for kermit protocols into another
  18992. program I'm not allowed to even *look at* the sources!
  18993. --
  18994.     \\   ( )   No Bullshit!   | Email: B.A.McCauley@bham.ac.uk
  18995.  .  _\\__[oo       from       | Phones: +44 121 471 3789 (home)
  18996. .__/  \\ /\@  /~)  /~[   /\/[ |  +44 121 627 2171 (voice) 2175 (fax)
  18997. .  l___\\    /~~) /~~[  /   [ | PGP-fp: D7 03 2A 4B D8 3A 05 37
  18998.  # ll  l\\  ~~~~ ~   ~ ~    ~ |         A1 93 FE EA BE E3 2A 91
  18999. ###LL  LL\\ (Brian McCauley)  | More: finger bam@wcl-rs.bham.ac.uk
  19000.  
  19001. From news@columbia.edu Mon Oct  3 13:48:20 1994
  19002. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA24772
  19003.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 3 Oct 1994 09:48:22 -0400
  19004. Received: by apakabar.cc.columbia.edu id AA26185
  19005.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 3 Oct 1994 09:48:21 -0400
  19006. Path: news.columbia.edu!usenet
  19007. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  19008. Newsgroups: comp.protocols.kermit.misc
  19009. Subject: Re: Transparent kermit servers
  19010. Date: 3 Oct 1994 13:48:20 GMT
  19011. Organization: Columbia University
  19012. Lines: 29
  19013. Message-Id: <36p234$pi7@apakabar.cc.columbia.edu>
  19014. References: <B.A.MCCAULEY.94Oct3141437@wcl-l.bham.ac.uk>
  19015. Nntp-Posting-Host: fdc.cc.columbia.edu
  19016. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  19017.  
  19018. In article <B.A.MCCAULEY.94Oct3141437@wcl-l.bham.ac.uk>  
  19019. B.A.McCauley@bham.ac.uk writes:
  19020. > Why is it that I have to issue local kermit commands as well as remote
  19021. > ones. Would it not be possible to have the local copy of Kermit simply
  19022. > respond to the start of packet characters and behave like a server at
  19023. > all times?
  19024. >
  19025. Yes, it should be.  Read the release notes (.upd files) for the forthcoming
  19026. new versions of MS-DOS Kermit, C-Kermit, and IBM mainframe Kermit.
  19027.  
  19028. > Similarly would it be possible (on suitable OSs) to have the kermit
  19029. > server program pass all non-kermit characters to another process via a
  19030. > virtual terminal thus allowing the use of a mixture of Kermit server
  19031. > commands and direct host OS interaction without the need to start the
  19032. > and stop the remote server?
  19033. >
  19034. How does the server tell the difference between non-Kermit characters
  19035. and a trashed Kermit packet?
  19036.  
  19037. - Frank
  19038. x
  19039. x
  19040. x
  19041. x
  19042. x
  19043. x
  19044. x
  19045. x
  19046. x
  19047.  
  19048. From news@columbia.edu Mon Oct  3 13:50:46 1994
  19049. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA24911
  19050.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 3 Oct 1994 09:50:48 -0400
  19051. Received: by apakabar.cc.columbia.edu id AA26321
  19052.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 3 Oct 1994 09:50:47 -0400
  19053. Path: news.columbia.edu!usenet
  19054. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  19055. Newsgroups: comp.protocols.kermit.misc
  19056. Subject: Re: Undocumented kermit server commands?
  19057. Date: 3 Oct 1994 13:50:46 GMT
  19058. Organization: Columbia University
  19059. Lines: 12
  19060. Message-Id: <36p27m$pmf@apakabar.cc.columbia.edu>
  19061. References: <B.A.MCCAULEY.94Oct3142155@wcl-l.bham.ac.uk>
  19062. Nntp-Posting-Host: fdc.cc.columbia.edu
  19063. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  19064.  
  19065. In article <B.A.MCCAULEY.94Oct3142155@wcl-l.bham.ac.uk>  
  19066. B.A.McCauley@bham.ac.uk writes:
  19067. > I've looked in "Kermit, A file transfer protocol" but I cannot find
  19068. > docuemntation of what the "REMOTE SET" command sends to the server.
  19069. For now, it's still in Info-Kermit Digest V 11 # 1, 4 Jan 1990,
  19070. available on kermit.columbia.edu, directory kermit/e, file mail.90a.
  19071.  
  19072. - Frank
  19073. x
  19074. x
  19075.  
  19076.  
  19077. From news@columbia.edu Mon Oct  3 13:48:47 1994
  19078. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA28961
  19079.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 3 Oct 1994 10:48:00 -0400
  19080. Received: by apakabar.cc.columbia.edu id AA00929
  19081.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 3 Oct 1994 10:47:58 -0400
  19082. Newsgroups: comp.protocols.kermit.misc
  19083. Path: news.columbia.edu!spcuna!ritz!kudut
  19084. From: kudut@ritz.mordor.com (Ken Udut)
  19085. Subject: Re: Please explain Kermit's copyright
  19086. References: <36lpdt$ns4@cruella.ee.pdx.edu> <36ml93$1ja@apakabar.cc.columbia.edu>
  19087. Organization: Mordor International BBS - Jersey City, NJ
  19088. Date: Mon, 3 Oct 1994 13:48:47 GMT
  19089. Message-Id: <Cx3npB.74n@ritz.mordor.com>
  19090. Lines: 30
  19091. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  19092.  
  19093. Dear Frank,
  19094.  
  19095.     I've been a quiet viewer of this discussion.
  19096.  
  19097.     You have my upmost respect and admiration for Kermit, for making 
  19098. yourself available (which took more guts than I can ever imagine having), 
  19099. for sticking to your guns.
  19100.  
  19101.     I'm not much of a prayer but you have my prayers, Frank.  Kermit 
  19102. has saved me more times than I can count.  Whenever my hard drive decides 
  19103. not to work, and I need to get online to finish up a project (or to read 
  19104. news, answer mail), I pop in my emergency bootup-Kermit diskette.  Nothing
  19105. else is as reliable as Kermit.  Nothing else is as sturdy, dependable and 
  19106. nearly as marvelous as Kermit.
  19107.  
  19108. I've advocated its use by local BBS sysops so that they can impliment the 
  19109. "real" Kermit.  Most of them have purchased the manuals from the local 
  19110. Barnes & Noble so that they could make the most out of it.
  19111.  
  19112. And seeing the dedication of Frank to following his ideals, I will 
  19113. finally (finally!) purchase the documentation, as I'm at the point where 
  19114. the things I want to do I simply *can't* do without knowing more of what 
  19115. I'm doing :-)
  19116.  
  19117. You have my blessings, Frank, and the Kermit development team.
  19118.  
  19119.  
  19120. Ken
  19121. kudut@ritz.mordor.com
  19122. Listowner of Y-RIGHTS@SJUVM.BITNET - Discussion on the rights of kids/teens
  19123.  
  19124. From news@columbia.edu Mon Oct  3 13:32:32 1994
  19125. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA04063
  19126.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 3 Oct 1994 11:41:57 -0400
  19127. Received: by apakabar.cc.columbia.edu id AA05445
  19128.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 3 Oct 1994 11:41:51 -0400
  19129. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!EU.net!news.eunet.fi!KremlSun!kiae!relcom!newsserv
  19130. From: Nicolay V. Danilov <isdltd@isdltd.msk.ru>
  19131. Newsgroups: comp.protocols.kermit.misc
  19132. Subject: Where can I get SUPER KERMIT protocol description ?
  19133. Date: Mon, 03 Oct 94 17:32:32 +0400
  19134. Distribution: world
  19135. Organization: Private Person
  19136. Message-Id: <ABmV0akO23@isdltd.msk.ru>
  19137. Sender: news-service@kiae.su
  19138. Reply-To: isdltd@isdltd.msk.ru
  19139. X-Return-Path: kiae!isdltd!isdltd.msk.ru!isdltd
  19140. Lines: 4
  19141. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  19142.  
  19143.         I need a SUPER KERMIT protocol, used in Sprint Networks
  19144. desctiption and/or C source code.
  19145.  
  19146.  
  19147.  
  19148. From news@columbia.edu Mon Oct  3 16:25:08 1994
  19149. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA08771
  19150.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 3 Oct 1994 12:40:09 -0400
  19151. Received: by apakabar.cc.columbia.edu id AA10484
  19152.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 3 Oct 1994 12:40:06 -0400
  19153. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!swiss.ans.net!prodigy.com!prodigy.com!not-for-mail
  19154. From: davidsen@tmr.com
  19155. Newsgroups: comp.protocols.kermit.misc
  19156. Subject: Re: FTP Mirrors and CDROMs - again
  19157. Date: 3 Oct 1994 12:25:08 -0400
  19158. Organization: Prodigy Services
  19159. Lines: 28
  19160. Sender: davidsen@usenety1.news.prodigy.com
  19161. Message-Id: <36pb94$cbf@usenety1.news.prodigy.com>
  19162. References: <36hv50$kgn@news.icaen.uiowa.edu> <36i5s7$90e@apakabar.cc.columbia.edu> <9410010116.AA24289@SimTel.Coast.NET> <CwzKJs.Fx7@news.cern.ch>
  19163. Reply-To: davidsen@usenety1.news.prodigy.com
  19164. Nntp-Posting-Host: loopback.news.prodigy.com
  19165. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  19166.  
  19167. In article <CwzKJs.Fx7@news.cern.ch>,
  19168. Sergio Fanchiotti <fanchiot@surya1.cern.ch> wrote:
  19169.  
  19170. :Keith & Frank,
  19171. :
  19172. :
  19173. :    Well, as someone looking at this silly discussion for some time
  19174. :    it seems that the time has come to get to work on a GPL'd version
  19175. :    of a portable data transfer program like Kermit (As Les said before).
  19176.  
  19177. Actually a terminal emulator which could easily be expanded to cover a
  19178. number of protocols would be nice, just as ghostscript can include
  19179. target formats. I think the obvious choices are Kermit, Xmodem (for
  19180. historical reasons), and zmodem.
  19181.  
  19182. The question is can someone come up with a better file transfer protocol
  19183. and include that, thus eventually driving out the lesser protocols
  19184. eventually? As I see it:
  19185.  1. fast, performance like zmodem.
  19186.  2. ability to continue if connections are lost (again like zmodem).
  19187.  3. bidirectional, to use links better.
  19188.  
  19189. Maybe we're reinventing IP? Anyway, I think the time has come, now that
  19190. the distribution of Kermit has been officially limited.
  19191. -- 
  19192. Speaking *from* but never *for* Prodigy
  19193.     "Pain builds moral fiber"  -my dad
  19194.     "Pain hurts"  -me
  19195.  
  19196. From news@columbia.edu Mon Oct  3 16:36:03 1994
  19197. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA11363
  19198.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 3 Oct 1994 13:15:36 -0400
  19199. Received: by apakabar.cc.columbia.edu id AA13630
  19200.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 3 Oct 1994 13:15:35 -0400
  19201. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!swiss.ans.net!prodigy.com!prodigy.com!not-for-mail
  19202. From: davidsen@usenety1.news.prodigy.com (Bill Davidsen)
  19203. Newsgroups: comp.protocols.kermit.misc
  19204. Subject: Re: Columbia University's Kermit copyright
  19205. Date: 3 Oct 1994 12:36:03 -0400
  19206. Organization: Prodigy Services
  19207. Lines: 26
  19208. Message-Id: <36pbtj$cc0@usenety1.news.prodigy.com>
  19209. References: <9409300557.AA12036@simtel.coast.net> <36h490$9hc@apakabar.cc.columbia.edu>
  19210. Nntp-Posting-Host: loopback.news.prodigy.com
  19211. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  19212.  
  19213. In article <36h490$9hc@apakabar.cc.columbia.edu>,
  19214. Frank da Cruz <fdc@fdc.cc.columbia.edu> wrote:
  19215. :In article <9409300557.AA12036@simtel.coast.net> w8sdz@SimTel.Coast.NET  
  19216.  
  19217. :As somebody pointed out yesterday, something *is* wrong with this picture
  19218. :if this debate must be carried out over and over again.  Maybe what is
  19219. :wrong is that we -- silly us -- are still basically trying to provide a
  19220. :public service: FREE SOFTWARE, of high quality, with solid technical support
  19221. :behind it, all free.  All we ask in return is that at enough of you purchase
  19222. :the accompanying manuals to keep us afloat, and that you stop haranging us
  19223. :for our commercial-redistribution policies and let us get on with our work
  19224. :on your behalf.  Maybe it will turn out that we really do have to change
  19225. :the way we get income; I hope not.
  19226.  
  19227. I totally fail to see how the funding of Kermit is diferent from the way
  19228. shareware works. You want people to use the software and buy the manual.
  19229. SO DO WE! But the idea that more people will buy the manuals if fewer
  19230. people have the software completely eludes me.
  19231.  
  19232. My impression is that people in this group are trying VERY hard to keep
  19233. you from shooting yourself in the foot, and all you see is a profit
  19234. motive.
  19235. -- 
  19236. Speaking *from* but never *for* Prodigy
  19237.     "Pain builds moral fiber"  -my dad
  19238.     "Pain hurts"  -me
  19239.  
  19240. From news@columbia.edu Mon Oct  3 12:41:26 1994
  19241. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA14032
  19242.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 3 Oct 1994 13:53:42 -0400
  19243. Received: by apakabar.cc.columbia.edu id AA16703
  19244.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 3 Oct 1994 13:53:41 -0400
  19245. Path: news.columbia.edu!panix!zip.eecs.umich.edu!newsxfer.itd.umich.edu!nntp.cs.ubc.ca!alberta!quartz.ucs.ualberta.ca!tribune.usask.ca!canopus.cc.umanitoba.ca!rahardj
  19246. From: rahardj@cc.umanitoba.ca (Budi Rahardjo)
  19247. Newsgroups: comp.protocols.kermit.misc
  19248. Subject: GNU implementation of kermit :-)
  19249. Date: 3 Oct 1994 12:41:26 GMT
  19250. Organization: The University of Manitoba
  19251. Lines: 9
  19252. Message-Id: <36ou5m$5ou@canopus.cc.umanitoba.ca>
  19253. Nntp-Posting-Host: antares.cc.umanitoba.ca
  19254. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  19255.  
  19256. Re: the thread on compyrights/policies etc.
  19257. Maybe what we need is a GNU implementation of kermit :-)
  19258. Or if they cannot use kermit, then invent GNUprotocol.
  19259.  
  19260. -- budi
  19261. -- 
  19262. Budi Rahardjo <Budi_Rahardjo@UManitoba.Ca>
  19263. #include <std-disclaimer.h>
  19264. Unix Support - Computer Services - University of Manitoba
  19265.  
  19266. From news@columbia.edu Mon Oct  3 18:16:11 1994
  19267. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA15937
  19268.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 3 Oct 1994 14:16:18 -0400
  19269. Received: by apakabar.cc.columbia.edu id AA18738
  19270.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 3 Oct 1994 14:16:17 -0400
  19271. Path: news.columbia.edu!usenet
  19272. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  19273. Newsgroups: comp.protocols.kermit.misc
  19274. Subject: Re: GNU implementation of kermit :-)
  19275. Date: 3 Oct 1994 18:16:11 GMT
  19276. Organization: Columbia University
  19277. Lines: 18
  19278. Message-Id: <36phpb$i9b@apakabar.cc.columbia.edu>
  19279. References: <36ou5m$5ou@canopus.cc.umanitoba.ca>
  19280. Nntp-Posting-Host: fdc.cc.columbia.edu
  19281. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  19282.  
  19283. In article <36ou5m$5ou@canopus.cc.umanitoba.ca> rahardj@cc.umanitoba.ca (Budi  
  19284. Rahardjo) writes:
  19285. > Re: the thread on compyrights/policies etc.
  19286. > Maybe what we need is a GNU implementation of kermit :-)
  19287. > Or if they cannot use kermit, then invent GNUprotocol.
  19288. I don't get it.  Why create a parallel universe?  What would GNU
  19289. Kermit get *you* that you don't already get from Columbia?  Public
  19290. domain software than anybody could sell?  No...  Software that costs *you*
  19291. less than Columbia Kermit (i.e. nothing)?  No...  Then what?
  19292.  
  19293. To recreate the Kermit universe will take years of work by lots of people,
  19294. and some of them will have to be full-time, or it won't succeed.  In other
  19295. words, you'll end up just like us, and for that matter the FSF -- needing 
  19296. operating funds.  Unless you are independently wealthy, and willing to 
  19297. bankroll the operation out of your pocket.
  19298.  
  19299. - Frank
  19300.  
  19301. From news@columbia.edu Mon Oct  3 17:17:31 1994
  19302. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA16420
  19303.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 3 Oct 1994 14:23:01 -0400
  19304. Received: by apakabar.cc.columbia.edu id AA19348
  19305.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 3 Oct 1994 14:22:59 -0400
  19306. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!news.sprintlink.net!malgudi.oar.net!kira.cc.uakron.edu!ns.mcs.kent.edu!Snake.mcs.kent.edu!rothstei
  19307. From: rothstei@Snake.mcs.kent.edu (Michael Rothstein)
  19308. Newsgroups: comp.protocols.kermit.misc
  19309. Subject: Re: Are Columbia U's files still avial for FTP?
  19310. Date: 3 Oct 1994 17:17:31 GMT
  19311. Organization: Kent State University
  19312. Lines: 41
  19313. Message-Id: <36pebb$7v1@ns.mcs.kent.edu>
  19314. References: <dmurdoch.1325.2E8C5321@mast.queensu.ca> <36hsus$qtn@apakabar.cc.columbia.edu>
  19315. Nntp-Posting-Host: snake.mcs.kent.edu
  19316. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  19317.  
  19318. In article <36hsus$qtn@apakabar.cc.columbia.edu> fdc@fdc.cc.columbia.edu
  19319.  (Frank da Cruz) writes:
  19320. (snip, snip)
  19321. }I really wish I did not have to keep repeating myself -- it is really
  19322. }boring.  There is a paradox here: the more our software is spread to the
  19323. }general public on CDROM, and the more popular it becomes, the more work
  19324. }we have (tech support), the less time we have to devote to development,
  19325. }and the less money we have to pay for tech support AND development.
  19326. }
  19327. }Thus, the policy you are advocating is a very short-sighted one, the result
  19328. }of which would be that everybody would get Kermit software for "a fraction
  19329. }of a penny", and the Kermit effort would get nothing: our marketplace would
  19330. }disappear -- because nobody in their right mind would pay $35 for the same
  19331. }thing (more or less -- there is also the manual to consider) they can get
  19332. }for a third of a penny.  Meanwhile, since they do not have the manual, they
  19333. }pester us to death with questions that are already answered there.  Work
  19334. }grows to infinity, income shrinks to zero, and poof, you've killed it.
  19335. }Well, hooray, hooray, now we all have just what we wanted and it was free,
  19336. }so we won!  Yay!  But then technology changes, operating systems change,
  19337. }communication and networking methods change, and you are now left to the
  19338. }tender mercies of all those commercial and shareware software producers who
  19339. }care so much about quality and support.
  19340. }
  19341. }I'm sorry, it's a whole package -- if you don't like it, don't use it, and
  19342. }let us get on with devloping and supporting it for those who do,
  19343. }
  19344. }- Frank
  19345.  
  19346. Here is a different idea: make Kermit available the way it was before, but
  19347. **only** answer tech questions on a 900 line; this would enable you to
  19348. get the funds you need for tech support, and you could always slip in
  19349. a plug for the documentation instead of the hold muzak.
  19350. You might argue that overseas people don't have access to the 900 line,
  19351. which is true, but I think overseas people have to think twice before
  19352. calling in for support except for emergencies: calls from overseas are
  19353. ***real***expensive***.
  19354.  
  19355. -- 
  19356. Michael Rothstein (Kent State U)| Any similarity between Kent State's opinions
  19357. (rothstei@mcs.kent.edu)        | and my opinions is strictly coincidential.
  19358. The only way to tell you're sane is with a certificate from the insane asylum.
  19359.  
  19360. From news@columbia.edu Mon Oct  3 18:33:14 1994
  19361. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA17414
  19362.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 3 Oct 1994 14:33:19 -0400
  19363. Received: by apakabar.cc.columbia.edu id AA20262
  19364.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 3 Oct 1994 14:33:16 -0400
  19365. Path: news.columbia.edu!watsun.cc.columbia.edu!jaltman
  19366. From: jaltman@watsun.cc.columbia.edu (Jeffrey Altman)
  19367. Newsgroups: comp.protocols.kermit.misc
  19368. Subject: Re: Columbia University's Kermit copyright
  19369. Date: 3 Oct 1994 18:33:14 GMT
  19370. Organization: Columbia University
  19371. Lines: 43
  19372. Message-Id: <36pipa$jp4@apakabar.cc.columbia.edu>
  19373. References: <9409300557.AA12036@simtel.coast.net> <36h490$9hc@apakabar.cc.columbia.edu> <36pbtj$cc0@usenety1.news.prodigy.com>
  19374. Nntp-Posting-Host: watsun.cc.columbia.edu
  19375. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  19376.  
  19377. In article <36pbtj$cc0@usenety1.news.prodigy.com>,
  19378. Bill Davidsen <davidsen@usenety1.news.prodigy.com> wrote:
  19379. >In article <36h490$9hc@apakabar.cc.columbia.edu>,
  19380. >Frank da Cruz <fdc@fdc.cc.columbia.edu> wrote:
  19381. >:In article <9409300557.AA12036@simtel.coast.net> w8sdz@SimTel.Coast.NET  
  19382. >
  19383. >I totally fail to see how the funding of Kermit is diferent from the way
  19384. >shareware works. You want people to use the software and buy the manual.
  19385. >SO DO WE! But the idea that more people will buy the manuals if fewer
  19386. >people have the software completely eludes me.
  19387. >
  19388. There is a huge difference.  The shareware premise starts out by saying that
  19389. everybody that uses the software must pay money.  Some do and most don't
  19390. but you don't chase people because it doesn't pay too.
  19391.  
  19392. Kermit says, the software is free provided you receive it from some 
  19393. electronic means: ftp, gopher, www, bbs, ...
  19394.  
  19395. Kermit may not be distributed by anyone that charges money for physical 
  19396. media or that includes kermit as part of a larger package WITHOUT PERMISSION.
  19397. In other words, shareware libraries via mail; operating systems; Internet
  19398. access packages; third party terminal emulators or BBS programs.
  19399.  
  19400. Kermit is like your local museum or zoo which asks for a donation but will
  19401. let you in if you choose not to pay one (except for those special exhibits).
  19402.  
  19403. Shareware MUST be paid for, otherwise, you are breaking the law.  How many
  19404. people in this group are using Unregistered versions of DSZ, or ZOC, or
  19405. Telix, or ...?  If you continue, using them without registering you break 
  19406. the law.  Will you be caught, not likely.  But you are still guilty.
  19407.  
  19408. Kermit is FREE.  If you use it without ordering a manual, no big deal.
  19409. Its FREE.  If you need technical support, you will get it FREE.  However, 
  19410. we would like you to order the manual.  It reduces the need for technical
  19411. support and makes it easier to provide it when you do need it.  But
  19412. do you have to pay something, yes for the manual, no for anything else.
  19413.  
  19414. Can we get onto something else?
  19415.  
  19416. Jeffrey Altman * PO Box 220415 * Great Neck, NY * 11022-0415 * (516) 466-5495
  19417. "C-Kermit: available on more platforms than any other communications software."
  19418. "Kermit FTP: sending files whenever and wherever they are needed."
  19419. OS/2 version 189 via ftp from watsun.cc.columbia.edu /kermit/bin/ckoker.zip 
  19420.  
  19421. From news@columbia.edu Mon Oct  3 20:04:20 1994
  19422. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA25421
  19423.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 3 Oct 1994 16:17:07 -0400
  19424. Received: by apakabar.cc.columbia.edu id AA29525
  19425.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 3 Oct 1994 16:17:03 -0400
  19426. Path: news.columbia.edu!sol.ctr.columbia.edu!newsxfer.itd.umich.edu!gumby!wupost!simtel.coast.net!w8sdz
  19427. From: w8sdz@SimTel.Coast.NET (Keith Petersen)
  19428. Newsgroups: comp.protocols.kermit.misc
  19429. Subject: Re: Columbia University's Kermit copyright
  19430. Message-Id: <9410032004.AA20257@SimTel.Coast.NET>
  19431. Date: Mon, 3 Oct 1994 20:04:20 GMT
  19432. Organization: SimTel, the Coast to Coast Software Repository (tm)
  19433. References: <9409300557.AA12036@simtel.coast.net> <36h490$9hc@apakabar.cc.columbia.edu> <36pbtj$cc0@usenety1.news.prodigy.com>
  19434. Lines: 17
  19435. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  19436.  
  19437. davidsen@usenety1.news.prodigy.com (Bill Davidsen) writes:
  19438. >I totally fail to see how the funding of Kermit is diferent from the way
  19439. >shareware works. You want people to use the software and buy the manual.
  19440. >SO DO WE! But the idea that more people will buy the manuals if fewer
  19441. >people have the software completely eludes me.
  19442.  
  19443. In my opinion Kermit became CRIPPLEWARE several years ago when Columbia
  19444. University stopped providing the full documentation as a file which could
  19445. be downloaded.  This forces users to purchase the book if they wish to
  19446. take full advantage of the software.
  19447.  
  19448. Keith
  19449. --
  19450. Keith Petersen
  19451. General Manager of SimTel, the Coast to Coast Software Repository (tm)
  19452. Internet: w8sdz@SimTel.Coast.NET    or      w8sdz@Vela.ACS.Oakland.Edu
  19453. Uucp: uunet!umich!vela!w8sdz                     BITNET: w8sdz@OAKLAND
  19454.  
  19455. From news@columbia.edu Mon Oct  3 21:12:25 1994
  19456. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA02228
  19457.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 3 Oct 1994 17:54:36 -0400
  19458. Received: by apakabar.cc.columbia.edu id AA08365
  19459.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 3 Oct 1994 17:54:35 -0400
  19460. Path: news.columbia.edu!sol.ctr.columbia.edu!newsxfer.itd.umich.edu!europa.eng.gtefsd.com!swiss.ans.net!solaris.cc.vt.edu!news.duke.edu!concert!news.wfu.edu!matthews
  19461. From: matthews@wfu.edu (Rick Matthews)
  19462. Newsgroups: comp.protocols.kermit.misc
  19463. Subject: Re: Columbia University's Kermit copyright
  19464. Date: 3 Oct 1994 21:12:25 GMT
  19465. Organization: Wake Forest University
  19466. Lines: 23
  19467. Message-Id: <36ps3p$h2s@eis.wfunet.wfu.edu>
  19468. References: <9409300557.AA12036@simtel.coast.net> <36h490$9hc@apakabar.cc.columbia.edu> <36pbtj$cc0@usenety1.news.prodigy.com>
  19469. Nntp-Posting-Host: ac852.wfunet.wfu.edu
  19470. X-Newsreader: TIN [version 1.2 PL2]
  19471. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  19472.  
  19473. Bill Davidsen (davidsen@usenety1.news.prodigy.com) wrote:
  19474. : I totally fail to see how the funding of Kermit is diferent from the way
  19475. : shareware works.
  19476.  
  19477. Simple:  Kermit is free; shareware is not.
  19478.  
  19479. I am free to scatter Kermit all over my department, making it the
  19480. standard terminal emulation package for faculty, students, custodians,
  19481. etc., without paying a penny.
  19482.  
  19483. I wouldn't do this with shareware.  Unless I pay, it is against the law.
  19484. Shareware is not free.
  19485.  
  19486. Besides, the distribution decision is the developers' call to make.
  19487. Every possible argument for a change of policy has already been
  19488. presented.  Anything more is just hassle.  Please, thank them or
  19489. leave them alone.
  19490.  
  19491. --
  19492. Rick Matthews                     matthews@wfu.edu            Ham radio:
  19493. Wake Forest University            910-759-5340   (Voice)      WA4GSP
  19494. Winston-Salem, NC 27109-7507      910-759-6142   (FAX)
  19495.  
  19496.  
  19497. From news@columbia.edu Mon Oct  3 20:04:52 1994
  19498. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA02834
  19499.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 3 Oct 1994 18:04:42 -0400
  19500. Received: by apakabar.cc.columbia.edu id AA09217
  19501.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 3 Oct 1994 18:04:41 -0400
  19502. Newsgroups: comp.protocols.kermit.misc
  19503. Path: news.columbia.edu!sol.ctr.columbia.edu!newsxfer.itd.umich.edu!europa.eng.gtefsd.com!howland.reston.ans.net!EU.net!chsun!pan!jw
  19504. From: jw@adasoft.ch (Jamie Watson)
  19505. Subject: Re: Columbia University's Kermit copyright
  19506. Message-Id: <Cx4544.9sC@adasoft.ch>
  19507. Reply-To: jw@adasoft.ch (Jamie Watson)
  19508. Organization: Adasoft AG, Switzerland
  19509. References: <9409300557.AA12036@simtel.coast.net> <36h490$9hc@apakabar.cc.columbia.edu> <36kaa4$lmm@knot.queensu.ca> <36l69c$n71@news.icaen.uiowa.edu>
  19510. Date: Mon, 3 Oct 1994 20:04:52 GMT
  19511. Expires: Sun, 2 Oct 1994 23:00:00 GMT
  19512. Lines: 74
  19513. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  19514.  
  19515. >With all due respect, Kermit is not the work of one individual.  A
  19516. >number of people have invested time and energy and resources into 
  19517. >making Kermit what it is today.
  19518.  
  19519. I've stayed out of this (publicly) as long as I can.  I'm sorry to be
  19520. fueling a discussion that I wish would simply die out...
  19521.  
  19522. Kermit is primarily the work of a *very* small number of people, helped
  19523. along to a *very* small amount of work contributed by a large number of
  19524. people.  Besides the group at Columbia, I would guess that there are
  19525. perhaps 10 people in the world who have contributed a quantity of work
  19526. that should be considered "substantial" in comparison with what has
  19527. been done at Columbia.  I'm not trying to denigrate anyone here, and
  19528. I am speaking from experience.  I have been contributing to the C-Kermit
  19529. effort for several years now.  On a few occasions, when my schedule and
  19530. interest permitted, I have contributed a considerable amount of work.
  19531. But I have no delusions as the the magnitude of my contribution compared
  19532. to the overall kermit effort - or even the overall C-Kermit effort.  I
  19533. certainly don't presume to attempt to tell Frank how kermit can or can
  19534. not be distributed because of my contribution.
  19535.  
  19536. >This isn't just about Simtel and 
  19537. >Garbo, but about anyone who cuts a CD for an OS -- note that some 
  19538. >vendors no longer ship kermit with their OS, like DEC OSF/1 and BSDI.
  19539.  
  19540. Well, is this supposed to be a negative point?  My experience has been
  19541. that virtually all of these are distributing versions of kermit that
  19542. are so old they are very limited in usefulness, and are virtually
  19543. certain to generate loads of requests to Columbia for help - exactly
  19544. what Frank has been saying they want to stop.
  19545.  
  19546. >And let's not forget those benevolent FTP archives who (ahem) do 
  19547. >dervie some amount of money from grants or corporate funding by 
  19548. >maintaining an FTP archive, like wuarchive and sunsite (just to name 
  19549. >two biggies) and may have a moneyary incentive (however slight) to
  19550. >keep Kermit online, thus supposedly putting themselves at odds with 
  19551. >the Columbia people.
  19552.  
  19553. There are real issues here, and Frank has already discussed them.
  19554.  
  19555. >Already, it appears that Kermit is suffering 
  19556. >something of a decline as overall line quality improves, and the
  19557. >omnipotent GUI has emerged.  So tell me, honestly, do YOU think that
  19558. >documentation sales are going to keep Kermit alive, or is it going 
  19559. >to just die and spell the end of an era.  
  19560.  
  19561. This is pure opinion.  I don't agree.
  19562.  
  19563. >No one wants to denigrate the Kermit developers' efforts toward making
  19564. >a quality software product.
  19565.  
  19566. So don't do it.
  19567.  
  19568. >But it seems like they need some help here,
  19569. >and the way they want us to help them doesn't seem to help anyone.  
  19570. >There appear to be people out there with better funding models, and
  19571. >every time someone suggests that a different funding model might better
  19572. >serve the interests of everyone involved, we get a lot of voodoo and 
  19573. >simplistic arguments.
  19574.  
  19575. Sorry, but I haven't seen *anyone* suggest a different funding model here.
  19576.  
  19577. >Why isn't this work just funded by Columbia?
  19578. >It certainly seems worthwhile enough just in advertising alone.  
  19579.  
  19580. Have you ever worked in a University environment?  I have, and I can tell
  19581. you that just because something "seems worthwhile" doesn't mean it will
  19582. be funded by the University.  Please, give Frank credit for a little bit
  19583. of intelligence in this area.  I'm quite sure that he has explored the
  19584. possibility of getting other kinds of funding.  I suspect that he still
  19585. does this on a regular basis.  Just because he doesn't post the details
  19586. for public discussion doesn't mean he isn't doing it.
  19587.  
  19588. jw
  19589.  
  19590. From news@columbia.edu Mon Oct  3 20:01:02 1994
  19591. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA09592
  19592.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 3 Oct 1994 19:58:22 -0400
  19593. Received: by apakabar.cc.columbia.edu id AA17882
  19594.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 3 Oct 1994 19:58:21 -0400
  19595. Newsgroups: comp.protocols.kermit.misc
  19596. Path: news.columbia.edu!spcuna!ritz!kudut
  19597. From: kudut@ritz.mordor.com (Ken Udut)
  19598. Subject: Re: Columbia University's Kermit copyright
  19599. References: <9409300557.AA12036@simtel.coast.net> <36h490$9hc@apakabar.cc.columbia.edu> <36pbtj$cc0@usenety1.news.prodigy.com>
  19600. Organization: Mordor International BBS - Jersey City, NJ
  19601. Date: Mon, 3 Oct 1994 20:01:02 GMT
  19602. Message-Id: <Cx44xq.IJw@ritz.mordor.com>
  19603. Lines: 67
  19604. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  19605.  
  19606. >:As somebody pointed out yesterday, something *is* wrong with this picture
  19607. >:if this debate must be carried out over and over again.  Maybe what is
  19608. >:wrong is that we -- silly us -- are still basically trying to provide a
  19609. >:public service: FREE SOFTWARE, of high quality, with solid technical support
  19610. >:behind it, all free.  All we ask in return is that at enough of you purchase
  19611. >:the accompanying manuals to keep us afloat, and that you stop haranging us
  19612. >:for our commercial-redistribution policies and let us get on with our work
  19613. >:on your behalf.  Maybe it will turn out that we really do have to change
  19614. >:the way we get income; I hope not.
  19615. >
  19616. >I totally fail to see how the funding of Kermit is diferent from the way
  19617. >shareware works. You want people to use the software and buy the manual.
  19618. >SO DO WE! But the idea that more people will buy the manuals if fewer
  19619. >people have the software completely eludes me.
  19620.  
  19621. It's a different way of acheiving the same goals.  Except that Frank (and 
  19622. the Kermit team)'s motives aren't profit oriented - simply enough to 
  19623. support the project and keep it going.
  19624.  
  19625. warning: I am going to use gross generalizations.
  19626.  
  19627. Frank 'n co. have a limited staff.  By keeping the distribution to folks 
  19628. with ftp access and BBS people free, they are distributing it to people 
  19629. who, generally, have a greater understanding of how the computer works 
  19630. and how to set things up.
  19631.  
  19632. When people buy it with the manual, they have all of the answers that 
  19633. they need.
  19634.  
  19635. HOWEVER - when it is distributed on CD-ROMS - a *lot* of people will get 
  19636. it.  People who often have had their computers set up, who have a less 
  19637. extensive knowledge of computers.  I know this is true at least *some* of 
  19638. the time, because of the kinds of questions I've had to answer about my 
  19639. Deskmate .snd conversion program from people who found it on CD-ROM's, 
  19640. versus those who found it on BBS's, versus those who found it on the 
  19641. Internet.
  19642.  
  19643. The CD_ROM people's questions were questions about the simple stuff 
  19644. (relatively speaking)
  19645.  
  19646. The BBS people's questions were about more complex things.
  19647.  
  19648. And the Internet people seemed to be asking questions that were beyond my 
  19649. knowledge.  I could answer most, but some I had to refer to other people, 
  19650. newsgroups, etc.
  19651.  
  19652. I don't mind answering questions at all about it, but with a more general 
  19653. purpose program like Kermit (more general than my sound converter), there 
  19654. will be thousands more questions.  What is wrong with Frank and co. saying:
  19655.  
  19656. "Look... copy it to whom you wish.  Spread it around.  But a CD-ROM will 
  19657. simply be a case where its spread around too much.  We just don't have 
  19658. the support staff."
  19659.  
  19660. If they had the money, they could support the extra work.  But they 
  19661. don't.  People who search for Kermit, know what they want it for, will 
  19662. find it, and eventually (like myself, shortly) buy the manual.  But 
  19663. people who see it as one program of thousands aren't as likely to, as it 
  19664. won't be given the same weight in their minds.
  19665.  
  19666. Keep up the good work, Frank.
  19667.  
  19668. Remember - this too, shall pass (the dilemna on this newsgroup)
  19669.  
  19670. Ken
  19671. kudut@ritz.mordor.com
  19672.  
  19673.  
  19674. From news@columbia.edu Mon Oct  3 22:52:20 1994
  19675. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA12742
  19676.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 3 Oct 1994 20:34:55 -0400
  19677. Received: by apakabar.cc.columbia.edu id AA20878
  19678.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 3 Oct 1994 20:34:54 -0400
  19679. Path: news.columbia.edu!news.cs.columbia.edu!news.pipeline.com!uunet!heifetz.msen.com!simtel.coast.net!w8sdz
  19680. From: w8sdz@SimTel.Coast.NET (Keith Petersen)
  19681. Newsgroups: comp.protocols.kermit.misc
  19682. Subject: Re: Columbia University's Kermit copyright
  19683. Message-Id: <9410032252.AA21717@SimTel.Coast.NET>
  19684. Date: Mon, 3 Oct 1994 22:52:20 GMT
  19685. Organization: SimTel, the Coast to Coast Software Repository (tm)
  19686. References: <9409300557.AA12036@simtel.coast.net> <36kaa4$lmm@knot.queensu.ca> <36l69c$n71@news.icaen.uiowa.edu> <Cx4544.9sC@adasoft.ch>
  19687. Lines: 29
  19688. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  19689.  
  19690. jw@adasoft.ch (Jamie Watson) writes:
  19691. >Sorry, but I haven't seen *anyone* suggest a different funding model here.
  19692.  
  19693. Ok, here it is.  I already sent this to Frank and he rejected it.
  19694.  
  19695. Change the status of Kermit to ShareWare, with voluntary payment for
  19696. individuals and required payment for commercial and school use (i.e.,
  19697. a site license).  If Columbia charged $300 for a site license, even if
  19698. there were only 1,000 customers, the income produced would be $300,000
  19699. per year.
  19700.  
  19701. That's just a starting point.  I'm sure Columbia would have more than
  19702. 1,000 paying customers for such a well-supported product as Kermit -
  19703. if it was continually updated and improved.  I see no reason why this
  19704. funding model should not have the potential to bring in over $500,000
  19705. per year.  I feel confident that Columbia would have no trouble getting
  19706. releases from the authors of the various flavors of Kermit if they
  19707. stressed that this money will be used for product support and improving
  19708. the product through future development.
  19709.  
  19710. With that kind of income Columbia could hire programmers to write new
  19711. flavors of Kermit and to improve the already exiting flavors.
  19712.  
  19713. Keith
  19714. --
  19715. Keith Petersen
  19716. General Manager of SimTel, the Coast to Coast Software Repository (tm)
  19717. Internet: w8sdz@SimTel.Coast.NET    or      w8sdz@Vela.ACS.Oakland.Edu
  19718. Uucp: uunet!umich!vela!w8sdz                     BITNET: w8sdz@OAKLAND
  19719.  
  19720. From news@columbia.edu Tue Oct  4 00:56:33 1994
  19721. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA15241
  19722.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 3 Oct 1994 20:56:36 -0400
  19723. Received: by apakabar.cc.columbia.edu id AA22289
  19724.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 3 Oct 1994 20:56:35 -0400
  19725. Path: news.columbia.edu!usenet
  19726. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  19727. Newsgroups: comp.protocols.kermit.misc
  19728. Subject: Re: Columbia University's Kermit copyright
  19729. Date: 4 Oct 1994 00:56:33 GMT
  19730. Organization: Columbia University
  19731. Lines: 26
  19732. Message-Id: <36q981$lof@apakabar.cc.columbia.edu>
  19733. References: <9410032252.AA21717@SimTel.Coast.NET>
  19734. Nntp-Posting-Host: fdc.cc.columbia.edu
  19735. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  19736.  
  19737. In article <9410032252.AA21717@SimTel.Coast.NET> w8sdz@SimTel.Coast.NET  
  19738. (Keith Petersen) writes:
  19739. > jw@adasoft.ch (Jamie Watson) writes:
  19740. > >Sorry, but I haven't seen *anyone* suggest a different funding model here.
  19741. > Ok, here it is.  I already sent this to Frank and he rejected it.
  19742. > Change the status of Kermit to ShareWare, ...
  19743. >
  19744. It's true, Keith did suggest changing Kermit to shareware.  And various
  19745. other people suggested charging for support, setting up 900 numbers, and
  19746. so on.  Our many well-wishers do not understand the detailed organizational
  19747. and legal constraints under which we operate.  I will only say that I have
  19748. not seen a suggestion posted in this discussion, or mailed to me privately,
  19749. that I did not already think of myself years ago.  And I think this 
  19750. discussion is scaring the (substitute appropriate garment) off lots of people
  19751. in universities and elsewhere -- needlessly.  Don't worry people, we Kermit
  19752. folks have been constant and faithful to you all these years, and the voices
  19753. in the newsgroups don't speak for us.  We have no intention of abandoning
  19754. our loyal "market niche" to chase after the fast buck, no matter how hard
  19755. some people -- and economic forces themselves -- push us to do it.  Your
  19756. support and words of encouragement are appreciated.
  19757.  
  19758. Thanks.
  19759.  
  19760. - Frank
  19761.  
  19762.  
  19763.  
  19764. From news@columbia.edu Tue Oct  4 03:13:34 1994
  19765. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA25354
  19766.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 4 Oct 1994 00:16:17 -0400
  19767. Received: by apakabar.cc.columbia.edu id AA06774
  19768.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 4 Oct 1994 00:16:15 -0400
  19769. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!library.ucla.edu!news.mic.ucla.edu!unixg.ubc.ca!quartz.ucs.ualberta.ca!tribune.usask.ca!canopus.cc.umanitoba.ca!rahardj
  19770. From: rahardj@cc.umanitoba.ca (Budi Rahardjo)
  19771. Newsgroups: comp.protocols.kermit.misc
  19772. Subject: Re: Columbia University's Kermit copyright
  19773. Date: 4 Oct 1994 03:13:34 GMT
  19774. Organization: The University of Manitoba
  19775. Lines: 37
  19776. Message-Id: <36qh8u$j7n@canopus.cc.umanitoba.ca>
  19777. References: <9409300557.AA12036@simtel.coast.net> <36h490$9hc@apakabar.cc.columbia.edu> <36pbtj$cc0@usenety1.news.prodigy.com> <36ps3p$h2s@eis.wfunet.wfu.edu>
  19778. Nntp-Posting-Host: antares.cc.umanitoba.ca
  19779. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  19780.  
  19781. In <36ps3p$h2s@eis.wfunet.wfu.edu> matthews@wfu.edu (Rick Matthews) writes:
  19782.  
  19783. : Bill Davidsen (davidsen@usenety1.news.prodigy.com) wrote:
  19784. : : I totally fail to see how the funding of Kermit is diferent from the way
  19785. : : shareware works.
  19786.  
  19787. : Simple:  Kermit is free; shareware is not.
  19788.  
  19789. : I am free to scatter Kermit all over my department, making it the
  19790. : standard terminal emulation package for faculty, students, custodians,
  19791. : etc., without paying a penny.
  19792.  
  19793. Do they buy the manual ? What's going to happen with they have problems
  19794. and call Coulmbia ? Either through CD-ROM or through you, these people
  19795. do not get the manuals and hence create more problems for the Kermit's
  19796. group when they call the Kermit's group.
  19797. This is one of the arguments used to limit the distribution, people
  19798. that don't have manuals call them. This I don't undertand, the difference
  19799. between CD-ROM distribution and people like you an me distributing
  19800. copies of kermit. (money aside,  CD-ROM vendors and myself have the
  19801. effects.)
  19802.  
  19803. One argument that I do understand, is that the Kermit's developer
  19804. doesnot like CD-ROM vendors putting a copy of kermit in their CDs,
  19805. without permission. I do understand their view.
  19806. IMHO, it's a valid reason.
  19807.  
  19808. You know, if the software and book are really good, people will buy 
  19809. the book. Just like "perl + camel book", "Tk and Tcl + Oustherhout's book".
  19810. You don't have to beg people to buy it :-)
  19811.  
  19812. Good luck.
  19813. -- budi
  19814. -- 
  19815. Budi Rahardjo <Budi_Rahardjo@UManitoba.Ca>
  19816. #include <std-disclaimer.h>
  19817. Unix Support - Computer Services - University of Manitoba
  19818.  
  19819. From news@columbia.edu Tue Oct  4 03:26:49 1994
  19820. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA26227
  19821.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 4 Oct 1994 00:35:55 -0400
  19822. Received: by apakabar.cc.columbia.edu id AA07854
  19823.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 4 Oct 1994 00:35:53 -0400
  19824. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!library.ucla.edu!news.mic.ucla.edu!unixg.ubc.ca!quartz.ucs.ualberta.ca!tribune.usask.ca!canopus.cc.umanitoba.ca!rahardj
  19825. From: rahardj@cc.umanitoba.ca (Budi Rahardjo)
  19826. Newsgroups: comp.protocols.kermit.misc
  19827. Subject: Re: GNU implementation of kermit :-)
  19828. Date: 4 Oct 1994 03:26:49 GMT
  19829. Organization: The University of Manitoba
  19830. Lines: 41
  19831. Message-Id: <36qi1p$k5p@canopus.cc.umanitoba.ca>
  19832. References: <36ou5m$5ou@canopus.cc.umanitoba.ca> <36phpb$i9b@apakabar.cc.columbia.edu>
  19833. Nntp-Posting-Host: antares.cc.umanitoba.ca
  19834. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  19835.  
  19836. fdc@fdc.cc.columbia.edu (Frank da Cruz) writes:
  19837.  
  19838. : rahardj@cc.umanitoba.ca (Budi Rahardjo) writes:
  19839. : > Re: the thread on compyrights/policies etc.
  19840. : > Maybe what we need is a GNU implementation of kermit :-)
  19841. : > Or if they cannot use kermit, then invent GNUprotocol.
  19842. : > 
  19843. : I don't get it.  Why create a parallel universe?  What would GNU
  19844. : Kermit get *you* that you don't already get from Columbia?  Public
  19845. : domain software than anybody could sell?  No...  Software that costs *you*
  19846. : less than Columbia Kermit (i.e. nothing)?  No...  Then what?
  19847.  
  19848. Why are there a number of C compilers ? editors ? mail processors?
  19849. X windows ? etc.
  19850. There are a number of reasons; technical and non-technical.
  19851. What GNU Kermit (if such beast exists) get *me* that I don't already 
  19852. get from Columbia ?
  19853. A complete snap-shot of archieve site *including* kermit in a CD.
  19854. To me as a user, it is a convenience. But I am just one measly user,
  19855. you can just ignore me.
  19856.  
  19857.  
  19858. : To recreate the Kermit universe will take years of work by lots of people,
  19859. : and some of them will have to be full-time, or it won't succeed.  
  19860.  
  19861. Are you sure you need full-time people to make it success ?
  19862. How about Linux ? perl ? tcl ? ... and many others.
  19863.  
  19864. : In other
  19865. : words, you'll end up just like us, and for that matter the FSF -- needing 
  19866. : operating funds.  Unless you are independently wealthy, and willing to 
  19867. : bankroll the operation out of your pocket.
  19868.  
  19869. You are underestimating the power of collaboration of volunteers.
  19870.  
  19871. Good luck.
  19872. -- budi
  19873. -- 
  19874. Budi Rahardjo <Budi_Rahardjo@UManitoba.Ca>
  19875. #include <std-disclaimer.h>
  19876. Unix Support - Computer Services - University of Manitoba
  19877.  
  19878. From news@columbia.edu Sun Oct  4 04:41:13 1994
  19879. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA28576
  19880.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 4 Oct 1994 01:12:59 -0400
  19881. Received: by apakabar.cc.columbia.edu id AA09556
  19882.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 4 Oct 1994 01:12:58 -0400
  19883. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!math.ohio-state.edu!hobbes.physics.uiowa.edu!newsfeed.ksu.ksu.edu!moe.ksu.ksu.edu!cbs.ksu.ksu.edu!not-for-mail
  19884. From: mcatlin@ksu.ksu.edu (Micah Catlin)
  19885. Newsgroups: comp.protocols.kermit.misc
  19886. Subject: Re: Windows Kermit?
  19887. Date: 3 Oct 1994 23:41:13 -0500
  19888. Organization: Kansas State University
  19889. Lines: 16
  19890. Distribution: World
  19891. Message-Id: <36qmd9$knk@cbs.ksu.ksu.edu>
  19892. References: <1994Sep28.001400.10550@emba.uvm.edu> <36bv4p$ps8@apakabar.cc.columbia.edu>
  19893. Nntp-Posting-Host: cbs.ksu.ksu.edu
  19894. X-Newsreader: NN version 6.5.0 #1 (NOV)
  19895. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  19896.  
  19897. fdc@fdc.cc.columbia.edu (Frank da Cruz) writes:
  19898.  
  19899. >In article <1994Sep28.001400.10550@emba.uvm.edu> rdangel@moose.uvm.edu  
  19900. >(Robert S. Dangel) writes:
  19901. >> Is there a windows version of PC Kermit? I have qmodem Pro and
  19902. >> the Kermit protocol doesn't work with the UNIX machines..  
  19903. >>
  19904. >currently version 3.13.  It is a Windows-aware DOS application.  Until
  19905. >and unless we are able to create a native Windows version with anywhere
  19906.  
  19907.     I have one.
  19908.  
  19909. >near the same degree of functionality, we recommend and support MS-DOS
  19910. >Kermit for use with Windows.
  19911.  
  19912.     I don't know about that, but I have Windoze Kermit.
  19913.  
  19914. From news@columbia.edu Tue Oct  4 04:42:23 1994
  19915. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA28650
  19916.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 4 Oct 1994 01:13:41 -0400
  19917. Received: by apakabar.cc.columbia.edu id AA09602
  19918.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 4 Oct 1994 01:13:40 -0400
  19919. Newsgroups: comp.protocols.kermit.misc
  19920. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!emory!swrinde!cs.utexas.edu!uunet!world!jeffb
  19921. From: jeffb@world.std.com (Jeffrey T Berntsen)
  19922. Subject: Re: GNU implementation of kermit :-)
  19923. Message-Id: <Cx4t2n.s1@world.std.com>
  19924. Organization: The World @ Software Tool & Die
  19925. References: <36ou5m$5ou@canopus.cc.umanitoba.ca> <36phpb$i9b@apakabar.cc.columbia.edu>
  19926. Date: Tue, 4 Oct 1994 04:42:23 GMT
  19927. Lines: 29
  19928. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  19929.  
  19930. fdc@fdc.cc.columbia.edu (Frank da Cruz) writes:
  19931.  
  19932. >In article <36ou5m$5ou@canopus.cc.umanitoba.ca> rahardj@cc.umanitoba.ca (Budi  
  19933. >Rahardjo) writes:
  19934. >> Re: the thread on compyrights/policies etc.
  19935. >> Maybe what we need is a GNU implementation of kermit :-)
  19936. >> Or if they cannot use kermit, then invent GNUprotocol.
  19937. >> 
  19938. >I don't get it.  Why create a parallel universe?  What would GNU
  19939. >Kermit get *you* that you don't already get from Columbia?  Public
  19940. >domain software than anybody could sell?  No...  Software that costs *you*
  19941. >less than Columbia Kermit (i.e. nothing)?  No...  Then what?
  19942.  
  19943. More reasonable distribution.  NOT just Internet FTP.  The GNU project doesn't
  19944. CARE how their software is distributed as long as it's done more or less freely
  19945. (they don't seem to have any problems with CD-ROM's for instance), and source
  19946. is made freely (they also don't seem to have any problems with reasonable
  19947. handling and media charges) available.
  19948.  
  19949. >To recreate the Kermit universe will take years of work by lots of people,
  19950. >and some of them will have to be full-time, or it won't succeed.  In other
  19951. >words, you'll end up just like us, and for that matter the FSF -- needing 
  19952. >operating funds.  Unless you are independently wealthy, and willing to 
  19953. >bankroll the operation out of your pocket.
  19954.  
  19955. Hmmmm..  Now you DO have a point there...
  19956.  
  19957. Jeff Berntsen
  19958. jeffb@world.std.com
  19959.  
  19960. From news@columbia.edu Tue Oct  4 05:26:32 1994
  19961. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA29182
  19962.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 4 Oct 1994 01:28:38 -0400
  19963. Received: by apakabar.cc.columbia.edu id AA10461
  19964.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 4 Oct 1994 01:28:36 -0400
  19965. Path: news.columbia.edu!panix!MathWorks.Com!news.duke.edu!news-feed-1.peachnet.edu!emory!swrinde!howland.reston.ans.net!math.ohio-state.edu!usenet
  19966. From: davis@pacific.mps.ohio-state.edu
  19967. Newsgroups: comp.protocols.kermit.misc
  19968. Subject: Re: USing Unix editors while under kermit
  19969. Date: 4 Oct 1994 05:26:32 GMT
  19970. Organization: None
  19971. Lines: 67
  19972. Message-Id: <36qp28$lbm@mathserv.mps.ohio-state.edu>
  19973. References: <1994Sep29.122443.7@scff.chinalake.navy.mil>
  19974. Reply-To: davis@amy.tch.harvard.edu
  19975. Nntp-Posting-Host: pacific.mps.ohio-state.edu
  19976. X-Newsreader: S-Lang: slrn (0.1.4.0)
  19977. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  19978.  
  19979. In article <1994Sep29.122443.7@scff.chinalake.navy.mil>, mbguest@scfe.chinalake.navy.mil writes:
  19980.  : The oddest part is that the program works fine, arrow keys in
  19981.  : application, etc - in calling into a VMS system. Is this some
  19982.  : sort of anti-unix plot <G>.
  19983.  
  19984. It might have something to do with MS-Kermit sending 8 bit control sequences
  19985. to your Unix editor.  
  19986.  
  19987. If you want an editor that works with these control sequences, I suggest
  19988. that you try JED.  I created and tested JED using MS-Kermit.  It even
  19989. exploits MS-Kermit running on a color PC through color syntax highlighting,
  19990. etc....  See jed/doc/color.txt for using JED with MS-Kermit.
  19991.  
  19992.  
  19993. JED is available from amy.tch.harvard.edu.  The latest version is 0.97-5b.
  19994.  
  19995. List of some of JED's features:
  19996.  
  19997.     Runs under Unix, VMS, OS/2, and MSDOS (all versions)
  19998.     
  19999.            *  XWindows
  20000.        *  DJGPP compiled version for 386/486 PCs support up to
  20001.              256 Megs of Virtual Memory.  This also is able
  20002.                  to run in a Windows DOS Box.
  20003.          
  20004.     Emacs*, wordstar*, EDT* emulation
  20005.     C, fortran*, tex*, text editing modes
  20006.     
  20007.            * Color Syntax Highlighting on
  20008.            ALL systems including dialup --- not just XWindows
  20009.            
  20010.     C-like extension language called S-Lang.
  20011.     User configurable (bind keys, write functions, etc....)
  20012.     Region highlighting (even on character based terminals*)
  20013.     8 bit clean, edit binary files too.
  20014.     Rectangular (box) cut/paste
  20015.     Backup and autosave files
  20016.     Full multilevel undo
  20017.     Regular expressions
  20018.     Gnu Emacs compatable info reader*
  20019.     Dynamic Abbreviation Expansion* (ESC /)
  20020.     Calendar*
  20021.     Mail* and elm like rmail* 
  20022.     Dired directory editor*
  20023.     Automatic horizontal pan/scroll  (configurable)
  20024.     Parenthesis matching/blinking
  20025.     Filename, buffername, function name completion
  20026.     Menu driven for novice users*
  20027.     Incremental search/replace*
  20028.     Sorting
  20029.     No hardcoded buffer/line limits
  20030.     Multiple windows and buffers
  20031.     Keyboard macros with macro query feature.
  20032.     Buffer mode lines are configurable, e.g., display time, line number, etc...
  20033.     Ispell*
  20034.     Shell commands and ``interactive'' shell*
  20035.  
  20036.      * Note:  these functions are written in the extension language.
  20037. --
  20038.      _____________
  20039. #___/John E. Davis\_________________________________________________________
  20040. #
  20041. # internet: davis@amy.tch.harvard.edu
  20042. #   bitnet: davis@ohstpy
  20043. #   office: 617-735-6746
  20044. #
  20045.  
  20046.  
  20047. From news@columbia.edu Sun Oct  4 03:30:54 1994
  20048. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA01303
  20049.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 4 Oct 1994 02:21:27 -0400
  20050. Received: by apakabar.cc.columbia.edu id AA12718
  20051.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 4 Oct 1994 02:21:24 -0400
  20052. Path: news.columbia.edu!panix!MathWorks.Com!zombie.ncsc.mil!romulus.ncsc.mil!not-for-mail
  20053. From: richh@romulus.ncsc.mil (Richard L. Hamilton)
  20054. Newsgroups: comp.protocols.kermit.misc
  20055. Subject: looking for suggested parameters
  20056. Date: 3 Oct 1994 23:30:54 -0400
  20057. Organization: ncsc
  20058. Lines: 21
  20059. Message-Id: <36qi9e$oeb@romulus.ncsc.mil>
  20060. Nntp-Posting-Host: romulus
  20061. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  20062.  
  20063. Can anyone suggest "ideal" parameters for use at 9600 to 14400
  20064. (V.32 or V.32bis) with compression and error checking?
  20065.  
  20066. Right now, my .mykermrc file looks something like:
  20067.    set block-check 3
  20068.    set buffers 131072 131072
  20069.    set file name literal
  20070.    set file type binary
  20071.    set receive packet-length 4096
  20072.    set window-size 31
  20073.    ...
  20074.  
  20075. That's between a fast Un*x system and my relatively wimpy 3b1,
  20076. serial port on the 3b1 set at 19200 (fastest it goes), and
  20077. the modem actually maxing out at 1st V.32bis fallback speed of
  20078. 12000 baud.
  20079.  
  20080. -- 
  20081.                       I compute, therefore I am.
  20082. My opinions are strictly by own, and should not be construed to represent
  20083. anyone else.
  20084.  
  20085. From news@columbia.edu Tue Oct  4 00:04:06 1994
  20086. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA03567
  20087.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 4 Oct 1994 03:32:37 -0400
  20088. Received: by apakabar.cc.columbia.edu id AA14856
  20089.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 4 Oct 1994 03:32:36 -0400
  20090. Newsgroups: comp.protocols.kermit.misc
  20091. Path: news.columbia.edu!panix!MathWorks.Com!news.kei.com!eff!news.duke.edu!godot.cc.duq.edu!newsfeed.pitt.edu!dsinc!netnews.upenn.edu!news.drexel.edu!news.ge.com!knight.vf.ge.com!not-for-mail
  20092. From: tcmayo@eng106.PSF.GE.COM (tom mayo)
  20093. Subject: Kermit on CD RAM
  20094. Message-Id: <36q65m$pq@eng106.PSF.GE.COM>
  20095. Lines: 27
  20096. Sender: news@knight.vf.ge.com
  20097. Nntp-Posting-Host: eng106.psf.ge.com
  20098. Organization: Martin Marietta Defense Systems
  20099. Date: Tue, 4 Oct 1994 00:04:06 GMT
  20100. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  20101.  
  20102. If you are feeling really grouchy and uptight about the ongoing
  20103. Kermit / CD ROM discussions, you may not want to read this.
  20104.  
  20105. +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  20106.  
  20107. Oh, wow.  This new Cheesebox 5000 computer is really snazzy.  It's just
  20108. like a TV---but with a typewriter too!
  20109.  
  20110. Well, I just got this thing, and wouldn't you know, it's got one of
  20111. those CD RAM drives.  Amazing!
  20112.  
  20113. Anyway, I think this CD Rome thing is really great, and I want to get
  20114. Kermit because I always loved the Muppets---especially the frog!
  20115.  
  20116. Do they sell Kermit for my CD RAM?  I can't wait to find out because
  20117. the computer also came with a ZModem too.  Maybe I could get Kermit
  20118. to sing "It ain't easy being green" over the Zmodem to my sister in
  20119. Topeka.
  20120.  
  20121. -George Creamcheese
  20122.  
  20123. +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  20124.  
  20125. This is my personal creation to be used for entertainment purposes
  20126. only.  Please forward all flames to /dev/null.
  20127.  
  20128. -Tom Mayo  N1RMU  tcmayo@mntr02.psf.ge.com
  20129.  
  20130. From news@columbia.edu Tue Oct  4 08:57:06 1994
  20131. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA06908
  20132.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 4 Oct 1994 05:01:25 -0400
  20133. Received: by apakabar.cc.columbia.edu id AA17461
  20134.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 4 Oct 1994 05:01:23 -0400
  20135. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!EU.net!sunic!news.funet.fi!zippo.uwasa.fi!uwasa.fi!ts
  20136. From: ts@uwasa.fi (Timo Salmi)
  20137. Newsgroups: comp.protocols.kermit.misc
  20138. Subject: Re: Columbia University's Kermit copyright
  20139. Date: 4 Oct 1994 08:57:06 GMT
  20140. Organization: University of Vaasa
  20141. Lines: 70
  20142. Message-Id: <36r5d2$28f@zippo.uwasa.fi>
  20143. References: <36h490$9hc@apakabar.cc.columbia.edu> <36pbtj$cc0@usenety1.news.prodigy.com> <36pipa$jp4@apakabar.cc.columbia.edu>
  20144. Nntp-Posting-Host: uwasa.fi
  20145. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  20146.  
  20147. I am writing this time as a management scientist and consultant, not
  20148. as Garbo's moderator.
  20149.  
  20150. In article <36pipa$jp4@apakabar.cc.columbia.edu>
  20151. jaltman@watsun.cc.columbia.edu (Jeffrey Altman) writes:
  20152.  
  20153. :Kermit is FREE.  If you use it without ordering a manual, no big deal.
  20154. :Its FREE.  If you need technical support, you will get it FREE.  However,
  20155.  
  20156. Here is the core of your the problem provided that you are looking
  20157. for a good solution. You, that this the good Columbia people, may
  20158. have either of the two goals:
  20159.  
  20160. 1) Finding a solution that enhances YOUR situation both timewise and
  20161. financially. 
  20162.  
  20163. 2) Using every possible argument to defend retaining exactly the
  20164. current practices whether they are optimal for you or not. 
  20165.  
  20166. Please do not be offended, since I am trying to analyze this as
  20167. dispassionately as I can as a management scientist now.  I am afraid
  20168. that your (Columbia's) goal is rather clearly the second one, that
  20169. is pushing the problem under the carpet.  You wish the problem to go
  20170. away by itself, or deny that you have a problem by rationalizing
  20171. keeping exactly your current practices.  (That's why Frank has even
  20172. himself said he keeps repeating himself).  You have every right to
  20173. have this goal, but I can assure you that it is bad management.  I
  20174. wish you to be aware what your implicit assumptions in this are. 
  20175. Please do not deceive yourselves. 
  20176.  
  20177. Assume, however, your goal were the first, or that you can bring
  20178. yourself to redefine your true goal to be the first.  In this case
  20179. your problem is not generating enough funds.  One of the main
  20180. culprits for that is the FREE support you give.  That, not the
  20181. CDROMs.  Whatever you decide or have decided with respect to CDROMs
  20182. will not solve your problem.  Before one can begin to solve a
  20183. management problem one must realize amd definbe what the true
  20184. problem is, and here it is not overly difficult to pinpoint.  Onece
  20185. you have the problem pinpointed, then, if you truly want to solve
  20186. it, you can start looking how well the alternative strategies work
  20187. for your goal.
  20188.  
  20189. :we would like you to order the manual.  It reduces the need for technical
  20190. :support and makes it easier to provide it when you do need it.  But
  20191. :do you have to pay something, yes for the manual, no for anything else.
  20192.  
  20193. :Can we get onto something else?
  20194.  
  20195. Why!?  Is ending the discussion really the topmost priority.  Well,
  20196. if you wish to, but problems are not solved by ignoring them.  If
  20197. one has a dilemma, and truly wants to solve it, on does not keep
  20198. repeating that the discussion should cease.  Decide.  Is your goal
  20199. making this discussion to go away, or having a better solution than
  20200. what you no have.  Of course I have a vexed interest, but even so,
  20201. you are not making the best of this from your OWN point of view
  20202. either. 
  20203.  
  20204. Summary: Decide whether defending you position or solving your
  20205. management problem is your underlying goal.  If the latter, identify
  20206. your problems, and assess the conquences of the different
  20207. alternatives on your goals.  Do it dispassionately and
  20208. systematically. 
  20209.  
  20210.    All the best, Timo
  20211.  
  20212. ..................................................................
  20213. Prof. Timo Salmi      Co-moderator of comp.archives.msdos.announce
  20214. Moderating at garbo.uwasa.fi anonymous FTP  archives  128.214.87.1
  20215. Faculty of Accounting & Industrial Management; University of Vaasa
  20216. Internet: ts@uwasa.fi   BBS +(358)-61-3170972; FIN-65101,  Finland
  20217.  
  20218. From news@columbia.edu Tue Oct  4 09:04:52 1994
  20219. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA07199
  20220.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 4 Oct 1994 05:11:37 -0400
  20221. Received: by apakabar.cc.columbia.edu id AA17776
  20222.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 4 Oct 1994 05:11:36 -0400
  20223. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!EU.net!sunic!news.funet.fi!zippo.uwasa.fi!uwasa.fi!ts
  20224. From: ts@uwasa.fi (Timo Salmi)
  20225. Newsgroups: comp.protocols.kermit.misc
  20226. Subject: Re: Columbia University's Kermit copyright
  20227. Date: 4 Oct 1994 09:04:52 GMT
  20228. Organization: University of Vaasa
  20229. Lines: 14
  20230. Message-Id: <36r5rk$2bo@zippo.uwasa.fi>
  20231. References: <36h490$9hc@apakabar.cc.columbia.edu> <36pbtj$cc0@usenety1.news.prodigy.com> <Cx44xq.IJw@ritz.mordor.com>
  20232. Nntp-Posting-Host: uwasa.fi
  20233. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  20234.  
  20235. In article <Cx44xq.IJw@ritz.mordor.com> kudut@ritz.mordor.com (Ken Udut) writes:
  20236. :Remember - this too, shall pass (the dilemna on this newsgroup)
  20237.  
  20238. Sigh!  Which do the gentle reades consider the bigger problem in
  20239. here? The existince of this discussion or Columbia's funding and
  20240. time allocation dilemma?
  20241.  
  20242.    All the best, Timo
  20243.  
  20244. ..................................................................
  20245. Prof. Timo Salmi      Co-moderator of comp.archives.msdos.announce
  20246. Moderating at garbo.uwasa.fi anonymous FTP  archives  128.214.87.1
  20247. Faculty of Accounting & Industrial Management; University of Vaasa
  20248. Internet: ts@uwasa.fi   BBS +(358)-61-3170972; FIN-65101,  Finland
  20249.  
  20250. From news@columbia.edu Tue Oct  4 09:06:53 1994
  20251. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA08336
  20252.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 4 Oct 1994 05:52:31 -0400
  20253. Received: by apakabar.cc.columbia.edu id AA19323
  20254.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 4 Oct 1994 05:52:30 -0400
  20255. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!EU.net!sun4nl!philapd!apdnews!taren2la.apd.dec.com!groot
  20256. From: groot@apd.dec.com (Henk de Groot)
  20257. Newsgroups: comp.protocols.kermit.misc
  20258. Subject: How to catch SHIFT-ESC in kermit
  20259. Message-Id: <groot.781261613@taren2la.apd.dec.com>
  20260. Date: 4 Oct 94 09:06:53 GMT
  20261. Sender: news@apd.dec.com
  20262. Reply-To: groot@apd.dec.com (Henk de Groot)
  20263. Lines: 44
  20264. X-Disclaimer: This opinion is mine alone
  20265. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  20266.  
  20267. Hello Kermit users,
  20268.  
  20269. I have a problem. Our kermit version is MS-Kermit 3.13 with a patch file with
  20270. 21 patches in it.
  20271.  
  20272. We have to build an application that has to responds to the key combination
  20273. SHIFT-ESC. In the key-table you can catch many key combinations but I am
  20274. unable to map SHIFT-ESC to something different than ESC alone so I can't
  20275. make a distinction between ESC with or without SHIFT.
  20276.  
  20277. Is there a way to make it work? It is no problem to do this with other
  20278. keys (like function keys), only ESC seems to behave differently. I can
  20279. calculate what keycode SHIFT-ESC should have (scancode 1 + 256 + 512 = 769)
  20280. but
  20281.  
  20282.     set key \852 hello
  20283.  
  20284. works for SHIFT+F1 (outputs hello) but
  20285.  
  20286.     set key \769 hello
  20287.  
  20288. doesn't work for SHIFT+ESC!
  20289.  
  20290. When redefining the ESC key itself by
  20291.  
  20292.     set key \27 hello
  20293.  
  20294. also SHIFT+ESC outputs hello! (B.T.W. "set key \257 hello" doesn't work
  20295. either, so we can not make a distinction between ESC and Ctrl-[ too, but
  20296. that's not a problem for us at this moment).
  20297.  
  20298. Any suggestions to solve this problem are welcome (We also tried the product
  20299. KEATerm under Windows and that one will do it correctly; we need something
  20300. running under DOS however!)
  20301.  
  20302. Kind Regards,
  20303.  
  20304.  
  20305. Henk.
  20306.  
  20307. --
  20308.   /   / de Groot  Dep: ALD2          | E-Mail: groot@apd.dec.com
  20309.  /---/ __  __  /  Tel: +31 55 432104 | Corp: Digital Equipment Corporation
  20310. /   / (-_ / / /(  Loc: FP-B09        | Site: Apeldoorn, The Netherlands
  20311.  
  20312. From news@columbia.edu Tue Oct  4 10:19:40 1994
  20313. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA08584
  20314.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 4 Oct 1994 07:41:23 -0400
  20315. Received: by apakabar.cc.columbia.edu id AA23236
  20316.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 4 Oct 1994 07:41:22 -0400
  20317. Newsgroups: comp.protocols.kermit.misc
  20318. Path: news.columbia.edu!panix!MathWorks.Com!news.duke.edu!eff!wariat.org!malgudi.oar.net!chemabs!swl07
  20319. From: swl07@cas.org (Steven W. Layten)
  20320. Subject: Re: Columbia University's Kermit copyright
  20321. Message-Id: <1994Oct4.101940.24819@chemabs.uucp>
  20322. Sender: usenet@chemabs.uucp
  20323. Cc: slayten@cas.org
  20324. Organization: Chemical Abstracts Service, Columbus, Ohio
  20325. References: <9409300557.AA12036@simtel.coast.net> <36h490$9hc@apakabar.cc.columbia.edu> <36pbtj$cc0@usenety1.news.prodigy.com>
  20326. Date: Tue, 4 Oct 1994 10:19:40 GMT
  20327. Lines: 71
  20328.  
  20329.  
  20330. Bill Davidson (davidsen@usenety1.news.prodigy.com) writes:
  20331. >I totally fail to see how the funding of Kermit is diferent from the way
  20332. >shareware works. You want people to use the software and buy the manual.
  20333. >SO DO WE! But the idea that more people will buy the manuals if fewer
  20334. >people have the software completely eludes me.
  20335. >
  20336. >My impression is that people in this group are trying VERY hard to keep
  20337. >you from shooting yourself in the foot, and all you see is a profit
  20338. >motive.
  20339.  
  20340. As one of the normally "silent readers" of this discussion, I'm going to
  20341. throw caution to the winds and add my comments.
  20342.  
  20343. I believe that the funding of Kermit IS different from shareware in that
  20344. Columbia provides a great deal of support via the network that shareware
  20345. authors don't.
  20346.  
  20347. People seem to expect that the Kermit group can and will always provide
  20348. technical support for free.  I know that I have asked for support from
  20349. both fdc and jrd, and never been denied.  Because they have a reputation
  20350. and a history of providing such excellent support, it is expected to
  20351. continue for everyone.
  20352.  
  20353. On the other hand, I expect that most shareware software users would not
  20354. expect such free support from a shareware author.  (Though most comm
  20355. programs I'm aware of that were shareware have now gone commercial,) let me
  20356. use Telix as an example.  If I knew the net address of the telix author, I
  20357. would probably NOT send a request for support without first sending the
  20358. shareware registration.
  20359.  
  20360. Thus, I believe that shareware funding IS different from Kermit funding in the
  20361. expectations of the users. (at least of this individual user. :-)  Most
  20362. software vendors are struggling with the problem of support.  Many
  20363. commercial ventures have moved away from free support.  
  20364.  
  20365. I agree with Frank -- putting Kermit on a CD-ROM and distributing to more
  20366. and more persons without a way to pick up funding for the support is
  20367. likely to kill the Kermit effort.  All resources would have to go to
  20368. support and no further development.  I'm sure that the Kermit group would
  20369. like to come up with an alternative funding mechanism, but being a
  20370. university, etc. etc. limits their alternatives.  I don't believe that
  20371. they could go to "900-number" support, or some of the other suggestions
  20372. made on this list.
  20373.  
  20374. Having said that, let me point out that the above is ONLY MY OPINION, and
  20375. MY OPINION DOESN'T COUNT.  Both sides of this discussion have their
  20376. positions, and I can see them both and respect them both.  I'm not trying
  20377. to cast dispersions on anyone.  I don't intend to criticize anyone.  If
  20378. I've offended, I hereby apologise.
  20379.  
  20380. Now, I'd like to see this discussion end.  If you have suggestions as to
  20381. how Columbia can increase revenue, I'd guess that they'd be willing to
  20382. review them in a private communcation.  If you have a suggestion to Timo
  20383. and/or Keith about how they might be able to easily keep the software on
  20384. their ftp site, but not distribute it on their CD-ROM, they might even
  20385. entertain those suggestions IN A PRIVATE COMMUNICATION.  We've heard both
  20386. sides of the story.  Now, rather than slinging any more arrows, let's drop
  20387. it.
  20388.  
  20389. Donning my asbestos underwear, if you have comments about MY opinions,
  20390. send them to me in private, and lets stop cluttering this list.
  20391.  
  20392. Regards,
  20393.  
  20394. Steve Layten
  20395. -- 
  20396. Steven W. Layten, Senior Engineer
  20397. Chemical Abstracts Service, PO Box 3012, Columbus, OH 43210    +1 614 447 3600
  20398. INET: slayten@cas.org                            UUCP: osu-cis!chemabs!slayten
  20399. # # # Speaking only for myself, and NOT for Chemical Abstracts Service! # # #
  20400.  
  20401. From news@columbia.edu Tue Oct  4 12:28:34 1994
  20402. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA10424
  20403.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 4 Oct 1994 08:28:38 -0400
  20404. Received: by apakabar.cc.columbia.edu id AA25243
  20405.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 4 Oct 1994 08:28:36 -0400
  20406. Path: news.columbia.edu!usenet
  20407. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  20408. Newsgroups: comp.protocols.kermit.misc
  20409. Subject: Re: looking for suggested parameters
  20410. Date: 4 Oct 1994 12:28:34 GMT
  20411. Organization: Columbia University
  20412. Lines: 29
  20413. Message-Id: <36rhpi$okp@apakabar.cc.columbia.edu>
  20414. References: <36qi9e$oeb@romulus.ncsc.mil>
  20415. Nntp-Posting-Host: fdc.cc.columbia.edu
  20416. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  20417.  
  20418. In article <36qi9e$oeb@romulus.ncsc.mil> richh@romulus.ncsc.mil (Richard L.  
  20419. Hamilton) writes:
  20420. > Can anyone suggest "ideal" parameters for use at 9600 to 14400
  20421. > (V.32 or V.32bis) with compression and error checking?
  20422. > Right now, my .mykermrc file looks something like:
  20423. >    set block-check 3
  20424. >    set buffers 131072 131072
  20425. >    set receive packet-length 4096
  20426. >    set window-size 31 ...
  20427. > That's between a fast Un*x system and my relatively wimpy 3b1,
  20428. > serial port on the 3b1 set at 19200 (fastest it goes), and
  20429. > the modem actually maxing out at 1st V.32bis fallback speed of
  20430. > 12000 baud.
  20431. >
  20432. You might be able to use control-character unprefixing to squeeze out
  20433. a little additional speed, but the 3B1 itself is going to be the limiting
  20434. factor.  In fact, here is a case where huge buffers might actually slow
  20435. you down.  I have had reports that there is a certain size (of Kermit's
  20436. "core image") beyond which the 3b1 will swap itself into oblivion.  So
  20437. you might actually want to try less window slots, shorter packets.
  20438.  
  20439. Also, as an antiquated system running an old version of System V, hardware
  20440. flow control is not available, so buffer overruns are likely.  If your
  20441. modem allows it, you might want to set up Xon/Xoff flow control between
  20442. Kermit and your modem.
  20443.  
  20444. - Frank
  20445. x
  20446. x
  20447.  
  20448. From news@columbia.edu Tue Oct  4 12:28:49 1994
  20449. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA11108
  20450.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 4 Oct 1994 08:44:08 -0400
  20451. Received: by apakabar.cc.columbia.edu id AA26003
  20452.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 4 Oct 1994 08:44:06 -0400
  20453. Path: news.columbia.edu!sol.ctr.columbia.edu!news.cs.columbia.edu!news.pipeline.com!uunet!MathWorks.Com!news.duke.edu!concert!news.wfu.edu!matthews
  20454. From: matthews@wfu.edu (Rick Matthews)
  20455. Newsgroups: comp.protocols.kermit.misc
  20456. Subject: Re: Columbia University's Kermit copyright
  20457. Date: 4 Oct 1994 12:28:49 GMT
  20458. Organization: Wake Forest University
  20459. Lines: 43
  20460. Message-Id: <36rhq1$rpo@eis.wfunet.wfu.edu>
  20461. References: <9409300557.AA12036@simtel.coast.net> <36h490$9hc@apakabar.cc.columbia.edu> <36pbtj$cc0@usenety1.news.prodigy.com> <36ps3p$h2s@eis.wfunet.wfu.edu> <36qh8u$j7n@canopus.cc.umanitoba.ca>
  20462. Nntp-Posting-Host: acg60.wfunet.wfu.edu
  20463. X-Newsreader: TIN [version 1.2 PL2]
  20464. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  20465.  
  20466. Budi Rahardjo (rahardj@cc.umanitoba.ca) wrote:
  20467. : In <36ps3p$h2s@eis.wfunet.wfu.edu> matthews@wfu.edu (Rick Matthews) writes:
  20468.  
  20469. : : Simple:  Kermit is free; shareware is not.
  20470.  
  20471. : : I am free to scatter Kermit all over my department, making it the
  20472. : : standard terminal emulation package for faculty, students, custodians,
  20473. : : etc., without paying a penny.
  20474.  
  20475. : Do they buy the manual ? What's going to happen with they have problems
  20476. : and call Coulmbia ? Either through CD-ROM or through you, these people
  20477. : do not get the manuals and hence create more problems for the Kermit's
  20478. : group when they call the Kermit's group.
  20479.  
  20480. We have four copies of the manual.  I keep one at home, one in my
  20481. office, and two in our department computer lab, available to everyone
  20482. to whom I distribute Kermit.
  20483.  
  20484. Since I have appended a custom startup file appropriate for our
  20485. facilty, and I supply a two-page description of how to get started,
  20486. there are very few problems or questions.  Another nice touch is that
  20487. I have reconfigured the keymap so that PageUp, PageDown, Insert,
  20488. Delete, and the function keys all behave more or less the same way in
  20489. emacs as they do in WordPerfect for DOS.  That gives us a near-zero
  20490. learning curve for editing.
  20491.  
  20492. When people do have problems, they
  20493.  
  20494. 1.   RTFM.
  20495. 2.   Ask me.  If I don't know the answer, I
  20496.     a.  RTFM.
  20497.     b.  E-mail Columbia.
  20498.  
  20499. Less than one problem per two years in our department makes it to
  20500. 2(b).  That's less than 0.125 support requests per manual per year.
  20501. What do you think the ratio of support requests to manuals purchased
  20502. is for people who get Kermit off a CD-ROM?
  20503.  
  20504. --
  20505. Rick Matthews                     matthews@wfu.edu            Ham radio:
  20506. Wake Forest University            910-759-5340   (Voice)      WA4GSP
  20507. Winston-Salem, NC 27109-7507      910-759-6142   (FAX)
  20508.  
  20509.  
  20510. From news@columbia.edu Tue Oct  4 12:12:39 1994
  20511. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA11876
  20512.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 4 Oct 1994 08:54:11 -0400
  20513. Received: by apakabar.cc.columbia.edu id AA26518
  20514.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 4 Oct 1994 08:54:10 -0400
  20515. Newsgroups: comp.protocols.kermit.misc
  20516. Path: news.columbia.edu!sol.ctr.columbia.edu!news.cs.columbia.edu!news.pipeline.com!uunet!news.sprintlink.net!malgudi.oar.net!chemabs!swl07
  20517. From: swl07@cas.org (Steven W. Layten)
  20518. Subject: Re: Columbia University's Kermit copyright
  20519. Message-Id: <1994Oct4.121239.2205@chemabs.uucp>
  20520. Sender: usenet@chemabs.uucp
  20521. Cc: slayten@cas.org
  20522. Organization: Chemical Abstracts Service, Columbus, Ohio
  20523. References: <9409300557.AA12036@simtel.coast.net> <36h490$9hc@apakabar.cc.columbia.edu> <36pbtj$cc0@usenety1.news.prodigy.com>
  20524. Date: Tue, 4 Oct 1994 12:12:39 GMT
  20525. Lines: 71
  20526.  
  20527.  
  20528. Bill Davidson (davidsen@usenety1.news.prodigy.com) writes:
  20529. >I totally fail to see how the funding of Kermit is diferent from the way
  20530. >shareware works. You want people to use the software and buy the manual.
  20531. >SO DO WE! But the idea that more people will buy the manuals if fewer
  20532. >people have the software completely eludes me.
  20533. >
  20534. >My impression is that people in this group are trying VERY hard to keep
  20535. >you from shooting yourself in the foot, and all you see is a profit
  20536. >motive.
  20537.  
  20538. As one of the normally "silent readers" of this discussion, I'm going to
  20539. throw caution to the winds and add my comments.
  20540.  
  20541. I believe that the funding of Kermit IS different from shareware in that
  20542. Columbia provides a great deal of support via the network that shareware
  20543. authors don't.
  20544.  
  20545. People seem to expect that the Kermit group can and will always provide
  20546. technical support for free.  I know that I have asked for support from
  20547. both fdc and jrd, and never been denied.  Because they have a reputation
  20548. and a history of providing such excellent support, it is expected to
  20549. continue for everyone.
  20550.  
  20551. On the other hand, I expect that most shareware software users would not
  20552. expect such free support from a shareware author.  (Though most comm
  20553. programs I'm aware of that were shareware have now gone commercial,) let me
  20554. use Telix as an example.  If I knew the net address of the telix author, I
  20555. would probably NOT send a request for support without first sending the
  20556. shareware registration.
  20557.  
  20558. Thus, I believe that shareware funding IS different from Kermit funding in the
  20559. expectations of the users. (at least of this individual user. :-)  Most
  20560. software vendors are struggling with the problem of support.  Many
  20561. commercial ventures have moved away from free support.  
  20562.  
  20563. I agree with Frank -- putting Kermit on a CD-ROM and distributing to more
  20564. and more persons without a way to pick up funding for the support is
  20565. likely to kill the Kermit effort.  All resources would have to go to
  20566. support and no further development.  I'm sure that the Kermit group would
  20567. like to come up with an alternative funding mechanism, but being a
  20568. university, etc. etc. limits their alternatives.  I don't believe that
  20569. they could go to "900-number" support, or some of the other suggestions
  20570. made on this list.
  20571.  
  20572. Having said that, let me point out that the above is ONLY MY OPINION, and
  20573. MY OPINION DOESN'T COUNT.  Both sides of this discussion have their
  20574. positions, and I can see them both and respect them both.  I'm not trying
  20575. to cast dispersions on anyone.  I don't intend to criticize anyone.  If
  20576. I've offended, I hereby apologise.
  20577.  
  20578. Now, I'd like to see this discussion end.  If you have suggestions as to
  20579. how Columbia can increase revenue, I'd guess that they'd be willing to
  20580. review them in a private communcation.  If you have a suggestion to Timo
  20581. and/or Keith about how they might be able to easily keep the software on
  20582. their ftp site, but not distribute it on their CD-ROM, they might even
  20583. entertain those suggestions IN A PRIVATE COMMUNICATION.  We've heard both
  20584. sides of the story.  Now, rather than slinging any more arrows, let's drop
  20585. it.
  20586.  
  20587. Donning my asbestos underwear, if you have comments about MY opinions,
  20588. send them to me in private, and lets stop cluttering this list.
  20589.  
  20590. Regards,
  20591.  
  20592. Steve Layten
  20593. -- 
  20594. Steven W. Layten, Senior Engineer
  20595. Chemical Abstracts Service, PO Box 3012, Columbus, OH 43210    +1 614 447 3600
  20596. INET: slayten@cas.org                            UUCP: osu-cis!chemabs!slayten
  20597. # # # Speaking only for myself, and NOT for Chemical Abstracts Service! # # #
  20598.  
  20599. From news@columbia.edu Tue Oct  4 12:45:27 1994
  20600. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA12648
  20601.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 4 Oct 1994 09:04:38 -0400
  20602. Received: by apakabar.cc.columbia.edu id AA27170
  20603.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 4 Oct 1994 09:04:37 -0400
  20604. Path: news.columbia.edu!sol.ctr.columbia.edu!news.cs.columbia.edu!news.pipeline.com!uunet!EU.net!uknet!acorn!not-for-mail
  20605. From: agodwin@acorn.co.uk (Adrian Godwin)
  20606. Newsgroups: comp.protocols.kermit.misc
  20607. Subject: Re: Why is Kermit not popular on BBS-es?
  20608. Date: 4 Oct 1994 13:45:27 +0100
  20609. Organization: Acorn Computers Ltd, Cambridge, UK
  20610. Lines: 18
  20611. Message-Id: <36rip8$l4i@acorn.acorn.co.uk>
  20612. References: <36g46d$m36@cruella.ee.pdx.edu> <1994Sep30.085933.28315@cc.usu.edu>
  20613. Nntp-Posting-Host: acorn.acorn.co.uk
  20614. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  20615.  
  20616. In article <1994Sep30.085933.28315@cc.usu.edu>,
  20617. Joe Doupnik <jrd@cc.usu.edu> wrote:
  20618.  
  20619. >  What you can do is to notify BBS operators of this Kermit-Lite edition,
  20620. >once it has been released, and urge them to upgrade. We do recommend reading 
  20621. >the fine manual so that their systems can exploit the heck out of scripts
  20622. >and set long packets and sliding windows etc.
  20623.  
  20624. Excellent, but I'm afraid that you're going to have to help them get the
  20625. settings correct by including defaults (or a default .ini file) that
  20626. optimises transfers for typical PC-BBS systems. If you hope that they'll
  20627. buy the manual (or even read the instructions in detail) I'm afraid
  20628. that you're likely to be disappointed in many cases. 
  20629.  
  20630. -adrian
  20631.  
  20632.  
  20633.  
  20634.  
  20635. From news@columbia.edu Tue Oct  4 12:48:37 1994
  20636. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA12709
  20637.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 4 Oct 1994 09:05:13 -0400
  20638. Received: by apakabar.cc.columbia.edu id AA27212
  20639.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 4 Oct 1994 09:05:12 -0400
  20640. Path: news.columbia.edu!sol.ctr.columbia.edu!news.cs.columbia.edu!news.pipeline.com!uunet!heifetz.msen.com!simtel.coast.net!w8sdz
  20641. From: w8sdz@SimTel.Coast.NET (Keith Petersen)
  20642. Newsgroups: comp.protocols.kermit.misc
  20643. Subject: Re: Columbia University's Kermit copyright
  20644. Message-Id: <9410041248.AA26638@SimTel.Coast.NET>
  20645. Date: Tue, 4 Oct 1994 12:48:37 GMT
  20646. Organization: SimTel, the Coast to Coast Software Repository (tm)
  20647. References: <9409300557.AA12036@simtel.coast.net> <36h490$9hc@apakabar.cc.columbia.edu> <36pbtj$cc0@usenety1.news.prodigy.com> <1994Oct4.101940.24819@chemabs.uucp>
  20648. Lines: 15
  20649. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  20650.  
  20651. swl07@cas.org (Steven W. Layten) writes:
  20652. >I agree with Frank -- putting Kermit on a CD-ROM and distributing to more
  20653. >and more persons without a way to pick up funding for the support is
  20654. >likely to kill the Kermit effort.
  20655.  
  20656. It wouldn't kill the operation if Columbia offered their own CD-ROM.  If
  20657. it included the complete documentation it would sell like hotcakes.  The
  20658. proceeds of that would fund the entire Kermit operation.  They sell
  20659. 9-track tapes - why not CD-ROMs?
  20660.  
  20661. Keith
  20662. --
  20663. Keith Petersen
  20664. Internet: w8sdz@SimTel.Coast.NET    or      w8sdz@Vela.ACS.Oakland.Edu
  20665. Uucp: uunet!umich!vela!w8sdz                     BITNET: w8sdz@OAKLAND
  20666.  
  20667. From news@columbia.edu Tue Oct  4 12:16:49 1994
  20668. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA13116
  20669.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 4 Oct 1994 09:13:33 -0400
  20670. Received: by apakabar.cc.columbia.edu id AA27799
  20671.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 4 Oct 1994 09:13:32 -0400
  20672. Newsgroups: comp.protocols.kermit.misc
  20673. Path: news.columbia.edu!sol.ctr.columbia.edu!news.cs.columbia.edu!news.pipeline.com!uunet!haven.umd.edu!news.umbc.edu!eff!wariat.org!malgudi.oar.net!chemabs!swl26
  20674. From: swl26@cas.org ()
  20675. Subject: Re: Columbia University's Kermit copyright
  20676. Message-Id: <1994Oct4.121649.2556@chemabs.uucp>
  20677. Sender: usenet@chemabs.uucp
  20678. Cc: slayten@cas.org
  20679. Organization: Chemical Abstracts Service, Columbus, Ohio
  20680. References: <9409300557.AA12036@simtel.coast.net> <36h490$9hc@apakabar.cc.columbia.edu> <36pbtj$cc0@usenety1.news.prodigy.com>
  20681. Date: Tue, 4 Oct 1994 12:16:49 GMT
  20682. Lines: 66
  20683.  
  20684.  
  20685. Bill Davidson (davidsen@usenety1.news.prodigy.com) writes:
  20686. >I totally fail to see how the funding of Kermit is diferent from the way
  20687. >shareware works. You want people to use the software and buy the manual.
  20688. >SO DO WE! But the idea that more people will buy the manuals if fewer
  20689. >people have the software completely eludes me.
  20690. >
  20691. >My impression is that people in this group are trying VERY hard to keep
  20692. >you from shooting yourself in the foot, and all you see is a profit
  20693. >motive.
  20694.  
  20695. As one of the normally "silent readers" of this discussion, I'm going to
  20696. throw caution to the winds and add my comments.
  20697.  
  20698. I believe that the funding of Kermit IS different from shareware in that
  20699. Columbia provides a great deal of support via the network that shareware
  20700. authors don't.
  20701.  
  20702. People seem to expect that the Kermit group can and will always provide
  20703. technical support for free.  I know that I have asked for support from
  20704. both fdc and jrd, and never been denied.  Because they have a reputation
  20705. and a history of providing such excellent support, it is expected to
  20706. continue for everyone.
  20707.  
  20708. On the other hand, I expect that most shareware software users would not
  20709. expect such free support from a shareware author.  (Though most comm
  20710. programs I'm aware of that were shareware have now gone commercial,) let me
  20711. use Telix as an example.  If I knew the net address of the telix author, I
  20712. would probably NOT send a request for support without first sending the
  20713. shareware registration.
  20714.  
  20715. Thus, I believe that shareware funding IS different from Kermit funding in the
  20716. expectations of the users. (at least of this individual user. :-)  Most
  20717. software vendors are struggling with the problem of support.  Many
  20718. commercial ventures have moved away from free support.  
  20719.  
  20720. I agree with Frank -- putting Kermit on a CD-ROM and distributing to more
  20721. and more persons without a way to pick up funding for the support is
  20722. likely to kill the Kermit effort.  All resources would have to go to
  20723. support and no further development.  I'm sure that the Kermit group would
  20724. like to come up with an alternative funding mechanism, but being a
  20725. university, etc. etc. limits their alternatives.  I don't believe that
  20726. they could go to "900-number" support, or some of the other suggestions
  20727. made on this list.
  20728.  
  20729. Having said that, let me point out that the above is ONLY MY OPINION, and
  20730. MY OPINION DOESN'T COUNT.  Both sides of this discussion have their
  20731. positions, and I can see them both and respect them both.  I'm not trying
  20732. to cast dispersions on anyone.  I don't intend to criticize anyone.  If
  20733. I've offended, I hereby apologise.
  20734.  
  20735. Now, I'd like to see this discussion end.  If you have suggestions as to
  20736. how Columbia can increase revenue, I'd guess that they'd be willing to
  20737. review them in a private communcation.  If you have a suggestion to Timo
  20738. and/or Keith about how they might be able to easily keep the software on
  20739. their ftp site, but not distribute it on their CD-ROM, they might even
  20740. entertain those suggestions IN A PRIVATE COMMUNICATION.  We've heard both
  20741. sides of the story.  Now, rather than slinging any more arrows, let's drop
  20742. it.
  20743.  
  20744. Donning my asbestos underwear, if you have comments about MY opinions,
  20745. send them to me in private, and lets stop cluttering this list.
  20746.  
  20747. Regards,
  20748.  
  20749. Steve Layten
  20750.  
  20751. From news@columbia.edu Tue Oct  4 12:45:05 1994
  20752. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA13122
  20753.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 4 Oct 1994 09:13:35 -0400
  20754. Received: by apakabar.cc.columbia.edu id AA27807
  20755.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 4 Oct 1994 09:13:34 -0400
  20756. Control: cancel <1994Oct4.121239.2205@chemabs.uucp>
  20757. Newsgroups: comp.protocols.kermit.misc
  20758. Path: news.columbia.edu!sol.ctr.columbia.edu!news.cs.columbia.edu!news.pipeline.com!uunet!haven.umd.edu!news.umbc.edu!eff!wariat.org!malgudi.oar.net!chemabs!swl26
  20759. From: swl07@cas.org ()
  20760. Subject: cmsg cancel <1994Oct4.121239.2205@chemabs.uucp>
  20761. Message-Id: <1994Oct4.124505.4384@chemabs.uucp>
  20762. Originator: swl26@
  20763. Sender: usenet@chemabs.uucp
  20764. Organization: Chemical Abstracts Service, Columbus, Ohio
  20765. References: <36h490$9hc@apakabar.cc.columbia.edu> <36pbtj$cc0@usenety1.news.prodigy.com> <1994Oct4.121239.2205@chemabs.uucp>
  20766. Date: Tue, 4 Oct 1994 12:45:05 GMT
  20767. Lines: 1
  20768. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  20769.  
  20770. <1994Oct4.121239.2205@chemabs.uucp> was cancelled from within rn.
  20771.  
  20772. From news@columbia.edu Tue Oct  4 12:19:21 1994
  20773. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA14736
  20774.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 4 Oct 1994 09:40:27 -0400
  20775. Received: by apakabar.cc.columbia.edu id AA29791
  20776.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 4 Oct 1994 09:40:26 -0400
  20777. Newsgroups: comp.protocols.kermit.misc
  20778. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!news.sprintlink.net!malgudi.oar.net!chemabs!swl07
  20779. From: swl07@cas.org (Steven W. Layten)
  20780. Subject: Re: Columbia University's Kermit copyright
  20781. Message-Id: <1994Oct4.121921.2752@chemabs.uucp>
  20782. Sender: usenet@chemabs.uucp
  20783. Cc: slayten@cas.org
  20784. Organization: Chemical Abstracts Service, Columbus, Ohio
  20785. References: <9409300557.AA12036@simtel.coast.net> <36h490$9hc@apakabar.cc.columbia.edu> <36pbtj$cc0@usenety1.news.prodigy.com>
  20786. Date: Tue, 4 Oct 1994 12:19:21 GMT
  20787. Lines: 71
  20788.  
  20789.  
  20790. Bill Davidson (davidsen@usenety1.news.prodigy.com) writes:
  20791. >I totally fail to see how the funding of Kermit is diferent from the way
  20792. >shareware works. You want people to use the software and buy the manual.
  20793. >SO DO WE! But the idea that more people will buy the manuals if fewer
  20794. >people have the software completely eludes me.
  20795. >
  20796. >My impression is that people in this group are trying VERY hard to keep
  20797. >you from shooting yourself in the foot, and all you see is a profit
  20798. >motive.
  20799.  
  20800. As one of the normally "silent readers" of this discussion, I'm going to
  20801. throw caution to the winds and add my comments.
  20802.  
  20803. I believe that the funding of Kermit IS different from shareware in that
  20804. Columbia provides a great deal of support via the network that shareware
  20805. authors don't.
  20806.  
  20807. People seem to expect that the Kermit group can and will always provide
  20808. technical support for free.  I know that I have asked for support from
  20809. both fdc and jrd, and never been denied.  Because they have a reputation
  20810. and a history of providing such excellent support, it is expected to
  20811. continue for everyone.
  20812.  
  20813. On the other hand, I expect that most shareware software users would not
  20814. expect such free support from a shareware author.  (Though most comm
  20815. programs I'm aware of that were shareware have now gone commercial,) let me
  20816. use Telix as an example.  If I knew the net address of the telix author, I
  20817. would probably NOT send a request for support without first sending the
  20818. shareware registration.
  20819.  
  20820. Thus, I believe that shareware funding IS different from Kermit funding in the
  20821. expectations of the users. (at least of this individual user. :-)  Most
  20822. software vendors are struggling with the problem of support.  Many
  20823. commercial ventures have moved away from free support.  
  20824.  
  20825. I agree with Frank -- putting Kermit on a CD-ROM and distributing to more
  20826. and more persons without a way to pick up funding for the support is
  20827. likely to kill the Kermit effort.  All resources would have to go to
  20828. support and no further development.  I'm sure that the Kermit group would
  20829. like to come up with an alternative funding mechanism, but being a
  20830. university, etc. etc. limits their alternatives.  I don't believe that
  20831. they could go to "900-number" support, or some of the other suggestions
  20832. made on this list.
  20833.  
  20834. Having said that, let me point out that the above is ONLY MY OPINION, and
  20835. MY OPINION DOESN'T COUNT.  Both sides of this discussion have their
  20836. positions, and I can see them both and respect them both.  I'm not trying
  20837. to cast dispersions on anyone.  I don't intend to criticize anyone.  If
  20838. I've offended, I hereby apologise.
  20839.  
  20840. Now, I'd like to see this discussion end.  If you have suggestions as to
  20841. how Columbia can increase revenue, I'd guess that they'd be willing to
  20842. review them in a private communcation.  If you have a suggestion to Timo
  20843. and/or Keith about how they might be able to easily keep the software on
  20844. their ftp site, but not distribute it on their CD-ROM, they might even
  20845. entertain those suggestions IN A PRIVATE COMMUNICATION.  We've heard both
  20846. sides of the story.  Now, rather than slinging any more arrows, let's drop
  20847. it.
  20848.  
  20849. Donning my asbestos underwear, if you have comments about MY opinions,
  20850. send them to me in private, and lets stop cluttering this list.
  20851.  
  20852. Regards,
  20853.  
  20854. Steve Layten
  20855. -- 
  20856. Steven W. Layten, Senior Engineer
  20857. Chemical Abstracts Service, PO Box 3012, Columbus, OH 43210    +1 614 447 3600
  20858. INET: slayten@cas.org                            UUCP: osu-cis!chemabs!slayten
  20859. # # # Speaking only for myself, and NOT for Chemical Abstracts Service! # # #
  20860.  
  20861. From news@columbia.edu Tue Oct  4 11:09:10 1994
  20862. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA15972
  20863.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 4 Oct 1994 10:02:11 -0400
  20864. Received: by apakabar.cc.columbia.edu id AA01404
  20865.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 4 Oct 1994 10:02:10 -0400
  20866. Path: news.columbia.edu!panix!MathWorks.Com!zombie.ncsc.mil!news.duke.edu!news-feed-1.peachnet.edu!emory!swrinde!elroy.jpl.nasa.gov!lll-winken.llnl.gov!decwrl!pa.dec.com!nntpd.lkg.dec.com!taren2la.apd.dec.com!groot
  20867. From: groot@apd.dec.com (Henk de Groot)
  20868. Newsgroups: comp.protocols.kermit.misc
  20869. Subject: Re: Columbia University's Kermit copyright
  20870. Date: 4 Oct 94 11:09:10 GMT
  20871. Organization: Digital Equipment Corporation
  20872. Lines: 57
  20873. Message-Id: <groot.781268950@taren2la.apd.dec.com>
  20874. References: <9409300557.AA12036@simtel.coast.net> <36h490$9hc@apakabar.cc.columbia.edu> <36pbtj$cc0@usenety1.news.prodigy.com> <36ps3p$h2s@eis.wfunet.wfu.edu>
  20875. Reply-To: groot@apd.dec.com (Henk de Groot)
  20876. Nntp-Posting-Host: taren2la.apd.dec.com
  20877. X-Disclaimer: This opinion is mine alone
  20878. X-Newsreader: NN version 6.5.0 #1 (NOV)
  20879. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  20880.  
  20881. In <36ps3p$h2s@eis.wfunet.wfu.edu> matthews@wfu.edu (Rick Matthews) writes:
  20882. >Simple:  Kermit is free; shareware is not.
  20883.  
  20884. Kermit is not free, if I use it in a customer project I have to negotiate
  20885. with Columbia, if I want to put it on CDROM, I have to negotiate with
  20886. Columbia e.t.c. Thus, as soon as I start using it as a part of a bundle of
  20887. software, (which I might sell for a profit athough I don't charge anything
  20888. for the kermit part in it but do charge for my own contribution to it), I
  20889. have to negotiate with Columbia. This is different from truely free
  20890. software which is not restricted by anything (only by copyright to ensure
  20891. that the software stays free).
  20892.  
  20893. It's not strange or anything that you to do this but IMHO you can not
  20894. maintain the claim that Kermit is free; Kermit is free for a limited
  20895. number of purposes and the limitation is described in kermits copyright
  20896. notice.
  20897.  
  20898. As far as I can see Kermit is Shareware. Compare it with F-Prot. F-Prot is
  20899. Shareware but free for private use. Kermit is free for distribution on
  20900. FTP-sites and free to use for yourself but not free for use in a project
  20901. for a customer or for putting it with other programs on CD-ROM.
  20902.  
  20903. So both share the same principal, it is shareware but free to use as long as
  20904. you don't cross a set border-line. For F-Prot this border-line is Non-private
  20905. use, for Kermit it is distribution on CD-ROM or use in a customer project.
  20906.  
  20907. What might be confusing is that Shareware not means that you have to pay
  20908. always but that you have to pay if you meet certain conditions. For
  20909. Shareware most of the time a condition is set that you have to pay after
  20910. using the product for xxxx days or so, but like F-Prot shows the condition
  20911. can also be if you fall into a certain category and that it is still free
  20912. if that doesn't apply.
  20913.  
  20914. Kermit is not freeware, it is shareware and it has always been shareware, if
  20915. you use it after meeting a preset condition you have to negotiate with
  20916. Columbia. The amount of money Columbia will charge you is unknown, you are
  20917. completly in the dark because there is not a single document supplied
  20918. with kermit that will say anything about what you can expect.
  20919.  
  20920. Ok, I'm not going to reply on this subject anymore since everything to be
  20921. said is covered by now. Even if everyboby will tell me Kermit is free
  20922. I still beleive it is shareware; it is a matter of definition of the word
  20923. 'Shareware' to deterimine if it applies to Kermit. That I don't have to pay
  20924. is just a matter of not meeting the payment condition set for it.
  20925.  
  20926. Kind regards,
  20927.  
  20928.  
  20929. Henk.
  20930.  
  20931. P.S. There is a copy of Kermit in Prentice-Hall's distribution of MINIX (on
  20932. floppy) is that illegal too? I guess so...
  20933.  
  20934. --
  20935.   /   / de Groot  Dep: ALD2          | E-Mail: groot@apd.dec.com
  20936.  /---/ __  __  /  Tel: +31 55 432104 | Corp: Digital Equipment Corporation
  20937. /   / (-_ / / /(  Loc: FP-B09        | Site: Apeldoorn, The Netherlands
  20938.  
  20939. From news@columbia.edu Tue Oct  4 14:03:02 1994
  20940. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA16214
  20941.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 4 Oct 1994 10:03:06 -0400
  20942. Received: by apakabar.cc.columbia.edu id AA01465
  20943.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 4 Oct 1994 10:03:04 -0400
  20944. Path: news.columbia.edu!usenet
  20945. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  20946. Newsgroups: comp.protocols.kermit.misc
  20947. Subject: Re: Columbia University's Kermit copyright
  20948. Date: 4 Oct 1994 14:03:02 GMT
  20949. Organization: Columbia University
  20950. Lines: 190
  20951. Message-Id: <36rnan$1dl@apakabar.cc.columbia.edu>
  20952. References: <36r5d2$28f@zippo.uwasa.fi>
  20953. Nntp-Posting-Host: fdc.cc.columbia.edu
  20954. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  20955.  
  20956. In article <36r5d2$28f@zippo.uwasa.fi> ts@uwasa.fi (Timo Salmi) writes:
  20957. > :Kermit is FREE.  If you use it without ordering a manual, no big deal.
  20958. > :Its FREE.  If you need technical support, you will get it FREE.  However,
  20959. > Here is the core of your the problem provided that you are looking
  20960. > for a good solution. You, that this the good Columbia people, may
  20961. > have either of the two goals:
  20962. > 1) Finding a solution that enhances YOUR situation both timewise and
  20963. > financially. 
  20964. > 2) Using every possible argument to defend retaining exactly the
  20965. > current practices whether they are optimal for you or not. 
  20966. > Please do not be offended...
  20967. >
  20968. Don't worry, Timo, I'm not.
  20969.  
  20970. And I hope *you* won't be offended if I sidestep this issue for a while,
  20971. even though the points you raise are worth discussing.
  20972.  
  20973. You see, it is not up to you, Keith, or the several other participants in
  20974. this debate to dictate how Joe, I, and the other Kermit workers spend our
  20975. time.  We work extremely long hours trying to satisfy the sometimes
  20976. pressing needs of our constituency, and that work must take precedence just
  20977. now over the solution to this problem.  Watch the new companion newsgroup,
  20978. comp.protocols.kermit.ann for results.
  20979.  
  20980. I understand that some people don't like our policy with respect to
  20981. CDROMs, and I suppose we will have to find a creative way to deal with
  20982. this issue down the road.  But for now, we are not set up to cope with it,
  20983. for reasons outlined -- if not microscopically detailed -- in previous
  20984. discussions.  We are satisfying hundreds of thousands, probably millions
  20985. of users with just a small handful of people.  That's because our users
  20986. either (a) order from us by mail, in which case they get the documentation
  20987. they need and therefore do not bother us with tech support calls unless
  20988. they are cases not covered in the documentation (and we like such calls,
  20989. because they tell us how to improve our products), or (b) they are large
  20990. organizations that have their own internal support structures, and
  20991. therefore do not impinge greatly upon our time, and when they do, again,
  20992. it is because of important issues that we need to address in our products
  20993. themselves.  This system has worked extraordinarily well for more than
  20994. a decade.
  20995.  
  20996. CDROMs, however, go to the mass market.  Let's use an analogy to
  20997. illustrate what this means.  Ten years ago (or so), computers were big,
  20998. loud, heavy things in the machine rooms of universities, companies,
  20999. hospitals, and government agencies, with tentacles reaching out to
  21000. terminals in the needed locations.  This was the now-discredited
  21001. centralized model.  The central computer had a central support
  21002. organization which trained its users, installed and maintained software,
  21003. and handled problems, and every user saw the same thing, experienced the
  21004. same behavior.  When there was a problem, it was fixed in one place.
  21005. Although the central computer was quite expensive, the support and
  21006. training issues were handled very efficiently.
  21007.  
  21008. The computer and software industries realized that there was only so much
  21009. money to be made this way, and therefore shifted their focus to the mass
  21010. market -- a computer in every home, store, office, etc.  Margins are
  21011. slimmer, prices are lower, power is higher, software is more "user
  21012. friendly", etc etc.  This same movement resulted in the abandonment of the
  21013. central computing model in organizations.  "Mainframes" were "dinosaurs"
  21014. that sucked up enormous amounts of capital and operating money; PCs were
  21015. cheap, throw-away commodoties that could go on every desk; each one,
  21016. according to popular wisdom, having the same power as the mainframe, and
  21017. much more user-friendly in the bargain.  Before we knew it, every
  21018. organization in the world was on a "downsizing" (hastily rechristened
  21019. "rightsizing") campaign.
  21020.  
  21021. This is all to the good.  Technology is the driving force of society, and
  21022. technlogy is always improving, and therefore society benefits more and
  21023. more with every innovation.  Costs go down, productivity goes up.
  21024.  
  21025. But something went wrong.  It didn't happen that way.  Costs went up,
  21026. productivity went down.  Why?  Because now we have literally millions of
  21027. computer-naive people needed massive amounts of help -- technical support;
  21028. training; one-on-one hand-holding.  An issue related not only to the  
  21029. "naivete"
  21030. of the end users and the rapid pace of change in technology and software,
  21031. and the resulting unreliability compared to the tried-and-true mainframe
  21032. environment, where bugs had been worked out over the course of decades.
  21033.  
  21034. A recent study by the Gartner group (I don't have the reference handy, but
  21035. I read this in one of the prominent trade publications) found that,
  21036. contrary to expectations, the cost to a "rightsized" IS-intensive company
  21037. of maintaining its previous level of productivity was SIX TIMES what it
  21038. was in the centralized model.
  21039.  
  21040. I know from my own experience, quite apart from anything to do with
  21041. Kermit, in my own very large organization, that this figure is not far off
  21042. the mark.  These people, finding computers on their desks instead of 3270
  21043. terminals (or a typewriter), need massive amounts of help, even with today's
  21044. prepackaged, slick, graphical client/server object-oriented technologies.
  21045. There is no "magic pill" for these people -- every problem is hideously
  21046. complex, and every solution is unique.  "I can't print my file!"  Not only
  21047. could there be 500 reasons for this, you can't even hope to talk the user
  21048. through exploring any of them because they don't even know what the words
  21049. mean.  They clicked on a printer icon and nothing came out.  You have to
  21050. over in person, read their AUTOEXEC.BAT and CONFIG.SYS, remove TSRs (that
  21051. some other helpful person installed for them), check for interrupt
  21052. conflicts and noisy buses, remove boards, fool with jumpers, figure out
  21053. their memory management configuration and address conflicts -- no two PCs
  21054. are configured the same way, and if the PC is on a LAN, then you have
  21055. networking issues at every level to worry about.  I could go on.  Most of
  21056. you have been there.
  21057.  
  21058. In this example, I have been talking about simple, supposedly
  21059. self-contained "office automation" or "personal productivity"
  21060. applications.  Now what happens when we are speaking of an application
  21061. that connects two computers via modems?  I am sure that all readers of
  21062. this newsgroup know that there is no "plug and play" solution to this
  21063. problem.  Today's modems are very complex instruments, with manuals nearly
  21064. an inch thick.  And every make and model is different.  The PC hardware is
  21065. different too and, I must say, increasingly difficult to deal with.  For
  21066. example: as CPU power and speed increase, serial port quality has not kept
  21067. pace, and in many cases has detiorated.  Our mass market consumer who buys
  21068. a 66 MHz Multimedia Turbo Screamer with at Sears or Computerland will have
  21069. a difficult time understanding why its much-vaunted communications
  21070. capabilities don't measure up to expectations, and soon enters the jungle
  21071. of non-buffered and/or defective UARTs, interrupt conflicts, and all the
  21072. rest.  Each of these cases takes considerable time and effort to resolve.
  21073. Again, there is no magic pill -- every case is different.
  21074.  
  21075. Within organizations, however, the pendulum is beginning to swing back in
  21076. the old, discredited direction.  Standardization, central support,
  21077. centralized resources such as modem pools, become key to saving costs and
  21078. boosting productivity.
  21079.  
  21080. Organizations: corporations, universities, hospitals, government agencies,
  21081. and so on -- this is where Kermit software can be used most effectively at
  21082. the present time, because of their centralized support of key resources
  21083. and their internal support structures.  They relieve us of the burden of
  21084. technical support.  Although most of them contribute little or nothing to
  21085. our financial health, most of them also do not impact adversely upon it.
  21086.  
  21087. In the mass market, very few people are going to be able to cope with
  21088. problems without some help.  Help comes in the form of what I consider to
  21089. be some excellent, thorough, "user-friendly" books, which take them
  21090. step-by-step through every phase of the communication process -- pictures,
  21091. examples, and all, and even go to some lengths to explain to them what is
  21092. really going on behind the scenes -- not just "press the F7 key".
  21093.  
  21094. Or else help must come in the form of individualized hand-holding -- in
  21095. the mass market there are no organizational hands-on training facilities
  21096. where we can achieve economies of scale.
  21097.  
  21098. Communications software is far more complex and difficult to support than
  21099. self-contained applications such as word processors, spreadsheets, etc,
  21100. because the number of combinations of variables is literally INFINITE.
  21101.  
  21102. Now, you might ask, isn't the same true for, say, Telix?  I don't know if
  21103. Telix is distributed on CDROM, but let's suppose it is.  The answer is:
  21104. not quite.  Telix and most other shareware PC communication software is
  21105. designed to communicate in a very special restricted environment: PC to
  21106. BBS.  Here the problem set is reduced to a manageable level: it only runs
  21107. on PCs, it only talks to other PCs on only one kind of communications
  21108. channel -- serial, full duplex, 8-bit clean, totally transparent to all
  21109. bit patterns, etc.  Directory structure and file names are the same, file
  21110. formats are the same, character sets are the same.  Our support people
  21111. have to cover territory that is INFINITELY wider than that.
  21112.  
  21113. Now, here is the final nail in the coffin.  In response to those who say:
  21114. "you're shooting yourself in the foot...  you want to keep Kermit all to
  21115. yourself...  you don't want it to be popular... putting it on CDROM would
  21116. increase its popularity and therefore be good for you...": I would agree
  21117. if I thought that CDROM buyers would purchase the documentation.  But they
  21118. won't.  If they happen to stumble across, say, MS-DOS Kermit among the
  21119. 11,000 other software programs that lay before them, they will either
  21120. dismiss it immediately because it does not have a GUI, or they will try it
  21121. and give up immediately, in disgust, because they can't figure out how to
  21122. use it.
  21123.  
  21124. Lest this sound as if I am denigrating MS-DOS Kermit, I most emphatically
  21125. am not.  Lone individual mass-market consumers are not backed up by an
  21126. organization that includes computer professionals capable of recognizing
  21127. the technical merits and tradeoffs in choosing one package over another.
  21128. Mass market consumers generally follow the trade press, which I'm sure you
  21129. will all agree, focuses only on the most superficial aspects of any issue.
  21130.  
  21131. I am quite willing to concede that as matters stand, Kermit software is
  21132. simply not suited for the mass market.  It is better suited for the
  21133. organizational world where it can be set up, customized, and supported
  21134. on a centralized basis.
  21135.  
  21136. I hope that we will be able to change this situation in the future.  It is
  21137. a matter of accumulating sufficient funds so we can invest in additional
  21138. development power.  And that is what we are trying to do.
  21139.  
  21140. I thank everyone for their support and encouragement.
  21141.  
  21142. - Frank
  21143.  
  21144. From news@columbia.edu Tue Oct  4 12:36:31 1994
  21145. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA16469
  21146.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 4 Oct 1994 10:06:41 -0400
  21147. Received: by apakabar.cc.columbia.edu id AA01671
  21148.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 4 Oct 1994 10:06:40 -0400
  21149. Newsgroups: comp.protocols.kermit.misc
  21150. Path: news.columbia.edu!panix!MathWorks.Com!solaris.cc.vt.edu!uunet!spcuna!ritz!kudut
  21151. From: kudut@ritz.mordor.com (Ken Udut)
  21152. Subject: Re: Columbia University's Kermit copyright
  21153. References: <36pbtj$cc0@usenety1.news.prodigy.com> <36pipa$jp4@apakabar.cc.columbia.edu> <36r5d2$28f@zippo.uwasa.fi>
  21154. Organization: Mordor International BBS - Jersey City, NJ
  21155. Date: Tue, 4 Oct 1994 12:36:31 GMT
  21156. Message-Id: <Cx5F0w.FtJ@ritz.mordor.com>
  21157. Lines: 16
  21158. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  21159.  
  21160.  
  21161. Timo,
  21162.  
  21163.     Why must Frank be coerced into changing the practices of Kermit 
  21164. distribution?  Frank is repeating the same position simply because that 
  21165. *is* his position.  He is unnecessarily under fire.
  21166.  
  21167.     He seems to be starting to see things going in a downward spiral 
  21168. because he is being pressured into changing his policies.  Please stop 
  21169. pressuring him, especially in public.  It is a private matter between you 
  21170. and Frank.  If you can't come to agreement, then let it go, Timo.  Frank 
  21171. has good reason for not wanting people to sell Kermit, and he should be 
  21172. allowed that. 
  21173.  
  21174. Ken
  21175. kudut@ritz.mordor.com
  21176.  
  21177. From news@columbia.edu Tue Oct  4 12:38:35 1994
  21178. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA16479
  21179.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 4 Oct 1994 10:06:45 -0400
  21180. Received: by apakabar.cc.columbia.edu id AA01679
  21181.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 4 Oct 1994 10:06:44 -0400
  21182. Newsgroups: comp.protocols.kermit.misc
  21183. Path: news.columbia.edu!panix!MathWorks.Com!solaris.cc.vt.edu!uunet!spcuna!ritz!kudut
  21184. From: kudut@ritz.mordor.com (Ken Udut)
  21185. Subject: Re: Columbia University's Kermit copyright
  21186. References: <36pbtj$cc0@usenety1.news.prodigy.com> <Cx44xq.IJw@ritz.mordor.com> <36r5rk$2bo@zippo.uwasa.fi>
  21187. Organization: Mordor International BBS - Jersey City, NJ
  21188. Date: Tue, 4 Oct 1994 12:38:35 GMT
  21189. Message-Id: <Cx5F4C.Fvw@ritz.mordor.com>
  21190. Lines: 18
  21191. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  21192.  
  21193. In article <36r5rk$2bo@zippo.uwasa.fi> ts@uwasa.fi (Timo Salmi) writes:
  21194. >In article <Cx44xq.IJw@ritz.mordor.com> kudut@ritz.mordor.com (Ken Udut) writes:
  21195. >:Remember - this too, shall pass (the dilemna on this newsgroup)
  21196. >
  21197. >Sigh!  Which do the gentle reades consider the bigger problem in
  21198. >here? The existince of this discussion or Columbia's funding and
  21199. >time allocation dilemma?
  21200.  
  21201. The bigger problem is that it's Columbia's business to concern themselves 
  21202. with it and Frank's business to concern himself with it.  It's *not* our 
  21203. concern.
  21204.  
  21205. The existance of the discussion is painful to Frank as he is getting 
  21206. blasted left and right for sticking to what he feels is best.  He DOESN'T 
  21207. want to turn Kermit into a commercial venture.
  21208.  
  21209. Ken
  21210. kudut@ritz.mordor.com
  21211.  
  21212. From news@columbia.edu Tue Oct  4 14:06:48 1994
  21213. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA16492
  21214.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 4 Oct 1994 10:06:52 -0400
  21215. Received: by apakabar.cc.columbia.edu id AA01685
  21216.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 4 Oct 1994 10:06:51 -0400
  21217. Path: news.columbia.edu!usenet
  21218. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  21219. Newsgroups: comp.protocols.kermit.misc
  21220. Subject: Re: Columbia University's Kermit copyright
  21221. Date: 4 Oct 1994 14:06:48 GMT
  21222. Organization: Columbia University
  21223. Lines: 27
  21224. Message-Id: <36rnho$1kj@apakabar.cc.columbia.edu>
  21225. References: <9410041248.AA26638@SimTel.Coast.NET>
  21226. Nntp-Posting-Host: fdc.cc.columbia.edu
  21227. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  21228.  
  21229. In article <9410041248.AA26638@SimTel.Coast.NET> w8sdz@SimTel.Coast.NET  
  21230. (Keith Petersen) writes:
  21231. > swl07@cas.org (Steven W. Layten) writes:
  21232. > >I agree with Frank -- putting Kermit on a CD-ROM and distributing to more
  21233. > >and more persons without a way to pick up funding for the support is
  21234. > >likely to kill the Kermit effort.
  21235. > It wouldn't kill the operation if Columbia offered their own CD-ROM.  If
  21236. > it included the complete documentation it would sell like hotcakes.  The
  21237. > proceeds of that would fund the entire Kermit operation.  They sell
  21238. > 9-track tapes - why not CD-ROMs?
  21239. That's a very good suggestion, Keith.  We are, in fact, exploring this
  21240. option.  It is one of many options for us to explore.
  21241.  
  21242. - Frank
  21243. x
  21244. x
  21245. x
  21246. x
  21247. x
  21248. x
  21249. x
  21250. x
  21251. x
  21252. x
  21253. x
  21254.  
  21255. From news@columbia.edu Tue Oct  4 14:08:11 1994
  21256. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA16584
  21257.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 4 Oct 1994 10:08:13 -0400
  21258. Received: by apakabar.cc.columbia.edu id AA01749
  21259.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 4 Oct 1994 10:08:12 -0400
  21260. Path: news.columbia.edu!usenet
  21261. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  21262. Newsgroups: comp.protocols.kermit.misc
  21263. Subject: Re: Why is Kermit not popular on BBS-es?
  21264. Date: 4 Oct 1994 14:08:11 GMT
  21265. Organization: Columbia University
  21266. Lines: 15
  21267. Message-Id: <36rnkb$1mj@apakabar.cc.columbia.edu>
  21268. References: <36rip8$l4i@acorn.acorn.co.uk>
  21269. Nntp-Posting-Host: fdc.cc.columbia.edu
  21270. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  21271.  
  21272. In article <36rip8$l4i@acorn.acorn.co.uk> agodwin@acorn.co.uk (Adrian Godwin)  
  21273. writes:
  21274. > Excellent, but I'm afraid that you're going to have to help them get the
  21275. > settings correct by including defaults (or a default .ini file) that
  21276. > optimises transfers for typical PC-BBS systems.
  21277. >
  21278. Let's postpone the discussion of Kermit on BBSs until after version 3.14
  21279. is announced.  Then we'll have something new to talk about.
  21280.  
  21281. - Frank
  21282. x
  21283. x
  21284. x
  21285. x
  21286. x
  21287.  
  21288. From news@columbia.edu Tue Oct  4 14:56:53 1994
  21289. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA17721
  21290.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 4 Oct 1994 10:21:55 -0400
  21291. Received: by apakabar.cc.columbia.edu id AA03466
  21292.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 4 Oct 1994 10:21:53 -0400
  21293. Path: news.columbia.edu!panix!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!swrinde!elroy.jpl.nasa.gov!lll-winken.llnl.gov!noc.near.net!eisner!stone_l
  21294. From: stone_l@eisner.decus.org (Larry Stone)
  21295. Newsgroups: comp.protocols.kermit.misc
  21296. Subject: Re: Columbia University's Kermit copyright
  21297. Message-Id: <1994Oct4.095654.6265@eisner>
  21298. Date: 4 Oct 94 09:56:53 -0500
  21299. References: <9409300557.AA12036@simtel.coast.net> <36kaa4$lmm@knot.queensu.ca> <36l69c$n71@news.icaen.uiowa.edu> <Cx4544.9sC@adasoft.ch> <9410032252.AA21717@SimTel.Coast.NET>
  21300. Organization: DECUServe
  21301. Lines: 29
  21302. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  21303.  
  21304. In article <9410032252.AA21717@SimTel.Coast.NET>, w8sdz@SimTel.Coast.NET (Keith Petersen) writes:
  21305. > jw@adasoft.ch (Jamie Watson) writes:
  21306. >>Sorry, but I haven't seen *anyone* suggest a different funding model here.
  21307. > Ok, here it is.  I already sent this to Frank and he rejected it.
  21308. > Change the status of Kermit to ShareWare, with voluntary payment for
  21309. > individuals and required payment for commercial and school use (i.e.,
  21310. > a site license).  If Columbia charged $300 for a site license, even if
  21311. > there were only 1,000 customers, the income produced would be $300,000
  21312. > per year.
  21313.  
  21314. Well that may be a good funding model but as a paying model for many companies,
  21315. it won't work. Getting my company to buy a manual is simple. Paying for
  21316. software, whether it's "traditional" or shareware, is very difficult. Let's put
  21317. it this way - I'll be retired (and that's in 25 years) before I could get $300
  21318. for shareware. My company (and also a previous employer) don't like to blindly
  21319. sign software license agreements because it places obligations on the company.
  21320. OTOH, buying a book entails no obligations (other than to pay) so it's no
  21321. problem.
  21322.  
  21323. > Keith Petersen
  21324. > General Manager of SimTel, the Coast to Coast Software Repository (tm)
  21325. > Internet: w8sdz@SimTel.Coast.NET    or      w8sdz@Vela.ACS.Oakland.Edu
  21326. > Uucp: uunet!umich!vela!w8sdz                     BITNET: w8sdz@OAKLAND
  21327. -- 
  21328. Larry Stone                             |
  21329. VAX Systems Administator                |
  21330. stone_l@eisner.decus.org                |
  21331.  
  21332. From news@columbia.edu Tue Oct  4 11:14:10 1994
  21333. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA21525
  21334.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 4 Oct 1994 11:14:10 -0400
  21335. Received: by apakabar.cc.columbia.edu id AA18784
  21336.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 4 Oct 1994 11:14:08 -0400
  21337. Path: news.columbia.edu!panix!zip.eecs.umich.edu!newsxfer.itd.umich.edu!jobone!fiesta.srl.ford.com!fmsrlr.srl.ford.com!fmsrlu.srl.ford.com!milam
  21338. From: milam@fmsrlu.srl.ford.com (Bill Milam)
  21339. Newsgroups: comp.protocols.kermit.misc
  21340. Subject: Re: FTP Mirrors and CDROMs - again
  21341. Date: Tue, 4 Oct 1994 10:47:58
  21342. Organization: Control Systems Dept  @ Ford Scientific Research Lab
  21343. Lines: 68
  21344. Message-Id: <milam.166.000ACD06@fmsrlu.srl.ford.com>
  21345. References: <36hv50$kgn@news.icaen.uiowa.edu> <36i5s7$90e@apakabar.cc.columbia.edu> <9410010116.AA24289@SimTel.Coast.NET> <CwzKJs.Fx7@news.cern.ch>
  21346. Nntp-Posting-Host: fmsrly.srl.ford.com
  21347. X-Newsreader: Trumpet for Windows [Version 1.0 Rev A]
  21348. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  21349.  
  21350. Normally I am fairly mild mannered, and slow to anger but this really
  21351. got to me....
  21352.  
  21353. In article <CwzKJs.Fx7@news.cern.ch> fanchiot@surya1.cern.ch (Sergio 
  21354. Fanchiotti) writes:
  21355.  
  21356. >w8sdz@SimTel.Coast.NET (Keith Petersen) writes:
  21357.  
  21358. >>It appears to me that you have single-handedly killed the entire free
  21359. >>distribution system for Kermit, except for Internet anonymous FTP.  That
  21360. >>will probably result in the death of the Kermit protocol on systems
  21361. >>which do not have access to the Internet. 
  21362. What planet you been living on Keith? Do Sinclairs have Internet access? Do 
  21363. Apple II machines have Internet access? Over half the machines supported by 
  21364. Kermit do not normally attach to networks. Kermit is popular because it is 
  21365. a darn good product, not because SimTel or anyone else distributes it. 
  21366. People do not use software because it is easy to get, they use it because it 
  21367. preforms a task they need done, and it does that task well. Kermit and it's 
  21368. distribution predates most of what is now known as internet. For many years 
  21369. Kermit was the software that allowed all those poor non-Internet folks to 
  21370. communicate between systems. On dos platforms, I find Kermit to be the most 
  21371. robust package of it's type. There is no commercial package which works as 
  21372. well, and certainly no commercial package which is supported as well. I 
  21373. support Frank and Columbia for allowing us to use Kermit for all these years 
  21374. FREE of charge. I also have found that only Columbia had the latest versions 
  21375. of Kermit on-line and available, most other sites are a month or more behind. 
  21376. Same for most CD-ROM distributions. The program I am interested in is usually 
  21377. always out of date. If I am not mistaken you used to use Kermit to download 
  21378. from the old Simtel machine...
  21379.  
  21380. >        Well, as someone looking at this silly discussion for some time
  21381. >        it seems that the time has come to get to work on a GPL'd version
  21382. >        of a portable data transfer program like Kermit (As Les said before).
  21383. >        Kermit is decent software and ubquitous but not the last word in this 
  21384. >        area. And if something of the complexity of gcc is still beeing 
  21385.  
  21386. Without a core group of people, which Mr. Stallman has been keeping together, 
  21387. there would be no gcc. Try it for yourself, it is much harder than it looks.
  21388.  
  21389. >        supported... why not something like a kermit protocol clone? Here
  21390. >        the wheel has to be re-done, hard work it is, but it may have some 
  21391. >        improvements, just look at the way Linux is developed! 
  21392.  
  21393. If Linux is still here in 2004, you may have a point.
  21394.  
  21395. >        and their choice.   (Apparently if doesn't matter that 90% of the 
  21396. >        people don't have FTP access...)
  21397.  
  21398. See above. Kermit predates almost all of the archive sites, and has been doing 
  21399. just fine without the CD-ROM distribution.
  21400.  
  21401. >    In this respect we should thank the attitude of the Kermit team. In the
  21402. >     long run something else will appear to fill this gap, hopefully better
  21403. >        and easier to distribute.  Guess here is something else for RMS, once 
  21404. >        the TCL flame war is over... Maybe in a feww days we'll see
  21405.  
  21406. As to this comment...Fine, go ahead and prove you can replace the quality and 
  21407. support for a Kermit replacement and keep it running for a decade or two...it 
  21408. ain't as easy as many of you think. Kermit predates the IBM PC for cryin out 
  21409. loud...this is a tremendous accomplishment. To support a FREE product in the 
  21410. public domain for over a decade and keep it up to date with changing 
  21411. technology, port it to almost every platform known to man, even Sinclairs and 
  21412. the BBC machines, and find itself still setting the standard others shoot for 
  21413. as to quality and support is a ..... words fail....
  21414.  
  21415. If i have mortally offended anyone, please feel free to flame me via e-mail 
  21416. and let the people who have legitimate problems get some time in here. 
  21417.  
  21418.  
  21419. From news@columbia.edu Tue Oct  4 14:19:56 1994
  21420. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA26762
  21421.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 4 Oct 1994 12:39:02 -0400
  21422. Received: by apakabar.cc.columbia.edu id AA25671
  21423.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 4 Oct 1994 12:38:59 -0400
  21424. Newsgroups: comp.protocols.kermit.misc
  21425. Path: news.columbia.edu!panix!MathWorks.Com!news.duke.edu!news-feed-1.peachnet.edu!emory!metro.atlanta.com!spcuna!ritz!kudut
  21426. From: kudut@ritz.mordor.com (Ken Udut)
  21427. Subject: Re: Why is Kermit not popular on BBS-es?
  21428. References: <36g46d$m36@cruella.ee.pdx.edu> <1994Sep30.085933.28315@cc.usu.edu> <36rip8$l4i@acorn.acorn.co.uk>
  21429. Organization: Mordor International BBS - Jersey City, NJ
  21430. Date: Tue, 4 Oct 1994 14:19:56 GMT
  21431. Message-Id: <Cx5Jt8.J8J@ritz.mordor.com>
  21432. Lines: 24
  21433. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  21434.  
  21435. In article <36rip8$l4i@acorn.acorn.co.uk> agodwin@acorn.co.uk (Adrian Godwin) writes:
  21436. >In article <1994Sep30.085933.28315@cc.usu.edu>,
  21437. >Joe Doupnik <jrd@cc.usu.edu> wrote:
  21438. >
  21439. >>  What you can do is to notify BBS operators of this Kermit-Lite edition,
  21440. >>once it has been released, and urge them to upgrade. We do recommend reading 
  21441. >>the fine manual so that their systems can exploit the heck out of scripts
  21442. >>and set long packets and sliding windows etc.
  21443. >
  21444. >Excellent, but I'm afraid that you're going to have to help them get the
  21445. >settings correct by including defaults (or a default .ini file) that
  21446. >optimises transfers for typical PC-BBS systems. If you hope that they'll
  21447. >buy the manual (or even read the instructions in detail) I'm afraid
  21448. >that you're likely to be disappointed in many cases. 
  21449. >
  21450. >-adrian
  21451.  
  21452. Well, for sysops like PCBoard and TBBS sysops... they'll probably buy the 
  21453. manuals, as they don't fear spending money to do things "right".  This at 
  21454. least seems to hold true to the local BBS fare in my part of New Jersey.
  21455.  
  21456. Ken
  21457.  
  21458.  
  21459.  
  21460. From news@columbia.edu Tue Oct  4 15:47:08 1994
  21461. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA27026
  21462.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 4 Oct 1994 12:45:05 -0400
  21463. Received: by apakabar.cc.columbia.edu id AA26264
  21464.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 4 Oct 1994 12:45:03 -0400
  21465. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!europa.eng.gtefsd.com!newsxfer.itd.umich.edu!jobone!heifetz.msen.com!simtel.coast.net!w8sdz
  21466. From: w8sdz@SimTel.Coast.NET (Keith Petersen)
  21467. Newsgroups: comp.protocols.kermit.misc
  21468. Subject: Re: FTP Mirrors and CDROMs - again
  21469. Message-Id: <9410041547.AA29857@SimTel.Coast.NET>
  21470. Date: Tue, 4 Oct 1994 15:47:08 GMT
  21471. Organization: SimTel, the Coast to Coast Software Repository (tm)
  21472. References: <36hv50$kgn@news.icaen.uiowa.edu> <9410010116.AA24289@SimTel.Coast.NET> <CwzKJs.Fx7@news.cern.ch> <milam.166.000ACD06@fmsrlu.srl.ford.com>
  21473. Lines: 37
  21474. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  21475.  
  21476. milam@fmsrlu.srl.ford.com (Bill Milam) writes:
  21477. >On dos platforms, I find Kermit to be the most
  21478. >robust package of it's type. There is no commercial package which works as
  21479. >well, and certainly no commercial package which is supported as well. I
  21480. >support Frank and Columbia for allowing us to use Kermit for all these years
  21481. >FREE of charge.
  21482.  
  21483. Look again.  MS-Kermit is written and maintained by Joe Doupnik, not Frank.
  21484.  
  21485. >I also have found that only Columbia had the latest versions
  21486. >of Kermit on-line and available, most other sites are a month or more behind.
  21487.  
  21488. That's because Joe Doupnik was too busy to upload MS-Kermit to SimTel. 
  21489. I had to wait for its announcement in the Info-Kermit Digest and then do
  21490. the ftp transfer myself.  In the early days that wasn't easy because the
  21491. MS-Kermit package was not distributed as an ARC or ZIP file.  Instead it
  21492. was a dozen or more individual files that the user had to download, hoping
  21493. not to miss any.
  21494.  
  21495. >If I am not mistaken you used to use Kermit to download
  21496. >from the old Simtel machine...
  21497.  
  21498. In the early days of SIMTEL20 I used Xmodem.  Later when Zmodem was
  21499. ported to TOPS-20 I used Zmodem.  I still use Zmodem.
  21500.  
  21501. You seem to think that this is some sort of effort to get Columbia to
  21502. agree to allow MS-Kermit to be put back on SimTel.  That is NOT the
  21503. case.  SimTel's policy is that programs submitted to the collection MUST
  21504. include documentation.  If MS-Kermit were submitted today it would be
  21505. rejected because it does not include documentation.
  21506.  
  21507. Keith
  21508. --
  21509. Keith Petersen
  21510. General Manager of SimTel, the Coast to Coast Software Repository (tm)
  21511. Internet: w8sdz@SimTel.Coast.NET    or      w8sdz@Vela.ACS.Oakland.Edu
  21512. Uucp: uunet!umich!vela!w8sdz                     BITNET: w8sdz@OAKLAND
  21513.  
  21514. From news@columbia.edu Tue Oct  4 14:25:31 1994
  21515. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA27386
  21516.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 4 Oct 1994 12:53:10 -0400
  21517. Received: by apakabar.cc.columbia.edu id AA26843
  21518.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 4 Oct 1994 12:53:09 -0400
  21519. Newsgroups: comp.protocols.kermit.misc
  21520. Path: news.columbia.edu!panix!MathWorks.Com!solaris.cc.vt.edu!spcuna!ritz!kudut
  21521. From: kudut@ritz.mordor.com (Ken Udut)
  21522. Subject: Re: Columbia University's Kermit copyright
  21523. References: <36pbtj$cc0@usenety1.news.prodigy.com> <1994Oct4.101940.24819@chemabs.uucp> <9410041248.AA26638@SimTel.Coast.NET>
  21524. Organization: Mordor International BBS - Jersey City, NJ
  21525. Date: Tue, 4 Oct 1994 14:25:31 GMT
  21526. Message-Id: <Cx5K2J.JEy@ritz.mordor.com>
  21527. Lines: 41
  21528. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  21529.  
  21530. In article <9410041248.AA26638@SimTel.Coast.NET> w8sdz@SimTel.Coast.NET (Keith Petersen) writes:
  21531. >swl07@cas.org (Steven W. Layten) writes:
  21532. >>I agree with Frank -- putting Kermit on a CD-ROM and distributing to more
  21533. >>and more persons without a way to pick up funding for the support is
  21534. >>likely to kill the Kermit effort.
  21535. >
  21536. >It wouldn't kill the operation if Columbia offered their own CD-ROM.  If
  21537. >it included the complete documentation it would sell like hotcakes.  The
  21538. >proceeds of that would fund the entire Kermit operation.  They sell
  21539. >9-track tapes - why not CD-ROMs?
  21540.  
  21541. That's a good question, Keith :-)  I can understand why they might not 
  21542. wish to include the documentation on-disk, as then there's the 
  21543. possibility of folks copying it too much, which would hinder the project.
  21544.  
  21545. But if they offer, for example, a CD-ROM of their latest Kermit 
  21546. offerings, updated once a year, with two manuals for... oh, $99 or so, 
  21547. perhaps $129, they'd get some happy Information Services folks who like 
  21548. the new CD-ROM toys.  
  21549.  
  21550. In the case of Kermit, however, usually folks want only one version, 
  21551. perhaps two or three (unix, PC and Mac, for example for a typical college 
  21552. installation).  These can be distributed more cheaply via floppy disks or 
  21553. tape.  CD-ROMS have the problem of only being inexpensive if:
  21554.  
  21555. * Many are produced at once
  21556.  
  21557. or
  21558.  
  21559. * They have their own CD-writer, which is $5000 they probably don't have 
  21560. lying around.
  21561.  
  21562.  
  21563. If they produce many at once, the problem happens when Kermit upgrades 
  21564. occur, and the CD-ROMS are useless.  With magnetic media, *zot*, it's 
  21565. erased and a new copy is put on.
  21566.  
  21567. Am I on the right track, Frank?  :-)
  21568.  
  21569. Ken
  21570. kudut@ritz.mordor.com
  21571.  
  21572. From news@columbia.edu Tue Oct  4 18:02:32 1994
  21573. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA07196
  21574.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 4 Oct 1994 15:06:40 -0400
  21575. Received: by apakabar.cc.columbia.edu id AA08834
  21576.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 4 Oct 1994 15:06:38 -0400
  21577. Path: news.columbia.edu!sol.ctr.columbia.edu!newsxfer.itd.umich.edu!europa.eng.gtefsd.com!howland.reston.ans.net!cs.utexas.edu!not-for-mail
  21578. From: weber@rhrk.uni-kl.de
  21579. Newsgroups: comp.protocols.kermit.misc
  21580. Subject: Re: Columbia University's Kermit copyright
  21581. Date: 4 Oct 1994 13:02:32 -0500
  21582. Organization: UTexas Mail-to-News Gateway
  21583. Lines: 67
  21584. Sender: nobody@cs.utexas.edu
  21585. Message-Id: <9410041901.aa04352@sun.rhrk.uni-kl.de>
  21586. References: <9409300557.AA12036@simtel.coast.net> <36h490$9hc@apakabar.cc.columbia.edu> <36pbtj$cc0@usenety1.news.prodigy.com> <9410032004.AA20257@SimTel.Coast.NET>
  21587. Nntp-Posting-Host: news.cs.utexas.edu
  21588. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  21589.  
  21590. Hello,
  21591.  
  21592. w8sdz@SimTel.Coast.NET (Keith Petersen) writes:
  21593.  
  21594. >davidsen@usenety1.news.prodigy.com (Bill Davidsen) writes:
  21595. >>I totally fail to see how the funding of Kermit is diferent from the way
  21596. >>shareware works. You want people to use the software and buy the manual.
  21597. >>SO DO WE! But the idea that more people will buy the manuals if fewer
  21598. >>people have the software completely eludes me.
  21599.  
  21600. >In my opinion Kermit became CRIPPLEWARE several years ago when Columbia
  21601. >University stopped providing the full documentation as a file which could
  21602. >be downloaded.  This forces users to purchase the book if they wish to
  21603. >take full advantage of the software.
  21604.  
  21605. Oh please, give us a break.
  21606. I have been using Joe Doupnik's MS-Kermit every now and then for years, 
  21607. without ever reading a book about it. It comes with enough material to get
  21608. started and do what you need. It is everything else but "Crippleware" !
  21609.  
  21610. So, recently some of our power users switched from DOS to OS/2 and 
  21611. wanted, in that process, replace their early-eighties terminal software
  21612. that they used for their database retrieval sessions with something else. 
  21613. This was, in my opinion, a good job for OS/2-CKermit, and a good 
  21614. opportunity to buy the book. So I now have that book, and,
  21615. once we've figured out why this thing refuses telnet connections to 
  21616. some hosts while dealing perfectly with others, we will run C_Kermit
  21617. as well.
  21618.  
  21619. On the other hand, I have to admit that my boss wans't overly enthusiastic
  21620. to use "something you've pulled off the Net". So when he started playing
  21621. around with OS/2 I gave him the Walnut Creek Hobbes CD (on which kermit,
  21622. probaly for the last time, was) and suggested him to have a look
  21623. into the whole thing. The next day I had my purchase order for the book... :-)
  21624.  
  21625. So you can count at least one sold book onto a CD publishing...
  21626.  
  21627. I would like to add a personal remark: My posting, which was at the 
  21628. beginning of this thread, and which was a little bit furiously worded,
  21629. originally was meant as a private mail and was posted accidentally.
  21630. While I disagree with his opinion I respect Frank da Cruz' whish not to 
  21631. be further involved with this thread. What we are essentially discussing
  21632. here is the way Columbia funds the Kermit Project. The essence seems to be
  21633. that they earn money by both documentation sales and distribution fees.
  21634.  
  21635. Some people here have argued that CD publishing would increase documentation
  21636. sales. But no one has (and probably noone can do so without hard numbers
  21637. and good market estimates) weighed the increased publication revenues (?)
  21638. against estimated loss of distrubtion fees. Those who can do this best are
  21639. the Columbia folks, since they have at least hard numbers on their current 
  21640. funding status. Apparently these numbers tohether with the necessary estimates
  21641. say that they would not benefit from CDROM publishing. Without knowing 
  21642. their numbers, and without provably better own numbers, there isn't much
  21643. anybody can argue about that.
  21644.  
  21645. Regards
  21646.  
  21647. Christoph Weber-Fahr
  21648.  
  21649.  
  21650.  
  21651. -- 
  21652.   Christoph Weber-Fahr                  |  E-Mail:  weber@rhrk.uni-kl.de 
  21653.   Universitaet Kaiserslautern,  KIT     |  S-Mail:  Postfach 3049
  21654.   Tel. 0631/205-3391                    |           D-67653 Kaiserslautern
  21655. --------------------------  My personal opinion only    ---------------------
  21656.  
  21657.  
  21658. From news@columbia.edu Tue Oct  4 19:28:50 1994
  21659. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA08759
  21660.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 4 Oct 1994 15:28:53 -0400
  21661. Received: by apakabar.cc.columbia.edu id AA10798
  21662.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 4 Oct 1994 15:28:52 -0400
  21663. Path: news.columbia.edu!usenet
  21664. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  21665. Newsgroups: comp.protocols.kermit.misc
  21666. Subject: Re: OS/2 C-Kermit (was Columbia University's Kermit copyrightt)
  21667. Date: 4 Oct 1994 19:28:50 GMT
  21668. Organization: Columbia University
  21669. Lines: 28
  21670. Message-Id: <36sadi$aha@apakabar.cc.columbia.edu>
  21671. References: <9410041901.aa04352@sun.rhrk.uni-kl.de>
  21672. Nntp-Posting-Host: fdc.cc.columbia.edu
  21673. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  21674.  
  21675. In article <9410041901.aa04352@sun.rhrk.uni-kl.de> weber@rhrk.uni-kl.de  
  21676. writes:
  21677. > So, recently some of our power users switched from DOS to OS/2 and 
  21678. > wanted, in that process, replace their early-eighties terminal software
  21679. > that they used for their database retrieval sessions with something else. 
  21680. > This was, in my opinion, a good job for OS/2-CKermit, and a good 
  21681. > opportunity to buy the book. So I now have that book, and,
  21682. > once we've figured out why this thing refuses telnet connections to 
  21683. > some hosts while dealing perfectly with others, we will run C_Kermit
  21684. > as well.
  21685. Fixed in 5A(190).  It was a bug :-)
  21686.  
  21687. You will like 5A(190) much better than 189.
  21688.  
  21689. Anonymous ftp to kermit.columbia.edu, directory kermit/test/bin,
  21690. binary mode, file cko190.zip.
  21691.  
  21692. - Frank
  21693. x
  21694. x
  21695. x
  21696. x
  21697. x
  21698. x
  21699. x
  21700. x
  21701. x
  21702.  
  21703. From news@columbia.edu Tue Oct  4 18:31:52 1994
  21704. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA13221
  21705.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 4 Oct 1994 16:21:47 -0400
  21706. Received: by apakabar.cc.columbia.edu id AA15681
  21707.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 4 Oct 1994 16:21:46 -0400
  21708. Path: news.columbia.edu!sol.ctr.columbia.edu!news.kei.com!MathWorks.Com!europa.eng.gtefsd.com!howland.reston.ans.net!pipex!lyra.csx.cam.ac.uk!warwick!news.shef.ac.uk!sunc!jp1ek
  21709. From: jp1ek@sunc.shef.ac.uk (Earl H. Kinmonth)
  21710. Newsgroups: comp.protocols.kermit.misc
  21711. Subject: Re: Kermit for DOS/V (Kanji Terminal Emulation)
  21712. Date: 4 Oct 1994 18:31:52 GMT
  21713. Organization: Centre for Japanese Studies, Univ. of Sheffield
  21714. Lines: 64
  21715. Message-Id: <36s72o$44l@hippo.shef.ac.uk>
  21716. References: <36p06e$nbp@apakabar.cc.columbia.edu>
  21717. Reply-To: jp1ek@sunc.shef.ac.uk
  21718. Nntp-Posting-Host: sunc.shef.ac.uk
  21719. X-Newsreader: TIN [version 1.2 PL2]
  21720. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  21721.  
  21722. Frank da Cruz (fdc@fdc.cc.columbia.edu) wrote:
  21723. : On 20 Sep 1994, jp1ek@sunc.sheffield.ac.uk (Earl H. Kinmonth) wrote:
  21724.  
  21725. [Question from jp1ek about DOS/V kermit pointing out bug in handling
  21726. of Old-Jis as used by Nikkei Telecom.]
  21727.  
  21728. : I don't know about the 3.13 beta you have -- Kanji terminal emulation for
  21729. : DOS/V might or might not be in it.  It will be in version 3.14 when it is
  21730. : announced (hopefully very soon).  I sent your question to the person who
  21731. : wrote the Kanji terminal support for MS-DOS Kermit and received this
  21732. : response:
  21733. : response:
  21734.  
  21735. : "Sorry for the delay.
  21736.  
  21737. : "I don't know about the Nikkei Data Base, and unfortunately, I have
  21738. : no friends who are using that DataBase.
  21739.  
  21740. : "However, I got another report from someone who is using the Nikkei
  21741. : Telecom DataBase, and he pointed out that Nikkei Telecom uses an
  21742. : improper ESC sequence to designate the JIS X 201 character set.  This
  21743. : is a well-known wrong sequence which was implemented in very very old
  21744. : software, and the sequence is 'ESC ( H' which should be used to
  21745. : designate the Swedish character set."
  21746.  
  21747. : So it looks like the right thing to do would be to get Nikkei Telecom
  21748. : to fix their character-set designating escape sequence.  If this is not
  21749. : the correct answer, let me know.
  21750.  
  21751. The response above is correct but unlikely to get much of a hearing
  21752. from Nikkei.  I have had dealings with the Nikkei people in the US,
  21753. the UK, and Japan.  Among the printable adjectives that come to mind
  21754. are smug, arrogant, thick, stupid, condescending, etc.  When you've
  21755. got a monopoly or near monopoly, your standards, however FUBAR they
  21756. may be you are "correct."
  21757.  
  21758. Just to give perspective on Nikkei, they consider themselves state of
  21759. the art because in the last couple of years, they've finally started
  21760. providing 2400 baud dialup service in Japan and packet switching ports
  21761. (at 2400 baud half duplex).  When I pointed out that most pimply
  21762. teenagers running a BBS out of some attic in the US or the UK were
  21763. providing 9600 baud or better, the irony was lost.
  21764.  
  21765. The interface on the Nikkei database has to be experienced to be
  21766. believed.  A former database expert at the British Library described
  21767. it as "user vicious" as contrasted with "user friendly."  When I was
  21768. programming mainframes in the early 1970s, the UNIVAC software for
  21769. interactive access was already more sophisticated than what Nikkei
  21770. offers in the 1990s.  The software that they supply for this very
  21771. pricey "service" seems to be at least 10 years old.  The highest
  21772. screen resolution it offers is EGA.
  21773.  
  21774. Nevertheless, dealing with the Nikkei is rather like working with the
  21775. IBM AT standard.  Yes, it's crap.  Yes, it's wrong.  But it's there
  21776. and it's a very big chunk of the market....
  21777.  
  21778. PS
  21779.  
  21780. The version of kterm supplied with SCO UNIX ODT Japanese supplement
  21781. does handle the Nikkei improper escape sequence properly....
  21782.  
  21783. --
  21784. Earl H. Kinmonth, Centre for Japanese Studies, University of Sheffield,
  21785. Sheffield, England S10 2TN jp1ek@sunc.sheffield.ac.uk
  21786.