From owner-freebsd-questions@FreeBSD.ORG Mon Dec 13 19:32:41 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 922A016A4CE for ; Mon, 13 Dec 2004 19:32:41 +0000 (GMT) Received: from smtpauth06.mail.atl.earthlink.net (smtpauth06.mail.atl.earthlink.net [209.86.89.66]) by mx1.FreeBSD.org (Postfix) with ESMTP id 619CA43D1F for ; Mon, 13 Dec 2004 19:32:41 +0000 (GMT) (envelope-from algould@datawok.com) Received: from [206.255.31.21] (helo=[192.168.63.10]) by smtpauth06.mail.atl.earthlink.net with asmtp (TLSv1:RC4-MD5:128) (Exim 4.34) id 1Cdvw0-0006yA-4i; Mon, 13 Dec 2004 14:32:40 -0500 From: "Andrew L. Gould" To: freebsd-questions@freebsd.org Date: Mon, 13 Dec 2004 13:33:24 -0600 User-Agent: KMail/1.6.2 References: <20041213183808.GL3650@gentoo-npk.bmp.ub> <41BDEAA7.2080708@daleco.biz> In-Reply-To: <41BDEAA7.2080708@daleco.biz> MIME-Version: 1.0 Content-Disposition: inline Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Message-Id: <200412131333.24235.algould@datawok.com> X-ELNK-Trace: ee791d459e3d6817d780f4a490ca69563f9fea00a6dd62bc3ab9a611b6330fe242fdc3bb821f5905350badd9bab72f9c350badd9bab72f9c350badd9bab72f9c X-Originating-IP: 206.255.31.21 cc: Nathan Kinkade cc: "Colin J. Raven" Subject: Re: Reasonable Hyperterminal alternative? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Dec 2004 19:32:41 -0000 On Monday 13 December 2004 01:16 pm, Kevin D. Kinsey, DaleCo, S.P. wrote: > > And, on that line of thought, I suppose that kermit is a/the > canonical piece of software, traditionally speaking; but last I > looked, it was a significant time investment unless you just pick up > things like that automagically. Featureful, though; but not part of > base. > > But, we'll soon have every alternative listed in this thread > if we keep redefining "reasonable", which is a rather subjective > term, I suppose ... > > Kevin Kinsey One of our vendors only supports dialing in via hyperterminal and the use of kermit for file transfers; but my transfers always (no exaggeration) aborted with a message referring to "too many errors". I now use kermit in FreeBSD; and finish regularly with 0 errors, a fast transfer and no headache. I'm haven't learned a lot about kermit because its basic use meets my needs. Some cool tips: 1. I execute ssh from within kermit to use kermit's file transfer capabilities over a secure connection. 2. You can script kermit for periodic chores. For example, I use the short script below to dial the vendor mentioned above using a modem at cuaa0: #!/usr/local/bin/kermit set modem type acer-v90 set line /dev/cuaa0 set speed 57600 set dial connect on dial 1-999-999-9999 Best of luck, Andrew Gould