| |
PA2AGA > TCPDIG 06.10.96 06:05l 278 Lines 7676 Bytes #-10863 (0) @ EU
BID : TCP_96_211
Read: DG7DAH GUEST
Subj: TCP-Group Digest 96/211
Path: DB0AAB<DB0PV<DB0MAK<DB0BOX<DB0FP<DB0ERF<DB0HSK<DB0QS<DB0ACC<PI8DRS<
PI8DAZ<PI8APD<PI8GCB<PI8MBQ<PI8VNW
Sent: 961006/0027Z @:PI8VNW.#ZH2.NLD.EU #:16188 [Hoek v Holland] FBB5.15c
From: PA2AGA@PI8VNW.#ZH2.NLD.EU
To : TCPDIG@EU
Received: from pa2aga by pi1hvh with SMTP
id AA18329 ; Sun, 06 Oct 96 00:12:41 UTC
Received: from pa2aga by pa2aga (NET/Mac 2.3.62/7.1) with SMTP
id AA00005656 ; Sun, 06 Oct 96 01:44:13 MET
Received: from pa2aga-1 by pa2aga with SMTP
id AA00005637 ; Sun, 06 Oct 96 01:39:42 MET
Received: from pa2aga-1 by pa2aga-1 (NET/Mac 2.3.62/7.5.5) with SMTP
id AA00008090 ; Sun, 06 Oct 96 01:39:40 MET
Date: Sun, 06 Oct 96 01:38:06 MET
Message-Id: <tcp_96_211>
From: pa2aga
To: tcp_broadcast@pa2aga-1
Subject: TCP-Group Digest 96/211
X-BBS-Msg-Type: B
TCP-Group Digest Sat, 5 Oct 96 Volume 96 : Issue 211
Today's Topics:
DIP on demand? (2 msgs)
Final on Forth...
JNOS for HP200LX (2 msgs)
unsubscribe
Send Replies or notes for publication to: <TCP-Group@UCSD.Edu>.
Subscription requests to <TCP-Group-REQUEST@UCSD.Edu>.
Problems you can't solve otherwise to brian@ucsd.edu.
Archives of past issues of the TCP-Group Digest are available
(by FTP only) from ftp.UCSD.Edu in directory "mailarchives".
We trust that readers are intelligent enough to realize that all text
herein consists of personal comments and does not represent the official
policies or positions of any party. Your mileage may vary. So there.
----------------------------------------------------------------------
Date: Fri, 04 Oct 96 07:09:00 -0000
From: mikebw@bilow.bilow.uu.ids.net (Mike Bilow)
Subject: DIP on demand?
Giles Warham wrote in a message to Mike Bilow:
GW> Hi... Many thanks for reading this message - I run Linux,
GW> and there is something that bugs me....
GW> Is there such a thing as 'On Demand DIP' ? - Ie my computer
GW> will dial the phone automagically whenever it wants to talk
GW> to the internet, and then hangup when its finnished?
GW> Any ideas, or where I can source such software etc will be
GW> very greatfully received!
You are looking for the 'diald' package.
You may also want to subscribe to linux-hams@vger.rutgers.edu; subscription
requests go to majordomo@vger.rutgers.edu.
-- Mike
------------------------------
Date: Fri, 4 Oct 1996 04:47:43 -0700 (MST)
From: Bob Nielsen <nielsen@primenet.com>
Subject: DIP on demand?
On Thu, 3 Oct 1996, Giles Warham wrote:
>
> Hi... Many thanks for reading this message - I run Linux, and there is
> something that bugs me....
>
> Is there such a thing as 'On Demand DIP' ? - Ie my computer will dial
> the phone automagically whenever it wants to talk to the internet, and
> then hangup when its finnished?
>
> Any ideas, or where I can source such software etc will be very greatfully
> received!
>
> Many thanks,
>
> 73 de Giles.
>
> [ 44.131.9.109] g7tgr.ampr.org - Ampr-Net Site
> [ 44.131.9.136] linux.g7tgr.ampr.org - On-Line Apps, Web, Ftp etc
> [ 44.131.9.139] dos.g7tgr.ampr.org - Experimental Mobile Site
> [194.222.70.74] g7tgr.demon.co.uk - Internet
>
>
I haven't looked at it, but I think that 'diald' does this.
73, Bob
----
Bob Nielsen Internet: nielsen@primenet.com
Tucson, AZ AMPRnet: w6swe@w6swe.ampr.org
AX.25: w6swe@wb7tls.az.usa.noam
http://www.primenet.com/~nielsen
------------------------------
Date: Wed, 2 Oct 1996 14:22:13 -0600 (MDT)
From: wa7nwp@wa7nwp.ampr.org
Subject: Final on Forth...
I have Forth running in JNOS and it will be even easier to get
going in TNOS/Linux. (No DGROUP 64K problems there...)
Thanks again for the source code, pointers, info and putting up with
this slightly off topic posting..
For those interested, the description below should be adequate
to add Forth to a NOS source tree.
73,
Bill - WA7NWP
------------------------------------------------------------------------
Adding FORTH to *NOS
WA7NWP (vodall@bigsky.com) - 2 October 1996
1. Add Forth.c and Forth.h to NOS source directory.
FTP them from: ham.city.lethbridge.ab.ca AKA gw.ve6lip.ampr.org
Get: wa7nwp/forth1.zip
2. Add to Makefile
-----
SERVERS= ttylink.obj ftpserv.obj smisc.obj smtpserv.obj convers.obj \
...
! samlib.obj qrz.obj fbbfwd.obj lzhuf.obj term.obj mailserv.obj \
+ forth.obj
-----
And at the end as a partial dependency:
-----
+ forth.obj: forth.c global.h forth.h
-----
3. Add to the end of servers.tl
-----
+term.obj &
+nntpserv.obj &
! +mailserv.obj &
+ +forth.obj
-----
4. Add to config.c
-----
#include "slhc.h"
#include "rspf.h"
+ #ifdef FORTH
+ #include "forth.h"
+ #endif
#include "main.h"
_____
and
_____
"fkey", dofkey, 0, 0, NULLCHAR,
#endif
#ifdef SCRIPTING
{ "foreach", doforeach, 0, 4, "foreach <variable> \"list\" \"cmd\"" },
#endif
+ #ifdef FORTH
+ "forth", doforth, 0, 0, NULLCHAR,
+ #endif
#ifdef FTPSESSION
"ftp", doftp, 2048, 2, "ftp <address>",
"ftype", doftype, 0, 0, NULLCHAR,
-----
5. Add to the end of version.c
-----
+ #ifdef FORTH
+ tputs("SM0RGV Forth\n");
+ #endif
-----
6. Add to your config.h
-----
+ #define FORTH 1 /* SM0RGV FORTH */
_____
That's it. Now you should be able to compile and run NOS with Forth
Enter "Forth" to run the Interpreter and "quit" to
return to the NOS prompt.
Now to: a) learn Forth. and b) figure out how to use it for
NOS applications.
My thanks to SM0RGV for writing this and to Jim Lill, WA2ZKD, for
supplying me with the original source code.
------------------------------
Date: Fri, 04 Oct 1996 08:15:48 -0400
From: "Gary R. Skuse, Ph.D." <gary_skuse@gigli.medicine.rochester.edu>
Subject: JNOS for HP200LX
Does anyone have a compile of jnos that will work on an HP200LX palmtop? I
seem to remember a few years ago some talk about running nos between two
HP95's with an infrared link (a agree that it was kind of geeky but neat
nonetheless). I would like to use the HP200 with a serial cable to operate
portable packet.
Thanks and 73,
Gary, ka1njl
Gary R. Skuse, Ph.D. gary_skuse@medicine.rochester.edu
Department of Medicine skuseg@vivanet.com
University of Rochester ka1njl@wb2psi.wny.ny.usa.na
Rochester, New York ka1njl@amsat.org
(716)275-3463 (voice)
(716)273-1034 (fax)
------------------------------
Date: Fri, 04 Oct 96 19:29:00 -0000
From: mikebw@bilow.bilow.uu.ids.net (Mike Bilow)
Subject: JNOS for HP200LX
Gary R. Skuse, Ph.D. wrote in a message to Mike Bilow:
GRSPD> Does anyone have a compile of jnos that will work on an
GRSPD> HP200LX palmtop? I seem to remember a few years ago some
GRSPD> talk about running nos between two HP95's with an infrared
GRSPD> link (a agree that it was kind of geeky but neat
GRSPD> nonetheless). I would like to use the HP200 with a serial
GRSPD> cable to operate portable packet.
I think that standard NOS should work, except for some minor incompatibilities
in the serial port. WA7TAS wrote some patches to handle these issues, but I
don't know if they ever migrated back into the mainstream code.
-- Mike
------------------------------
Date: Fri, 04 Oct 1996 20:56:52 +0000
From: "Rafael Garcia" <rgb-eca@redestb.es>
Subject: unsubscribe
unsubscribe
------------------------------
End of TCP-Group Digest V96 #211
******************************
You can send your message for this bulletin
to: tcp-group@pa2aga on .AMPR.ORG-net
or: tcpaga@pi8vnw.#zh2.nld.eu on BBS-net
------
NOT TO: pa2aga@pa2aga or pa2aga@pi8vnw.#zh2.nld.eu PLEASE!!
It will get posted automatically within a few days
Read previous mail | Read next mail
| |