RE: [Hardhats-members] GTM question -- runing a program on startup

2004-12-23 Thread Marc Aylesworth
Sorry, I had a few mistakes, I was trying to do it from memory I looked
it up this time



if [ $# -lt 0 ]
then
$gtm_dist/mumps -r $1
else
 $gtm_dist/mumps -dir
fi



the $# is a special variable which is the number of variable on the
command line. The -lt is the less than comparator.

Sorry about the confusion.

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Kevin
Toppenberg
Sent: Wednesday, December 22, 2004 11:59 AM
To: hardhats-members@lists.sourceforge.net
Subject: RE: [Hardhats-members] GTM question -- runing a program on
startup

Marc,

Thanks.  Just got around to trying this.  Here is the
relevant part of my script that I changed.  It doesn't
seem to be working.

echo GT.M VistA Startup Script
echo -
echo FYI, here are relevant defined variables:
echo
echo gtm_dist=$gtm_dist
echo gtm_log=$gtm_log
echo gtm_vista=$gtm_vista
echo gtm_vista_prod=$gtm_vista_prod
echo gtmgbldir=$gtmgbldir
echo vista_home=vista_home
echo gtmroutines=$gtmroutines
echo  
echo Entering GT.M system now... 
#-
export EDITOR=vim
if [ ?# -lt 0 ] then
 $gtm_dist/mumps -r $1
else
 $gtm_dist/mumps -dir
fi

#sh /usr/local/OpenVistA/vista --run
$HOME/OpenVistA_UserData
echo  
echo Leaving GT.M, returning to Linux...
echo  


-

Here is the error I get:

GT.M VistA Startup Script
-
FYI, here are relevant defined variables:

gtm_dist=/usr/local/gtm
gtm_log=/var/gtm/log
gtm_vista=/home/kdt0p/OpenVistA_UserData
gtm_vista_prod=/usr/local/OpenVistA
gtmgbldir=/usr/local/OpenVistA/g/mumps.gld
vista_home=vista_home
gtmroutines=/home/kdt0p/OpenVistA_UserData/o(/usr/local/OpenVistA/r
/home/kdt0p/OpenVistA_UserData/r /usr/local/gtm)
/usr/local/gtm()

Entering GT.M system now...
runvista: line 35: syntax error near unexpected token
`else'
runvista: line 35: `else'
[EMAIL PROTECTED] kdt0p]$


Any ideas?

Thanks
Kevin



--- Marc Aylesworth [EMAIL PROTECTED]
wrote:

 The general way to check for arguments is to check
 the variable count so
 the below psudocode would translate into 
 
 if [ ?# -lt 0 ] then
 
   $gtm_dist/mumps -r $1
 else
   $gtm_dist /mumps -dir
 fi
 
 this would be in bourne , bash or Korn shell.
 
 -Original Message-
 From: [EMAIL PROTECTED]

[mailto:[EMAIL PROTECTED]
 On Behalf Of Kevin
 Toppenberg
 Sent: Monday, December 20, 2004 9:32 AM
 To: hardhats-members@lists.sourceforge.net
 Subject: Re: [Hardhats-members] GTM question --
 runing a program on
 startup
 
 OK, so here is my script after revisions.  This
 won't
 run a specified routine on startup.  I would need a
 script that replaces
 $gtm_dist/mumps -dir
 with
 $gtm_dist/mumps -r MYFUNCT
 
 I'll have to learn a bit more of the scripting
 language to do the following pseudocode:
 if exists($1)
   $gtm_dist/mumps -r $1
 else
   $gtm_dist/mumps -dir
 end
   
 Thanks
 Kevin
 
 (Script below)
 
 #start KT addition
 #12-14-2004 --moved exports into runvista script
 #-
 export gtm_dist=/usr/local/gtm
 export gtm_log=/var/gtm/log
 export gtm_vista=$HOME/OpenVistA_UserData
 export gtm_vista_prod=/usr/local/OpenVistA
 export gtmgbldir=$gtm_vista_prod/g/mumps.gld
 export vista_home=$gtm_vista
 export gtmroutines=$gtm_vista/o($gtm_vista_prod/r
 $gtm_vista/r $gtm_dist) $gtm_dist()
 
 PATH=$PATH:$gtm_dist
 
 #-
 echo  
 echo  
 echo  
 echo Starting GT.M VistA
 echo ---
 echo FYI, here are relevant defined variables:
 echo
 echo gtm_dist=$gtm_dist
 echo gtm_log=$gtm_log
 echo gtm_vista=$gtm_vista
 echo gtm_vista_prod=$gtm_vista_prod
 echo gtmgbldir=$gtmgbldir
 echo vista_home=vista_home
 echo gtmroutines=$gtmroutines
 echo  
 echo Entering GT.M system now... 
 #-
 export EDITOR=vim
 $gtm_dist/mumps -dir
 #sh /usr/local/OpenVistA/vista --run
 $HOME/OpenVistA_UserData
 echo  
 echo Leaving GT.M, returning to Linux...
 echo  
 
 
 p.s. I haven't decided what to do with the $HOME
 issue... Currently I plan all interaction with the
 system to be via CPRS, so there won't be multiple
 users.
 
 Kevin
 
 
 
 --- K.S. Bhaskar [EMAIL PROTECTED] wrote:
 
  On Sun, 2004-12-19 at 22:36, Jim Self wrote:
   Kevin wrote:
  
  [KSB] ...snip...
  
 export
  gtmroutines=$gtm_vista/o($gtm_vista_prod/r
 $gtm_vista/r $gtm_dist) $gtm_dist()
   
[KSB] Consider following (1 line) instead:
export gtmroutines=gtm_vista/o($gtm_vista/r
$gtm_vista_prod/r)
$gtm_dist
   
   I don't understand the difference between what
  you
   have and what I have.  The only thing I can see
  is
   that you don't have'()' after $gtm_dist.
   
   You also had 2 instances of $gtm_dist in that
 line
  and the order of $gtm/vista_prod and
   $gtm_vista are reversed. I would place
  $gtm_vista_prod first if you are modifying any of
   the OpenVistA distribution routines and placing
  your modified routines there.
  
  [KSB] Kevin

RE: [Hardhats-members] GTM question -- runing a program on startup

2004-12-21 Thread Marc Aylesworth
The general way to check for arguments is to check the variable count so
the below psudocode would translate into 

if [ ?# -lt 0 ] then

$gtm_dist/mumps -r $1
else
$gtm_dist /mumps -dir
fi

this would be in bourne , bash or Korn shell.

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Kevin
Toppenberg
Sent: Monday, December 20, 2004 9:32 AM
To: hardhats-members@lists.sourceforge.net
Subject: Re: [Hardhats-members] GTM question -- runing a program on
startup

OK, so here is my script after revisions.  This won't
run a specified routine on startup.  I would need a
script that replaces
$gtm_dist/mumps -dir
with
$gtm_dist/mumps -r MYFUNCT

I'll have to learn a bit more of the scripting
language to do the following pseudocode:
if exists($1)
  $gtm_dist/mumps -r $1
else
  $gtm_dist/mumps -dir
end
  
Thanks
Kevin

(Script below)

#start KT addition
#12-14-2004 --moved exports into runvista script
#-
export gtm_dist=/usr/local/gtm
export gtm_log=/var/gtm/log
export gtm_vista=$HOME/OpenVistA_UserData
export gtm_vista_prod=/usr/local/OpenVistA
export gtmgbldir=$gtm_vista_prod/g/mumps.gld
export vista_home=$gtm_vista
export gtmroutines=$gtm_vista/o($gtm_vista_prod/r
$gtm_vista/r $gtm_dist) $gtm_dist()

PATH=$PATH:$gtm_dist

#-
echo  
echo  
echo  
echo Starting GT.M VistA
echo ---
echo FYI, here are relevant defined variables:
echo
echo gtm_dist=$gtm_dist
echo gtm_log=$gtm_log
echo gtm_vista=$gtm_vista
echo gtm_vista_prod=$gtm_vista_prod
echo gtmgbldir=$gtmgbldir
echo vista_home=vista_home
echo gtmroutines=$gtmroutines
echo  
echo Entering GT.M system now... 
#-
export EDITOR=vim
$gtm_dist/mumps -dir
#sh /usr/local/OpenVistA/vista --run
$HOME/OpenVistA_UserData
echo  
echo Leaving GT.M, returning to Linux...
echo  


p.s. I haven't decided what to do with the $HOME
issue... Currently I plan all interaction with the
system to be via CPRS, so there won't be multiple
users.

Kevin



--- K.S. Bhaskar [EMAIL PROTECTED] wrote:

 On Sun, 2004-12-19 at 22:36, Jim Self wrote:
  Kevin wrote:
 
 [KSB] ...snip...
 
export
 gtmroutines=$gtm_vista/o($gtm_vista_prod/r
$gtm_vista/r $gtm_dist) $gtm_dist()
  
   [KSB] Consider following (1 line) instead:
   export gtmroutines=gtm_vista/o($gtm_vista/r
   $gtm_vista_prod/r)
   $gtm_dist
  
  I don't understand the difference between what
 you
  have and what I have.  The only thing I can see
 is
  that you don't have'()' after $gtm_dist.
  
  You also had 2 instances of $gtm_dist in that line
 and the order of $gtm/vista_prod and
  $gtm_vista are reversed. I would place
 $gtm_vista_prod first if you are modifying any of
  the OpenVistA distribution routines and placing
 your modified routines there.
 
 [KSB] Kevin, this is the answer.
 
 


***
 This electronic mail transmission contains
 confidential and/or privileged information intended
 only for the person(s) named.  
 Any use, distribution, copying or disclosure by
 another person is strictly prohibited.


***
 
 NOTE: Ce courriel est destine exclusivement au(x)
 destinataire(s) mentionne(s) ci-dessus et peut
 contenir de l'information privilegiee,
 confidentielle et/ou dispensee de divulgation aux
 termes des lois applicables. Si vous avez recu ce
 message par erreur, ou s'il ne vous est pas destine,
 veuillez le mentionner immediatement a l'expediteur
 et effacer ce courriel.
 
 
 
 
 

---
 SF email is sponsored by - The IT Product Guide
 Read honest  candid reviews on hundreds of IT
 Products from real users.
 Discover which products truly live up to the hype.
 Start reading now.
 http://productguide.itmanagersjournal.com/
 ___
 Hardhats-members mailing list
 Hardhats-members@lists.sourceforge.net

https://lists.sourceforge.net/lists/listinfo/hardhats-members
 




__ 
Do you Yahoo!? 
Send a seasonal email greeting and help others. Do good. 
http://celebrity.mail.yahoo.com


---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now. 
http://productguide.itmanagersjournal.com/
___
Hardhats-members mailing list
Hardhats-members@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/hardhats-members





---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.

RE: [Hardhats-members] CPRS (GTM-ready)

2004-12-13 Thread Marc Aylesworth



I'm no expert but it seems it is trying to read a config 
file that is not correct or non existing.


Thank you,Marc AylesworthHealth Specialist TechnicianOneida Indian Nation223 Genesee StreetOneida, New York 13421(315) 829-8909This electronic transmission is intended only for the use of the individual
 or entity to which it is addressed and may contain information that is 
privileged, confidential or exempt from disclosure under applicable law.
If the reader of this message is not the intended recipient, you are hereby 
notified that any dissemination, distribution, or copying of this communication
 is strictly prohibited.  You are also requested to please notify the sender 
immediately by e-mail and delete the original message.




From: 
[EMAIL PROTECTED] 
[mailto:[EMAIL PROTECTED] On Behalf Of 
Christian Alexis Diez OcañaSent: Monday, December 13, 2004 12:56 
AMTo: [EMAIL PROTECTED]Subject:
[Hardhats-members] CPRS (GTM-ready)Importance: 
High



I'm trying to install the version of VistA for GTM published by VA 
(GTM-UNIX-ZTMGRSET-ready).
I tried to install/configure it following the same 
procedure I used for SemiViva 0.4, but I've been unable to get RPC BROKER
working.
As soon as I do a STRT^XWBTCP(9210), errors like this 
start to be logged:


***
Which error?  111
Process ID: 8842 
(8842)
 
DEC 12, 2004 23:02:45

Username: 
Process Name: 

UCI/VOL: [VAH,ROU] 
: 

$ZA: 
$ZB: 

Current $IO: 
0 
Current $ZIO: ^0^0

CPU 
time: 
Page Faults:


Direct 
I/O: 
Buffered I/O:


$ZE= RESTART+13^XWBTCPL, Attempt to read past an 
end-of-file,150373082,-%GTM-E-I
OEOF

. R LEN#11:60 IF ('$T)!($E(LEN,1,5)'="{XWB}") D 
RELEASE(0) Q

Last Global Ref: 
^%ZOSF("OS")

Which symbol? 
***




If a do a D ^%SY I get 
this:


***

 Processes in GT.M Environment 
on Node demovista, Dec 12, [EMAIL PROTECTED]:44:19

$J Process 
Name State 
Device UCI,VOL Routine 
Cmds Refs DIO Login

9596 
R pts/2 VAH,ROU 
? 
? ? ? 
0:00
9581 RPCB_Port:9210 S 
? VAH,ROU 
? 
? ? ? 
0:00
9476 
S
? VAH,ROU 
? 
? ? ? 
0:00
9458 Taskman ROU 1 S 
? VAH,ROU 
? 
? ? ? 
0:00
GTM
***


In a FileMan Inquiry to the RPC BROKER SITE PARAMETERS, 
its status is: RUNNING.
At the linux prompt, a “netstat –an” doesn’t show an 
entry for the 9210 port.

Any suggestions about what I might be doing 
wrong?
Or how could I troubleshoot 
this?


Thanks,
Alexis



RE: [Hardhats-members] We need a news stories library

2004-12-03 Thread Marc Aylesworth
Vista is not old technology because of the language that it is written
in. Vists is called old technology because it only has crude user
interfaces that are text based. It was designed a long time ago and
there is still code that is based on the assumptions of a time that used
linited resourses and had no / poor network connections, and was
developed in a governmental entity were things are also done because of
politics. M seems like a good solid language for writing databases
(which most of the people on this list will agree Vista is). C\C++are
legacy languages but is still used for many programs. IMHO what we need
to do with Vista is examine what we want out of it, that should not take
long because it does so much. Look at some of the problem areas and come
up with solutions. Vista now tries to do it all it serves as a DB
management tool, Front end presentaion tool, and network communication
tool. This most likely should be separated and put into different
places. The undelying code should not be tied to the presentation of the
data. We do not need to rewrite all of Vista but we need to take a look
under the hood and see if the assumptions that were there when the code
was designed still hold true. Remember, Oracle, DB2 even CACHE I belive
uses ODBC or JBDC to do the network communication and uses Visual Basic
or Java to do the presentation, let's look at the whole picture and
start with a good design using all that has been learned in the past to
rewrite a good product using as much of what we already have to create a
newly designed great product of he future.

(holy crap is this ever longer than I thought it would be)


Thank you,
 
Marc Aylesworth
Health Specialist Technician
Oneida Indian Nation
223 Genesee Street
Oneida, New York 13421
(315) 829-8909
 
 
 
This electronic transmission is intended only for the use of the
individual
 or entity to which it is addressed and may contain information that is 
privileged, confidential or exempt from disclosure under applicable law.

If the reader of this message is not the intended recipient, you are
hereby 
notified that any dissemination, distribution, or copying of this
communication
 is strictly prohibited.  You are also requested to please notify the
sender 
immediately by e-mail and delete the original message.

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of
Cameron Schlehuber
Sent: Friday, December 03, 2004 11:39 AM
To: [EMAIL PROTECTED]
Subject: RE: [Hardhats-members] We need a news stories library

And then there are the power plants that still use ... gasp! ... steam!

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of
Ormsby, Skip
Sent: Friday, December 03, 2004 9:13 AM
To: [EMAIL PROTECTED]
Subject: RE: [Hardhats-members] We need a news stories library

Hmm... I wonder if those folks who use the  old technology argument,
don't drive a vehicle that uses a piston engine?  After all the piston
engine has been around for a very long time.

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of
[EMAIL PROTECTED]
Sent: Friday, December 03, 2004 10:23 AM
To: [EMAIL PROTECTED]
Subject: RE: [Hardhats-members] We need a news stories library

Kevin,

You are battling an age-old predjudice against M. It seems M was
considered old technology (by the un-informed), before it was old ! I
think alot of the predjudice goes back to the poorly chosen (IMO) name
of MUMPS, for the language.
Had it has been named Laser or maybe just M in the beginning, it
might have enjoyed a different trajectory.

Certainly the biggest M vendor understands the marketing difficulties
with system based on MUMPS. One has to look hard for any references to
it in their marketing material. Instead, it is called post-relational,
object oriented, and multi-dimensional. All of which is true.

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Behalf Of Joseph
Dal Molin
Sent: Friday, December 03, 2004 9:48 AM
To: [EMAIL PROTECTED]
Subject: Re: [Hardhats-members] We need a news stories library


Consider it done Kevingreat ideaespecially the part about
delegating Nancy to do the work :-)

Joseph

Kevin Toppenberg wrote:
 Someone from my group was grumbling recently that VistA is going to be

 a bad option for our group because is it old technology.
  
 And then Bhaskar posts regarding a Thai Bank converting to GT.M.  And 
 Nancy regularly posts ongoing news about VistA etc.
  
 Could we start a subpage on the WorldVistA web site that lists these 
 news stories, so I could take someone there and show them at a glance 
 all the ongoing activity?  It would help prove that M / VistA is not
dead.
  
 I'd like to nominate Nancy to be the one to regularly add to such a 
 page.. :-)   Nancy, you can thank me later.  LOL!
  
 Kevin
  
  
 
 --
 --
 Do you Yahoo!?
 Yahoo! Mail - now

RE: [Hardhats-members] Volume Sets

2004-11-22 Thread Marc Aylesworth
Just a side note about changing hostnames on Linux systems. Ther are
numerous ways this can be done. Theere is a hostname command that will
be temporay(untill you reboot). In Redhat I believe there is a file you
can edit that sets the hostname at boottime. I believe that the file is
somewhere in the /etc/sysconfig/ directory it is farily deep and there
is documentation for this. The key for communication is if you change
the hostname you also have to edit the /etc/hosts file so that the new
name can be translated into an IP. for local communication this line is:

127.0.0.1   full hostname short hostname or alias




Thank you,
 
Marc Aylesworth
Health Specialist Technician
Oneida Indian Nation
223 Genesee Street
Oneida, New York 13421
(315) 829-8909
 
 
 
This electronic transmission is intended only for the use of the
individual
 or entity to which it is addressed and may contain information that is 
privileged, confidential or exempt from disclosure under applicable law.

If the reader of this message is not the intended recipient, you are
hereby 
notified that any dissemination, distribution, or copying of this
communication
 is strictly prohibited.  You are also requested to please notify the
sender 
immediately by e-mail and delete the original message.

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of
Daniel Gray
Sent: Monday, November 22, 2004 4:45 AM
To: [EMAIL PROTECTED]
Subject: RE: [Hardhats-members] Volume Sets

Yes, I just discovered the same things.  My ^%ZOSV (as installed by
^ZTMGRSET) was from the copy of ^ZOSVGUX.  It doesn't use (like one
would naturally expect) ^ZOSVGTM.  And the %ZOSVGTM has the
$ZGETSYI(NODENAME) logic.  And that doesn't work, naturally, probably
built for GTM on a VAX, as Fil indicated.  Oh, yes.  I K ^%ZOSF before I
do ^ZTMGRSET, sometimes that helps.  In the old days, I stored locally
developed functions there, but I wouldn't do that anymore, I don't
think.  So I think it is safe to kill.

Nancy, I couldn't replicate the information I gave you earlier today.
Honest, I was giving you what I was getting, right off the system to
you.
Now I can't make it work.  D GETENV^%ZOSV doesn't give me the same
answer today as yesterday.  It can't find a hostname now.  I suspect a
change on reboot.  So much to learn.

And you are right, when you start messing around with hostname, changing
it, the OS doesn't like it a bit.  I finally got Redhat9 to the point
that no application would talk to me.  And I didn't think I had been
that rude to it.  Something I said, maybe, or the way I said it.  So I
need to learn some more before I start messing around with that.

The bottom line is yet there.  %ZOSV (as being distributed on
worldvista/sourceforge) seems to have a problem that I haven't solved.
I'd like to know how anyone can get devices and taskman to work right
with this distribution.  It might become important later.

I am running Redhat9, Kernel 2.4.20-8, GTM 4.4-004 Linux x86, and VistA
from OpenVistA SemiViva.  I had been told that was a more up-to-date
copy than the hardhat distribution.

I think I also discovered that I need to delete replies off the messages
that I send to Sourceforge lists, it replicates the thread as well, and
you get confusing threads.

Dan
GTMh
exit




---
SF email is sponsored by - The IT Product Guide Read honest  candid
reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now. 
http://productguide.itmanagersjournal.com/
___
Hardhats-members mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/hardhats-members






---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://productguide.itmanagersjournal.com/
___
Hardhats-members mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/hardhats-members


RE: [Hardhats-members] Printers... An overview please.

2004-11-16 Thread Marc Aylesworth
KDE has a HTMl help page for CUPs and some other stuff. 


Thank you,
 
Marc Aylesworth
Health Specialist Technician
Oneida Indian Nation
223 Genesee Street
Oneida, New York 13421
(315) 829-8909
 
 
 
This electronic transmission is intended only for the use of the
individual
 or entity to which it is addressed and may contain information that is 
privileged, confidential or exempt from disclosure under applicable law.

If the reader of this message is not the intended recipient, you are
hereby 
notified that any dissemination, distribution, or copying of this
communication
 is strictly prohibited.  You are also requested to please notify the
sender 
immediately by e-mail and delete the original message.

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Kevin
Toppenberg
Sent: Monday, November 15, 2004 6:24 PM
To: [EMAIL PROTECTED]
Subject: RE: [Hardhats-members] Printers... An overview please.

Marc,

This is wonderful.  Were did you get this documentation?  I have just
looked at the man pages, and it doesn't give me quite enough
information.

Thanks!!!
Kevin

--- Marc Aylesworth [EMAIL PROTECTED]
wrote:

 
 Cups can also connect networked printers here are some examples from 
 the help files.
 
 
 
 Adding Your First Printer from the Command-Line
 
  
 
 Run the lpadmin command with the -p option to add a printer to CUPS:
 
  
 /usr/sbin/lpadmin -p printer -E -v device -m ppd ENTER
 
  
 
 For a HP DeskJet printer connected to the parallel port this would 
 look
 like:
 
  
 /usr/sbin/lpadmin -p DeskJet -E -v parallel:/dev/lp1 -m deskjet.ppd 
 ENTER
 
  
 
 Similarly, a HP LaserJet printer using a JetDirect network interface 
 at IP address 11.22.33.44 would be added with the
 command:
 
  
 /usr/sbin/lpadmin -p LaserJet -E -v
 socket://11.22.33.44 -m laserjet.ppd
 ENTER
 
  
 
 As you can see, deskjet.ppd and laserjet.ppd are the PPD files for the

 HP DeskJet and HP LaserJet drivers included with CUPS. You'll find a 
 complete list of PPD files and the printers they will work with in 
 Appendix C, Printer Drivers.
 
  
 
 For a dot matrix printer connected to the serial port this would might

 look like:
 
  
 /usr/sbin/lpadmin -p DotMatrix -E -m epson9.ppd \
 -v

serial:/dev/ttyS0?baud=9600+size=8+parity=none+flow=soft
 ENTER
 
  
 
 Here you specify the serial port (e.g. S0,S1, d0, d1), baud rate (e.g.
 9600, 19200, 38400, 115200, etc.), number of bits, parity, and flow 
 control. If you do not need flow control, delete the +flow=soft
 portion. 
 
 
 Thank you,
  
 Marc Aylesworth
 Health Specialist Technician
 Oneida Indian Nation
 223 Genesee Street
 Oneida, New York 13421
 (315) 829-8909
  
  
  
 This electronic transmission is intended only for the use of the 
 individual  or entity to which it is addressed and may contain 
 information that is privileged, confidential or exempt from disclosure

 under applicable law.
 
 If the reader of this message is not the intended recipient, you are 
 hereby notified that any dissemination, distribution, or copying of 
 this communication  is strictly prohibited.  You are also requested to

 please notify the sender immediately by e-mail and delete the original

 message.
 
 -Original Message-
 From: [EMAIL PROTECTED]

[mailto:[EMAIL PROTECTED]
 On Behalf Of Kevin
 Toppenberg
 Sent: Monday, November 15, 2004 1:38 PM
 To: [EMAIL PROTECTED]
 Subject: RE: [Hardhats-members] Printers... An overview please.
 
 Marc,
  
 Thanks for writing.
 
 I will be trying to print from linux to an hp jetdirect print server.

 I think CUPS serves a printer attached to a local box to others on the

 network.
 This is backwards from what I need.
 
 In AIX, I have been able to set up the print que's to connect with 
 jetdirect servers.  I just need to do the same for linux now.
 
 Thanks
 Kevin
 
 
 --- Marc Aylesworth [EMAIL PROTECTED]
 wrote:
 
  what Os are you trying to print from? In Linux
 there is CUPS that will
 
  allow you to set up printers to print from your
 system. In AIX there
  is SMIT that allows you to setup print queues on
 the AIX box and send
  them to a jetdirect connected printer.
   
  Thank you,
   
  Marc Aylesworth
  Health Specialist Technician
  Oneida Indian Nation
  223 Genesee Street
  Oneida, New York 13421
  (315) 829-8909
   
   
   
  This electronic transmission is intended only for
 the use of the
  individual  or entity to which it is addressed and
 may contain
  information that is privileged, confidential or
 exempt from disclosure
 
  under applicable law.
  
  If the reader of this message is not the intended
 recipient, you are
  hereby notified that any dissemination,
 distribution, or copying of
  this communication  is strictly prohibited.  You
 are also requested to
 
  please notify the sender immediately by e-mail and
 delete the original
 
  message.
   
  
_
  
  From: [EMAIL PROTECTED]
 

[mailto:[EMAIL PROTECTED]
  On Behalf Of Kevin
  Toppenberg
  Sent: Monday

RE: [Hardhats-members] More certifications

2004-11-16 Thread Marc Aylesworth
 A while ago there were questions for security for a wireless network.
Here is a link for hardening XP in general and supplies good suggestions
for wireless protection also.


http://www.tweakhound.com/xp/security/page_1.htm

Thank you,
 
Marc Aylesworth
Health Specialist Technician
Oneida Indian Nation
223 Genesee Street
Oneida, New York 13421
(315) 829-8909
 
 
 
This electronic transmission is intended only for the use of the
individual
 or entity to which it is addressed and may contain information that is 
privileged, confidential or exempt from disclosure under applicable law.

If the reader of this message is not the intended recipient, you are
hereby 
notified that any dissemination, distribution, or copying of this
communication
 is strictly prohibited.  You are also requested to please notify the
sender 
immediately by e-mail and delete the original message.





---
This SF.Net email is sponsored by: InterSystems CACHE
FREE OODBMS DOWNLOAD - A multidimensional database that combines
robust object and relational technologies, making it a perfect match
for Java, C++,COM, XML, ODBC and JDBC. www.intersystems.com/match8
___
Hardhats-members mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/hardhats-members


RE: [Hardhats-members] Printers... An overview please.

2004-11-15 Thread Marc Aylesworth



what Os are you trying to print from? In Linux there is 
CUPS that will allow you to set up printers to print from your system. In AIX 
there is SMIT that allows you to setup print queues on the AIX box and send them 
to a jetdirect connected printer.


Thank you,Marc AylesworthHealth Specialist TechnicianOneida Indian Nation223 Genesee StreetOneida, New York 13421(315) 829-8909This electronic transmission is intended only for the use of the individual
 or entity to which it is addressed and may contain information that is 
privileged, confidential or exempt from disclosure under applicable law.
If the reader of this message is not the intended recipient, you are hereby 
notified that any dissemination, distribution, or copying of this communication
 is strictly prohibited.  You are also requested to please notify the sender 
immediately by e-mail and delete the original message.




From: 
[EMAIL PROTECTED] 
[mailto:[EMAIL PROTECTED] On Behalf Of Kevin 
ToppenbergSent: Monday, November 15, 2004 9:19 AMTo:
[EMAIL PROTECTED]Subject: RE: [Hardhats-members] 
Printers... An overview please.

Fil,

Thanks for this feedback. I think I can do what you are saying.

Now I have to figure out how to be able to lpr to HPJetDirect print
servers. Gosh, this is begining to be a bit overwhelming. I'm 
sure I can do it, but after travelling 25 hrs straight yesterday to get back 
from our vacation, I'm a bit off my stride :-)

Thanks
Kevin"Beza, Fil" [EMAIL PROTECTED] 
wrote:

  
  In the DEVICE File, put the code in PRE OPEN EXECUTE to 
  change the IO variable to the unique name.
  
  
  From: 
  [EMAIL PROTECTED] 
  [mailto:[EMAIL PROTECTED] On Behalf Of 
  Beza, FilSent: Saturday, November 13, 2004 8:22 
  AMTo: [EMAIL PROTECTED]Subject: RE: 
  [Hardhats-members] Printers... An overview please.
  
  Hmmm... we don't have that problem in VMS because 
  each file gets a different version number.
  
  Take a look at %ZISUTL. It has an entry point to 
  generate unique names
  
  UNIQUE(ZISNA) ;Build a unque number to add to a device 
  name ;If passed a name put 
  the number before the last 
  dot. N 
  %,%1 S 
  %=$H,%=$H_"-"_$J,%=$$CRC32^XLFCRC(%) 
  I '$L($G(ZISNA)) Q % S 
  %1=$L(ZISNA,"."),%="_"_% 
  S:%1=1 %=ZISNA_% S:%11 
  %=$P(ZISNA,".",1,%1-1)_%_"."_$P(ZISNA,".",%1) 
  Q %
  
  
  From: 
  [EMAIL PROTECTED] 
  [mailto:[EMAIL PROTECTED] On Behalf Of 
  Kevin ToppenbergSent: Saturday, November 13, 2004 5:55 
  AMTo: [EMAIL PROTECTED]Subject: RE: 
  [Hardhats-members] Printers... An overview please.
  
  Thanks for your feedback Fil.
  
  It seems to me that one would need to send the printer file to a file 
  with $J somehow included in it. Otherwise with dozens of users on the 
  system simultaneously, the slave.dat file would be overwritten 
  erroneously.
  
  Thanks
  Kevin"Beza, Fil" [EMAIL PROTECTED]
  wrote:
  You 
can create multiple entries in the device file pointing to the 
samephysical printer. Point each one to a different terminal type where 
eachterminal type changes pitch etc depending on the PCL code you send 
toprinter. Each TERMINAL TYPE entry will have a different OPEN 
EXECUTE.Take a look at the P-HP... entries in the TERMINAL TYPE File. A 
bunchof them are distributed with the FOIA distribution.Here 
are three HP OPEN EXECUTES I use10 PITCHOPEN EXECUTE: 
W$C(27),"E",$C(27),"l0o0S",$C(27),"s0C",$C(27),"k10H",$C(27),"l7.4c2e67F",$C(27),"a05l95M"16 
PITCHOPEN EXECUTE: 
W$C(27),"E",$C(27),"l0o0S",$C(27),"s0C",$C(27),"k10H",$C(27),"l7.4c2e67F",$C(27),"a05l132M",$C(27),"(s16h" 
DUPLEX (DOUBLE SIDED) PRINTOPEN EXECUTE: 
W$C(27),"E",$C(27),"l0o1S",$C(27),"s0C",$C(27),"k10H",$C(27),"l7.4c2e67F",$C(27),"a05l95M"-Original 
Message-From: 
[EMAIL PROTECTED][mailto:[EMAIL PROTECTED] 
On Behalf Of Beza,FilSent: Friday, November 12, 2004 12:36 PMTo: 
[EMAIL PROTECTED]Subject: RE: [Hardhats-members] 
Printers... An overview please.What Bhaskar said is how we print via 
TCPIP in Cache/VMS. We actuallysend the output to a file thus we treat 
the Device as a file instead ofa printer. Then using the CLOSE EXECUTE 
field in the Terminal Type filewe send a command to VMS to send the file 
to the printer.Try this - courtesy of Chris 
Richardson:DEVICE FILE:NAME: your device nameASK DEVICE: 
NOASK PARAMETERS: NOASK HOST FILE: NOSUPPRESS FORM FEED AT
CLOSE: YESTYPE: HOST FILE SERVERSUBTYPE: P-SLAVE TEXT 
GTM/LINUX$I: $HOME/slave.datOPEN PARAMETERS: 
newversionTERMINAL TYPE FILE:P-SLAVE HP 80 
GTM/LINUXFORM FEED: #RIGHT MARGIN: 80PAGE LENGTH: 60BACK 
SPACE: $C(8)CLOSE EXECUTE: U IO K IO(1,IO) C IO ZSYSTEM "lpr -r 
"_IO-Original Message-From: 
[EMAIL PROTECTED][mailto:[EMAIL PROTECTED] 
On Behalf Of K.S.BhaskarSent: Friday, November 12, 2004 12:24
PMTo: [EMAIL PROTECTED]Subject: RE: 
[Hardhats-members] Printers... An overview please.The easiest way to 
print may 

RE: [Hardhats-members] Printers... An overview please.

2004-11-15 Thread Marc Aylesworth

Cups can also connect networked printers here are some examples from the
help files.



Adding Your First Printer from the Command-Line

 

Run the lpadmin command with the -p option to add a printer to CUPS:

 
/usr/sbin/lpadmin -p printer -E -v device -m ppd ENTER

 

For a HP DeskJet printer connected to the parallel port this would look
like:

 
/usr/sbin/lpadmin -p DeskJet -E -v parallel:/dev/lp1 -m deskjet.ppd
ENTER

 

Similarly, a HP LaserJet printer using a JetDirect network interface at
IP address 11.22.33.44 would be added with the command:

 
/usr/sbin/lpadmin -p LaserJet -E -v socket://11.22.33.44 -m laserjet.ppd
ENTER

 

As you can see, deskjet.ppd and laserjet.ppd are the PPD files for the
HP DeskJet and HP LaserJet drivers included with CUPS. You'll find a
complete list of PPD files and the printers they will work with in
Appendix C, Printer Drivers.

 

For a dot matrix printer connected to the serial port this would might
look like:

 
/usr/sbin/lpadmin -p DotMatrix -E -m epson9.ppd \
-v serial:/dev/ttyS0?baud=9600+size=8+parity=none+flow=soft ENTER

 

Here you specify the serial port (e.g. S0,S1, d0, d1), baud rate (e.g.
9600, 19200, 38400, 115200, etc.), number of bits, parity, and flow
control. If you do not need flow control, delete the +flow=soft
portion. 


Thank you,
 
Marc Aylesworth
Health Specialist Technician
Oneida Indian Nation
223 Genesee Street
Oneida, New York 13421
(315) 829-8909
 
 
 
This electronic transmission is intended only for the use of the
individual
 or entity to which it is addressed and may contain information that is 
privileged, confidential or exempt from disclosure under applicable law.

If the reader of this message is not the intended recipient, you are
hereby 
notified that any dissemination, distribution, or copying of this
communication
 is strictly prohibited.  You are also requested to please notify the
sender 
immediately by e-mail and delete the original message.

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Kevin
Toppenberg
Sent: Monday, November 15, 2004 1:38 PM
To: [EMAIL PROTECTED]
Subject: RE: [Hardhats-members] Printers... An overview please.

Marc,
 
Thanks for writing.

I will be trying to print from linux to an hp jetdirect print server.  I
think CUPS serves a printer attached to a local box to others on the
network. 
This is backwards from what I need.

In AIX, I have been able to set up the print que's to connect with
jetdirect servers.  I just need to do the same for linux now.

Thanks
Kevin


--- Marc Aylesworth [EMAIL PROTECTED]
wrote:

 what Os are you trying to print from? In Linux there is CUPS that will

 allow you to set up printers to print from your system. In AIX there 
 is SMIT that allows you to setup print queues on the AIX box and send 
 them to a jetdirect connected printer.
  
 Thank you,
  
 Marc Aylesworth
 Health Specialist Technician
 Oneida Indian Nation
 223 Genesee Street
 Oneida, New York 13421
 (315) 829-8909
  
  
  
 This electronic transmission is intended only for the use of the 
 individual  or entity to which it is addressed and may contain 
 information that is privileged, confidential or exempt from disclosure

 under applicable law.
 
 If the reader of this message is not the intended recipient, you are 
 hereby notified that any dissemination, distribution, or copying of 
 this communication  is strictly prohibited.  You are also requested to

 please notify the sender immediately by e-mail and delete the original

 message.
  
 
   _
 
 From: [EMAIL PROTECTED]

[mailto:[EMAIL PROTECTED]
 On Behalf Of Kevin
 Toppenberg
 Sent: Monday, November 15, 2004 9:19 AM
 To: [EMAIL PROTECTED]
 Subject: RE: [Hardhats-members] Printers... An overview please.
 
 
 Fil,
  
 Thanks for this feedback.  I think I can do what you are saying.
  
 Now I have to figure out how to be able to lpr to HPJetDirect print 
 servers.  Gosh, this is begining to be a bit overwhelming.  I'm 
 sure I can do it, but after travelling 25 hrs straight yesterday to 
 get back from our vacation, I'm a bit off my stride :-)
  
 Thanks
 Kevin
 
 Beza, Fil [EMAIL PROTECTED] wrote:
 
   In the DEVICE File, put the code in PRE OPEN EXECUTE to change
the IO 
 variable to the unique name.
 
   _
 
   From: [EMAIL PROTECTED]

[mailto:[EMAIL PROTECTED]
 On Behalf Of Beza,
 Fil
   Sent: Saturday, November 13, 2004 8:22 AM
   To: [EMAIL PROTECTED]
   Subject: RE: [Hardhats-members] Printers... An overview please.
   
   
   Hmmm...  we don't have that problem in VMS because each file
gets a 
 different version number.

   Take a look at %ZISUTL.  It has an entry point to generate
unique 
 names

   UNIQUE(ZISNA) ;Build a unque number to add to a device name
;If passed a name put the number before the last dot.
N %,%1
S %=$H,%=$H_-_$J,%=$$CRC32^XLFCRC(%)
I '$L($G(ZISNA

RE: [Hardhats-members] Advice for a Mobile Network

2004-11-09 Thread Marc Aylesworth
I believe he was talking about Wep. This I is an encrypted key that
allows computers to access a wireless acess point. It offers minimal
protection and is easily cracked, it could be a good first layer of
defense but I would recommend not using it for your only security if the
data on the laptops is sensitive. 


Thank you,
 
Marc Aylesworth
Health Specialist Technician
Oneida Indian Nation
223 Genesee Street
Oneida, New York 13421
(315) 829-8909
 
 
 
This electronic transmission is intended only for the use of the
individual
 or entity to which it is addressed and may contain information that is 
privileged, confidential or exempt from disclosure under applicable law.

If the reader of this message is not the intended recipient, you are
hereby 
notified that any dissemination, distribution, or copying of this
communication
 is strictly prohibited.  You are also requested to please notify the
sender 
immediately by e-mail and delete the original message.

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Bill
Walton
Sent: Tuesday, November 09, 2004 8:34 AM
To: [EMAIL PROTECTED]
Subject: Re: [Hardhats-members] Advice for a Mobile Network

Encryption has nothing to do with keeping others out of a network;
wireless or otherwise.  In fact, encryption *assumes* that people have
access to data that they shouldn't have.  Otherwise it wouldn't be
necessary to use encryption.

Security people think in terms of *layers.*  The outermost layer
consists of access to the network.  Then there are subnets.  Then
resource aggregations within a subnet.  Then specific resources.  Then
rights over a specific resource.  Encryption is relevant to the
innermost layer.  It assumes that someone has gained access to a
specific resource and is a last ditch effort to deny them the right to
*read* it.  But what if they don't have any
*intention* of reading it?  What if their intention is simply to disrupt
the business by destroying its data?  HIPAA requires, or at least
implies, that this threat must be anticipated and guarded against too.

Security is a complex domain.  I recommend recruiting some experts to
the cause.

Best regards,
Bill


- Original Message -
From: Gordon Moreshead [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Monday, November 08, 2004 11:30 AM
Subject: RE: [Hardhats-members] Advice for a Mobile Network


With an encryption key code for the wireless connection, you can keep
others out.

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Marc
Aylesworth
Sent: Monday, November 08, 2004 7:11 AM
To: [EMAIL PROTECTED]
Subject: RE: [Hardhats-members] Advice for a Mobile Network

Ther are many considerations that need to be acounted for before any
security measures are taken.

1) what level of security is desired, is it a demo DB or does it contain
live data, or are you are you trying to keep casual people from using
your network resources ( outside connections.

2) what is the level of maintanence that you want, the linksys probably
does not have much security built in, so you would have to put the
security on the computers with antivirus nd firewalls for each machine

3) you can use DHCP and a network mask to limit the number of IP's
available also there are many possibilities it depends on what the
friend is comfortable doing. Linux has squid which is a firewall and
there is EZArmor and Kerio are free windows firewalls.


Thank you,

Marc Aylesworth
Health Specialist Technician
Oneida Indian Nation
223 Genesee Street
Oneida, New York 13421
(315) 829-8909



This electronic transmission is intended only for the use of the
individual  or entity to which it is addressed and may contain
information that is privileged, confidential or exempt from disclosure
under applicable law.

If the reader of this message is not the intended recipient, you are
hereby notified that any dissemination, distribution, or copying of this
communication  is strictly prohibited.  You are also requested to please
notify the sender immediately by e-mail and delete the original message.

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of
Frederick D. S. Marshall
Sent: Friday, November 05, 2004 5:39 PM
To: Hardhats
Subject: [Hardhats-members] Advice for a Mobile Network

Dear Hardhats,

I am looking for network guidance for a friend.  He is purchasing five
Dell laptops to be used as a mobile VistA demonstration.  One would be a
VistA server, the other four would be workstations running CPRS Chart.
The goal is to set them up with some kind of wireless network that keeps
them in a stable network with each other as long as they are kept close
together.  As a group, they would travel widely, being set up from place
to place to demo VistA.  I think we are talking about VistA on GT.M on
Linux.

I know Orinoco network cards work well with Linux--I'm using one right
now--but what's the best way to get them talking together reliably

RE: [Hardhats-members] Any Visual Basic programmers out there...

2004-11-09 Thread Marc Aylesworth
I installed the porgram and it seems to work in alimited fashion. What
makes you think files are missing?? 


Thank you,
 
Marc Aylesworth
Health Specialist Technician
Oneida Indian Nation
223 Genesee Street
Oneida, New York 13421
(315) 829-8909
 
 
 
This electronic transmission is intended only for the use of the
individual
 or entity to which it is addressed and may contain information that is 
privileged, confidential or exempt from disclosure under applicable law.

If the reader of this message is not the intended recipient, you are
hereby 
notified that any dissemination, distribution, or copying of this
communication
 is strictly prohibited.  You are also requested to please notify the
sender 
immediately by e-mail and delete the original message.

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Nancy
E. Anthracite
Sent: Monday, November 08, 2004 11:38 AM
To: [EMAIL PROTECTED]
Subject: Re: [Hardhats-members] Any Visual Basic programmers out
there...

Well, things are on hold for now because some files were missing, but
when I get them, I will be back with those of you who volunteered on and
off the list.  This is going to be more than just a programming problem
I think, but probably well worth the effort.

On Monday 08 November 2004 10:30 am, Marc Aylesworth wrote:
 I can also help


 Thank you,

 Marc Aylesworth
 Health Specialist Technician
 Oneida Indian Nation
 223 Genesee Street
 Oneida, New York 13421
 (315) 829-8909



 This electronic transmission is intended only for the use of the 
 individual  or entity to which it is addressed and may contain 
 information that is privileged, confidential or exempt from disclosure

 under applicable law.

 If the reader of this message is not the intended recipient, you are 
 hereby notified that any dissemination, distribution, or copying of 
 this communication  is strictly prohibited.  You are also requested to

 please notify the sender immediately by e-mail and delete the original

 message.

 -Original Message-
 From: [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED] On Behalf Of 
 Bill Walton
 Sent: Sunday, November 07, 2004 10:29 AM
 To: [EMAIL PROTECTED]
 Subject: Re: [Hardhats-members] Any Visual Basic programmers out 
 there...

 I'll be glad to help.

 - Original Message -
 From: Nancy E. Anthracite [EMAIL PROTECTED]
 To: Hardhats [EMAIL PROTECTED]
 Sent: Sunday, November 07, 2004 7:01 AM
 Subject: [Hardhats-members] Any Visual Basic programmers out there...

  who can help me sort out some immunization algorithm VB code from 
  the CDC

 for

  the pedi project?
  --
  Nancy Anthracite
  [EMAIL PROTECTED]
  301-738-2150
 
 
  ---
  This SF.Net email is sponsored by:
  Sybase ASE Linux Express Edition - download now for FREE LinuxWorld 
  Reader's Choice Award Winner for best database on Linux.
  http://ads.osdn.com/?ad_id=5588alloc_id=12065op=click
  ___
  Hardhats-members mailing list
  [EMAIL PROTECTED]
  https://lists.sourceforge.net/lists/listinfo/hardhats-members

 ---
 This SF.Net email is sponsored by:
 Sybase ASE Linux Express Edition - download now for FREE LinuxWorld 
 Reader's Choice Award Winner for best database on Linux.
 http://ads.osdn.com/?ad_id=5588alloc_id=12065op=click
 ___
 Hardhats-members mailing list
 [EMAIL PROTECTED]
 https://lists.sourceforge.net/lists/listinfo/hardhats-members






 ---
 This SF.Net email is sponsored by:
 Sybase ASE Linux Express Edition - download now for FREE LinuxWorld 
 Reader's Choice Award Winner for best database on Linux.
 http://ads.osdn.com/?ad_idU88alloc_id065op=Click
 ___
 Hardhats-members mailing list
 [EMAIL PROTECTED]
 https://lists.sourceforge.net/lists/listinfo/hardhats-members

--
Nancy Anthracite


---
This SF.Net email is sponsored by:
Sybase ASE Linux Express Edition - download now for FREE
LinuxWorld Reader's Choice Award Winner for best database on Linux.
http://ads.osdn.com/?ad_id=5588alloc_id=12065op=click
___
Hardhats-members mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/hardhats-members






---
This SF.Net email is sponsored by:
Sybase ASE Linux Express Edition - download now for FREE
LinuxWorld Reader's Choice Award Winner for best database on Linux.
http://ads.osdn.com/?ad_idU88alloc_id065op=click
___
Hardhats-members mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/hardhats-members


RE: [Hardhats-members] Any Visual Basic programmers out there...

2004-11-09 Thread Marc Aylesworth
I do not have VB6 on my machine yet but I can run the executable tha iin
the zip file tha was installed called CDCIEvalTest.exe and also
TestCases.exe. they are in the folders Immunization Evaluator and Test
Cases respectivly. I do not see the files that you mention.


Thank you,
 
Marc Aylesworth
Health Specialist Technician
Oneida Indian Nation
223 Genesee Street
Oneida, New York 13421
(315) 829-8909
 
 
 
This electronic transmission is intended only for the use of the
individual
 or entity to which it is addressed and may contain information that is 
privileged, confidential or exempt from disclosure under applicable law.

If the reader of this message is not the intended recipient, you are
hereby 
notified that any dissemination, distribution, or copying of this
communication
 is strictly prohibited.  You are also requested to please notify the
sender 
immediately by e-mail and delete the original message.

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Nancy
E. Anthracite
Sent: Tuesday, November 09, 2004 2:04 PM
To: [EMAIL PROTECTED]
Subject: Re: [Hardhats-members] Any Visual Basic programmers out
there...

I get errors when I attempt to run it and when I pull them into VB6, it
asks for cRegistry.cls and frmStart.frm .  Can you remake the .exe, and
a deployable package out of the files that are there? We need to be able
to edit and update this program. I


On Tuesday 09 November 2004 11:56 am, Marc Aylesworth wrote:
 I installed the porgram and it seems to work in alimited fashion. What

 makes you think files are missing??


 Thank you,

 Marc Aylesworth
 Health Specialist Technician
 Oneida Indian Nation
 223 Genesee Street
 Oneida, New York 13421
 (315) 829-8909



 This electronic transmission is intended only for the use of the 
 individual  or entity to which it is addressed and may contain 
 information that is privileged, confidential or exempt from disclosure

 under applicable law.

 If the reader of this message is not the intended recipient, you are 
 hereby notified that any dissemination, distribution, or copying of 
 this communication  is strictly prohibited.  You are also requested to

 please notify the sender immediately by e-mail and delete the original

 message.

 -Original Message-
 From: [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED] On Behalf Of 
 Nancy E. Anthracite
 Sent: Monday, November 08, 2004 11:38 AM
 To: [EMAIL PROTECTED]
 Subject: Re: [Hardhats-members] Any Visual Basic programmers out 
 there...

 Well, things are on hold for now because some files were missing, but 
 when I get them, I will be back with those of you who volunteered on 
 and off the list.  This is going to be more than just a programming 
 problem I think, but probably well worth the effort.

 On Monday 08 November 2004 10:30 am, Marc Aylesworth wrote:
  I can also help
 
 
  Thank you,
 
  Marc Aylesworth
  Health Specialist Technician
  Oneida Indian Nation
  223 Genesee Street
  Oneida, New York 13421
  (315) 829-8909
 
 
 
  This electronic transmission is intended only for the use of the 
  individual  or entity to which it is addressed and may contain 
  information that is privileged, confidential or exempt from 
  disclosure
 
  under applicable law.
 
  If the reader of this message is not the intended recipient, you are

  hereby notified that any dissemination, distribution, or copying of 
  this communication  is strictly prohibited.  You are also requested 
  to
 
  please notify the sender immediately by e-mail and delete the 
  original
 
  message.
 
  -Original Message-
  From: [EMAIL PROTECTED]
  [mailto:[EMAIL PROTECTED] On Behalf Of 
  Bill Walton
  Sent: Sunday, November 07, 2004 10:29 AM
  To: [EMAIL PROTECTED]
  Subject: Re: [Hardhats-members] Any Visual Basic programmers out 
  there...
 
  I'll be glad to help.
 
  - Original Message -
  From: Nancy E. Anthracite [EMAIL PROTECTED]
  To: Hardhats [EMAIL PROTECTED]
  Sent: Sunday, November 07, 2004 7:01 AM
  Subject: [Hardhats-members] Any Visual Basic programmers out
there...
 
   who can help me sort out some immunization algorithm VB code from 
   the CDC
 
  for
 
   the pedi project?
   --
   Nancy Anthracite
   [EMAIL PROTECTED]
   301-738-2150
  
  
   ---
   This SF.Net email is sponsored by:
   Sybase ASE Linux Express Edition - download now for FREE 
   LinuxWorld Reader's Choice Award Winner for best database on
Linux.
   http://ads.osdn.com/?ad_id=5588alloc_id=12065op=click
   ___
   Hardhats-members mailing list
   [EMAIL PROTECTED]
   https://lists.sourceforge.net/lists/listinfo/hardhats-members
 
  ---
  This SF.Net email is sponsored by:
  Sybase ASE Linux Express Edition - download now for FREE LinuxWorld 
  Reader's Choice Award Winner for best database on Linux.
  http://ads.osdn.com/?ad_id

RE: [Hardhats-members] PHARMACY APPLICATION

2004-11-01 Thread Marc Aylesworth



Just remember to have a good backup plan so if the hardware 
takes a dump you can recover easily.


Thank you,Marc AylesworthHealth Specialist TechnicianOneida Indian Nation223 Genesee StreetOneida, New York 13421(315) 829-8909This electronic transmission is intended only for the use of the individual
 or entity to which it is addressed and may contain information that is 
privileged, confidential or exempt from disclosure under applicable law.
If the reader of this message is not the intended recipient, you are hereby 
notified that any dissemination, distribution, or copying of this communication
 is strictly prohibited.  You are also requested to please notify the sender 
immediately by e-mail and delete the original message.




From: 
[EMAIL PROTECTED] 
[mailto:[EMAIL PROTECTED] On Behalf Of Beza, 
FilSent: Friday, October 29, 2004 10:37 PMTo: 
[EMAIL PROTECTED]Subject: RE: [Hardhats-members] 
PHARMACY APPLICATION

The very original Pharmacy software was exactly that - for 
Outpatient Pharmacy use. It eliminated the need for typing labels,
maintaining Kardex for Rx History and Pt. Profile and supports refills, 
cancellations.


From: 
[EMAIL PROTECTED] 
[mailto:[EMAIL PROTECTED] On Behalf Of 
PLEMMONS FAMILYSent: Friday, October 29, 2004 9:10 
AMTo: [EMAIL PROTECTED]Subject:
[Hardhats-members] PHARMACY APPLICATION

I AM NEW TO VISTA. I RUN A SMALL PHARMACY. 
WOULD LIKE TO PURCHASE VISTA BUT DON'T KNOW IF VISTA WILL SUPPORT LABEL 
MAKING, PATIENT PROFILE, REFILLS ETC. I BELIEVE IT WILL IF THE VETERANS 
HOSPITAL USES THIS SOFTWARE IN THE OUTPATIENT PHARMACY.DON'T NEED 
ELECTRONIC SIGNATURES/LABE TEST X-RAY INFO ETC. CAN I RUN ON HOME BASED 
PC? MEMORY OR RAM CONSTRAINTS?

THANK YOU. 


RE: [Hardhats-members] Re: Linux console as terminal emulator,with scripting?

2004-10-27 Thread Marc Aylesworth
try putty it is a free emulator I use for an AIX 4.3.3 machine and it
maps the function keys for me. 


Thank you,
 
Marc Aylesworth
Health Specialist Technician
Oneida Indian Nation
223 Genesee Street
Oneida, New York 13421
(315) 829-8909
 
 
 
This electronic transmission is intended only for the use of the
individual
 or entity to which it is addressed and may contain information that is 
privileged, confidential or exempt from disclosure under applicable law.

If the reader of this message is not the intended recipient, you are
hereby 
notified that any dissemination, distribution, or copying of this
communication
 is strictly prohibited.  You are also requested to please notify the
sender 
immediately by e-mail and delete the original message.

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Kevin
Toppenberg
Sent: Wednesday, October 27, 2004 11:28 AM
To: [EMAIL PROTECTED]
Subject: RE: [Hardhats-members] Re: Linux console as terminal
emulator,with scripting?

I want to use this email to thank everyone for their help.

I have been able to use
#export DISPLAY=vt-100
from the AIX command line.  However, I have to log in as root to do
this.  I then don't know how to launch my EMR.  It normally does this
when I log in as a regular user.  I guess I need to find the log on
scripts to find out what is happening in that case.

However, I am really having trouble with my emulator sending correct
information when I press a F9 key etc.
The display is fine, so I don't know if changing the environment
variable DISPLAY will help or not. 
Besides, doesn't the server query the terminal at log-in to determine
what kind of terminal it is? 
Wouldn't my terminal be answering VT100 (which TeraTerm is set to
report)?  So shouldn't this be automatic?

So it looks like I have three approaches to consider (none of which is
working yet) 1. Get AIX to work with my TeraTerm emulator.
2. Get my TeraTerm emulator to act like an IBM3151 (esp. the function
keys) 3. Figure out how to do bash scripting from linux.

Any other thoughts/suggestions will certainly be appreciated.

Kevin


--- Marc Aylesworth [EMAIL PROTECTED]
wrote:

 Floyd is correct the command is export my E-Mail client automagically 
 uppercases the first word in a sentence sorry!
 
 
 Thank you,
  
 Marc Aylesworth
 Health Specialist Technician
 Oneida Indian Nation
 223 Genesee Street
 Oneida, New York 13421
 (315) 829-8909
  
  
  
 This electronic transmission is intended only for the use of the 
 individual  or entity to which it is addressed and may contain 
 information that is privileged, confidential or exempt from disclosure

 under applicable law.
 
 If the reader of this message is not the intended recipient, you are 
 hereby notified that any dissemination, distribution, or copying of 
 this communication  is strictly prohibited.  You are also requested to

 please notify the sender immediately by e-mail and delete the original

 message.
 
 -Original Message-
 From: [EMAIL PROTECTED]

[mailto:[EMAIL PROTECTED]
 On Behalf Of Floyd
 Dennis
 Sent: Wednesday, October 27, 2004 12:47 AM
 To: [EMAIL PROTECTED]
 Subject: Re: [Hardhats-members] Re: Linux console as terminal 
 emulator,with scripting?
 
 On 10/26/04 5:22 PM, Kevin Toppenberg
 [EMAIL PROTECTED] wrote:
 
  # Setenv DISPLAY=vt-100
  ksh: Setenv:  not found.
  # Export DISPLAY=vt-100
  ksh: Export:  not found.
 
 AIX commands are case-sensitive.  Make certain you're using 
 'setenv/export'
 instead of 'Setenv/Export' .
 
 ---
 Floyd Dennis
 [EMAIL PROTECTED]
 
 
 
 

---
 This SF.Net email is sponsored by:
 Sybase ASE Linux Express Edition - download now for FREE LinuxWorld 
 Reader's Choice Award Winner for best database on Linux.

http://ads.osdn.com/?ad_id=5588alloc_id=12065op=click
 ___
 Hardhats-members mailing list
 [EMAIL PROTECTED]

https://lists.sourceforge.net/lists/listinfo/hardhats-members
 
 
 
 
 
 

---
 This SF.Net email is sponsored by:
 Sybase ASE Linux Express Edition - download now for FREE LinuxWorld 
 Reader's Choice Award Winner for best database on Linux.
 http://ads.osdn.com/?ad_idU88alloc_id065op=click
 ___
 Hardhats-members mailing list
 [EMAIL PROTECTED]

https://lists.sourceforge.net/lists/listinfo/hardhats-members
 




__
Do you Yahoo!?
Yahoo! Mail Address AutoComplete - You start. We finish.
http://promotions.yahoo.com/new_mail 


---
This SF.Net email is sponsored by:
Sybase ASE Linux Express Edition - download now for FREE LinuxWorld
Reader's Choice Award Winner for best database on Linux.
http://ads.osdn.com/?ad_id=5588alloc_id=12065op=click

RE: [Hardhats-members] Linux console as terminal emulator, with scripting?

2004-10-26 Thread Marc Aylesworth
You should be able to remote shell (rsh) into the mahine.

Ex. 

rsh command or script 


To do the same thing



Thank you,
 
Marc Aylesworth
Health Specialist Technician
Oneida Indian Nation
223 Genesee Street
Oneida, New York 13421
(315) 829-8909
 
 
 
This electronic transmission is intended only for the use of the
individual
 or entity to which it is addressed and may contain information that is 
privileged, confidential or exempt from disclosure under applicable law.

If the reader of this message is not the intended recipient, you are
hereby 
notified that any dissemination, distribution, or copying of this
communication
 is strictly prohibited.  You are also requested to please notify the
sender 
immediately by e-mail and delete the original message.

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Kevin
Toppenberg
Sent: Tuesday, October 26, 2004 4:38 PM
To: [EMAIL PROTECTED]
Subject: Re: [Hardhats-members] Linux console as terminal emulator, with
scripting?

OK, I'm going to think out loud.  Please let me know if I am off track.

In my bash script, I will need to initiate a connection to my old (AIX)
server.  We're on a VPN, so are using telnet.

#begin script
telnet xx.xx.xx.xx
echo goodbyte
#end script

The above script will not show goodbye until after the connection to
the server is closed.  This won't help.  So I need to somehow control
the input and output of the telnet program.  Sounds like redirection is
needed.

#begin script
telnet xx.xx.xx.xx  SomeScript  SomeScript echo goodbyte
#end script

The above should launch telnet as well as SomeScript, and put all output
to SomeScript, and get all input from the same.

But my question is, will this direct IO to a process, or will it
overwrite SomeScript as a simple text file?

Kevin


--- Kevin Toppenberg [EMAIL PROTECTED] wrote:

 Hello all,
 
 I need to do some terminal scripting.  As I try to download old 
 progress notes from my server, it keeps stopping and asking me a 
 pointless question (1000's of times!).  I need a simple terminal 
 script that enters N.
 
 I know that TeraTerm Pro will do scripting, but I can't get it to 
 properly emulate an 3151 terminal that our server expects.  The bash 
 shell, however, does
 fine: all the functions keys work as needed etc.
 
 So I know that there is a scripting language built into bash.  Is 
 there any easy to write a program that simply scans for a given phrase

 (i.e. Is this the same patient?) and then automatically enter N.
 And
 if not found, then stay out of the way?
 
 Thanks
 Kevin
 
 
 
   
 __
 Do you Yahoo!?
 Yahoo! Mail Address AutoComplete - You start. We finish.
 http://promotions.yahoo.com/new_mail
 
 

---
 This SF.Net email is sponsored by:
 Sybase ASE Linux Express Edition - download now for
 FREE
 LinuxWorld Reader's Choice Award Winner for best
 database on Linux.

http://ads.osdn.com/?ad_id=5588alloc_id=12065op=click
 ___
 Hardhats-members mailing list
 [EMAIL PROTECTED]

https://lists.sourceforge.net/lists/listinfo/hardhats-members
 




__
Do you Yahoo!?
Take Yahoo! Mail with you! Get it on your mobile phone.
http://mobile.yahoo.com/maildemo 


---
This SF.Net email is sponsored by:
Sybase ASE Linux Express Edition - download now for FREE
LinuxWorld Reader's Choice Award Winner for best database on Linux.
http://ads.osdn.com/?ad_id=5588alloc_id=12065op=click
___
Hardhats-members mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/hardhats-members






---
This SF.Net email is sponsored by:
Sybase ASE Linux Express Edition - download now for FREE
LinuxWorld Reader's Choice Award Winner for best database on Linux.
http://ads.osdn.com/?ad_idU88alloc_id065op=click
___
Hardhats-members mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/hardhats-members


RE: [Hardhats-members] Introducing OpenVistA SemiVivA VA Demo 0.1

2004-10-12 Thread Marc Aylesworth
It seems that Suse comes with a cdialog command that is similar but does
not have all the options tha tXdialog comes with.


Thank you,
 
Marc Aylesworth
Health Specialist Technician
Oneida Indian Nation
223 Genesee Street
Oneida, New York 13421
(315) 829-8909
 
 
 
This electronic transmission is intended only for the use of the
individual
 or entity to which it is addressed and may contain information that is 
privileged, confidential or exempt from disclosure under applicable law.

If the reader of this message is not the intended recipient, you are
hereby 
notified that any dissemination, distribution, or copying of this
communication
 is strictly prohibited.  You are also requested to please notify the
sender 
immediately by e-mail and delete the original message.

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of K.S.
Bhaskar
Sent: Tuesday, October 12, 2004 1:19 PM
To: [EMAIL PROTECTED]
Subject: Re: [Hardhats-members] Introducing OpenVistA SemiVivA VA Demo
0.1

Kevin --

I came up with the names VivA and SemiVivA, and I promise not to be in
the least bit offended if there is a contest for better names!  In fact,
I will be relieved because I am contemplating something even worse: I am
thinking of OpenVistA VivitA [Spanish speakers will probably shoot me
here...] as the name for a live CD based on Damn Small Linux
(http://www.damnsmalllinux.org/) which should yield the smallest
possible OpenVistA live CDs (for those who are wired through dial-up
connections and minimizing downloads is important).

We still need art for T-shirts for the VistA Community Meeting in
Greenbelt next week (the T-shirts are in my office).  If the names are
confusing, maybe we should create a drawing explaining the names, to be
ironed on to white T-shirts?  8-]

-- Bhaskar

On Tue, 2004-10-12 at 12:17, Kevin Toppenberg wrote:
 Bhaskar,
 
 Thank you so much for the effort you have put into this.
 
 You mentioned that the names were horrible.  While I wouldn't use 
 that strong of a name, I will say that they names have always been a 
 bit confusing for me.  I read the explainations and understand, but 
 then have a hard time remembering them.
 
 Would you, and would the community, be interested in a naming contest 
 to pick a naming scheme?  I don't want to hurt anyone's feelings that 
 came up with the current names...
 
 Also, my Redhat Linux 9 did seem to come with XDialog, because it 
 works on mine, and I don't think I downloaded it from anywhere.
 
 Thanks
 Kevin


***
This electronic mail transmission contains confidential and/or
privileged information intended only for the person(s) named.  
Any use, distribution, copying or disclosure by another person is
strictly prohibited.

***

NOTE: Ce courriel est destine exclusivement au(x) destinataire(s)
mentionne(s) ci-dessus et peut contenir de l'information privilegiee,
confidentielle et/ou dispensee de divulgation aux termes des lois
applicables. Si vous avez recu ce message par erreur, ou s'il ne vous
est pas destine, veuillez le mentionner immediatement a l'expediteur et
effacer ce courriel.





---
This SF.net email is sponsored by: IT Product Guide on ITManagersJournal
Use IT products in your business? Tell us what you think of them. Give
us Your Opinions, Get Free ThinkGeek Gift Certificates! Click to find
out more http://productguide.itmanagersjournal.com/guidepromo.tmpl
___
Hardhats-members mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/hardhats-members






---
This SF.net email is sponsored by: IT Product Guide on ITManagersJournal
Use IT products in your business? Tell us what you think of them. Give us
Your Opinions, Get Free ThinkGeek Gift Certificates! Click to find out more
http://productguide.itmanagersjournal.com/guidepromo.tmpl
___
Hardhats-members mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/hardhats-members


RE: [Hardhats-members] How to access ScreenMan

2004-09-16 Thread Marc Aylesworth
There is truth to what is said but is effiecency tied to patient care.
Accuracy sure is but if the people at the front desk take a few extra
seconds checking someone in does not really affect the quaility of care
the patient is receiving. The interface should be the choice of the user
not the programmer it has to be familiar, easy to change mistakes, and
easy to use. GUI's a prvelant to almost all applications and operating
systems and is familiar to most users. 


Thank you,
 
Marc Aylesworth
Health Specialist Technician
Oneida Indian Nation
223 Genesee Street
Oneida, New York 13421
(315) 829-8909
 
 
 
This electronic transmission is intended only for the use of the
individual
 or entity to which it is addressed and may contain information that is 
privileged, confidential or exempt from disclosure under applicable law.

If the reader of this message is not the intended recipient, you are
hereby 
notified that any dissemination, distribution, or copying of this
communication
 is strictly prohibited.  You are also requested to please notify the
sender 
immediately by e-mail and delete the original message.

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of
Joseph Dal Molin
Sent: Thursday, September 16, 2004 9:56 AM
To: [EMAIL PROTECTED]
Subject: Re: [Hardhats-members] How to access ScreenMan

Richard,

Thank you for your thoughtful reply... having been a pilot myself I can
relate to your examples all too well.

I believe that we have been on a trajectory of new is better for so
long in the IT industry that this cultural bias has become a reflex
reaction. It is this same mind set which has attached the pejorative
label of legacy to M for example and with it writing off VistA as an
old clunker.

What is missing is a measure of the human opportunity cost of the impact
of thinking this way... NASA won't fly the shuttle for years without
solving an O-ring problem or the insulation problem...yet hospitals in
North America are crashing plane loads of people a month because they
have poorly integrated or inadequate IT solutions. I suppose if IT
decision makers' lives were tied to the quality of their choices things
would change dramaticallycouldn't resist that zinger.

The key ingredient IMHO that is missing is scientific, evidence based
evaluation of the impact on health outcomes of IT solutions. We do
clinical trials for drugs...it is high time we did that for software
solutions and raised the bar of acceptability.

my apologies if this seemed like a rant to some.

Joseph


On Thu, 2004-09-16 at 09:26, Richard G. DAVIS wrote:
 Joseph:
 
 Your comment raises an issue I have considered for a long, long time.

 As a Human Engineer, I know that the vast body of research already in 
 place would support the view that, for specific types of 
 tasks--REGISTRATION being one example, the classical 'roll-and-scroll'

 of DHCP (now VistA) is significantly superior to 'GUI' styles of
display.
 
 I once prepared a major research proposal for the DVA in the late 
 1980's that was intended to bring some empirical evidence out on this
issue.
 However, I set the work aside after I decided that the cultural 
 atmosphere surrounding this matter would not allow the results of such
work to prevail.
 
 People like the GUI style of display, and accept the GUI as superior

 on the face of it.  In my own experience I have often observed that 
 people don't like work place arrangements that are superior from a 
 performance or productivity point of view.
 
 In the late 50's I did a study that provided evidence of the 
 overwhelming superiority of thermometer style of display for 
 aircraft engine instruments when compared to the classical clock
style of instruments.
 Pilots, the cultural judges of such things, repeatedly rejected 
 thermometer displays.  Even today, when cockpits use glass 
 technology for engine instruments, the clock style is still used more
often.
 
 It is the overwhelming momentum of of cultural bias, lubricated with a

 measure of technological ignorance, that keeps the GUI style in play 
 where it is just plain wrong headed to use.
 
 Joseph, I doubt that you will ever see the kind of Industrial and
Human
 Engineering studies done that your comment suggests.   but, one
can
 hope.   :-)
 
 Mind you, there are definitely work situations in using computers 
 where the GUI is definitely the superior style to use.  As there are 
 cases in which the GUI style in not only inferior, but can even be 
 adverse to the point of being criminal.  Health care systems are 
 especially vulnerable to this possibility.
 
 Regards,
 
 Richard.
 



---
This SF.Net email is sponsored by: YOU BE THE JUDGE. Be one of 170
Project Admins to receive an Apple iPod Mini FREE for your judgement on
who ports your project to Linux PPC the best. Sponsored by IBM.
Deadline: Sept. 24. Go here: http://sf.net/ppc_contest.php

RE: [Hardhats-members] hostname error (Linux guru needed)

2004-09-08 Thread Marc Aylesworth
At the top put 127.0.0.1 localhost.localdomain localhost and leave the
kdtop line alone this might help 


Thank you,
 
Marc Aylesworth
Health Specialist Technician
Oneida Indian Nation
223 Genesee Street
Oneida, New York 13421
(315) 829-8909
 
 
 
This electronic transmission is intended only for the use of the
individual
 or entity to which it is addressed and may contain information that is 
privileged, confidential or exempt from disclosure under applicable law.

If the reader of this message is not the intended recipient, you are
hereby 
notified that any dissemination, distribution, or copying of this
communication
 is strictly prohibited.  You are also requested to please notify the
sender 
immediately by e-mail and delete the original message.

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Kevin
Toppenberg
Sent: Wednesday, September 08, 2004 11:52 AM
To: [EMAIL PROTECTED]
Subject: Re: [Hardhats-members] hostname error (Linux guru needed)

Thanks Crawford,

When I do that, I first go to the DNS tab.  I see a hostname that is
localhost.localdomain.  I also see DNS Search path with is
localdomain.  Then on the Hosts tab, I see myself named as 127.0.0.1 =
[EMAIL PROTECTED] and alias of local host

As a test, I changed the localhost.localdomain to kdtop.tmgdomain.
Then save, then back to command prompt.

hostname -s returns kdtop  

All seems happy.
Then if I run GT.M and enter d ^XUP it aborts the login in process and
just drops back to a GTM prompt.

If I go back and change the hostname to
localhost.localdomain, then GTM works again.

So if linux is happy, GTM is not.  Hm..

Thanks again Crawford.
Kevin


--- Crawford Rainwater
[EMAIL PROTECTED] wrote:

 Kevin:
 
 For a RedHat 9.0 (or beyond) box, as root type in 
 redhat-config-network from your X Window session.
 This will pull up
 the Network Configuration GUI tool.  Under the DNS tab, you can 
 set your hostname and DNS search paths to have kdtop.somedomain.
 
 Sorry for not responding sooner, been enjoying the holiday weekend and

 playing catch up.
 
 --- Crawford
 
 The Linux ETC Company
 P.M.B. 146
 368 South McCaslin Boulevard
 Louisville, CO 80027 USA
 +1 (303) 604-2550 (voice)
 +1 (866) 604-2550 (toll free within the US)
 +1 (303) 664-0036 (fax)
 http://www.linux-etc.biz
 
 
 

---
 This SF.Net email is sponsored by BEA Weblogic Workshop FREE Java 
 Enterprise J2EE developer tools!
 Get your free copy of BEA WebLogic Workshop 8.1 today.

http://ads.osdn.com/?ad_id=5047alloc_id=10808op=click
 ___
 Hardhats-members mailing list
 [EMAIL PROTECTED]

https://lists.sourceforge.net/lists/listinfo/hardhats-members
 




__
Do you Yahoo!?
Yahoo! Mail Address AutoComplete - You start. We finish.
http://promotions.yahoo.com/new_mail 


---
This SF.Net email is sponsored by BEA Weblogic Workshop FREE Java
Enterprise J2EE developer tools!
Get your free copy of BEA WebLogic Workshop 8.1 today.
http://ads.osdn.com/?ad_id=5047alloc_id=10808op=click
___
Hardhats-members mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/hardhats-members






---
This SF.Net email is sponsored by BEA Weblogic Workshop
FREE Java Enterprise J2EE developer tools!
Get your free copy of BEA WebLogic Workshop 8.1 today.
http://ads.osdn.com/?ad_idP47alloc_id808op=click
___
Hardhats-members mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/hardhats-members


RE: X through SSH (was Re: [Hardhats-members] hostname error (Linux guru needed))

2004-09-08 Thread Marc Aylesworth
I believe Unix services for windows 3.0 is a free download and has an X
server on it. This use to be Interix but Microsoft bought them and made
it into Unix services fro Windows. They charged for versions 2.X but I
believe they made it free for 3 and above. Ther is also uwinn from ATT
it is found at http://www.research.att.com/sw/tools/uwin/, this is free
for educational/trial users.


Thank you,
 
Marc Aylesworth
Health Specialist Technician
Oneida Indian Nation
223 Genesee Street
Oneida, New York 13421
(315) 829-8909
 
 
 
This electronic transmission is intended only for the use of the
individual
 or entity to which it is addressed and may contain information that is 
privileged, confidential or exempt from disclosure under applicable law.

If the reader of this message is not the intended recipient, you are
hereby 
notified that any dissemination, distribution, or copying of this
communication
 is strictly prohibited.  You are also requested to please notify the
sender 
immediately by e-mail and delete the original message.

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of CS
Wagner
Sent: Wednesday, September 08, 2004 1:59 PM
To: [EMAIL PROTECTED]
Subject: Re: X through SSH (was Re: [Hardhats-members] hostname error
(Linux guru needed))

If you are running plain Fedora on both boxes, X tunneling is turned on
by default.  You can remove it from the server by changing the value of
X11Forwarding in /etc/ssh/sshd_config from 'yes' to 'no'.  By default,
it is 'yes'.  If it is set to 'no', you cannot forward X through any
command on the client.  Now, if you are using SSH from Windows, you must
have some sort of X engine running for the X display.  I don't use
Windows, so I don't know if there are any free ones.  I think there is
one that runs on top of CygWin.
 -Shaun

Crawford Rainwater wrote:

On Wed, 2004-09-08 at 10:11,
[EMAIL PROTECTED] wrote:
  

Message: 6
From: Nancy Anthracite [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Subject: RE: [Hardhats-members] hostname error (Linux guru needed)
Date: Wed, 8 Sep 2004 12:04:31 -0400
Reply-To: [EMAIL PROTECTED]

Do you know how you can get the GUI version to run on SSH?  My son set

up our machines so that happens, but I have no idea how. It may be a 
Fedora Core 2 feature or a feature of the new kernel? I can use the 
command for any program that is GUI on the machine I am SSHing in with

to one of our other machines, and the GUI will come right up.  It is
like mini VNC, and MAGIC.




Per memory, I believe is would be ssh -X to establish an X forwarded 
session from a remote machine to your local machine.

However, as I mentioned before, the TUI version of that 
redhat-config-network is virtually the same as the GUI version, just 
no mouse, point-n-click action (tabs and enter instead).

--- Crawford
  




---
This SF.Net email is sponsored by BEA Weblogic Workshop FREE Java
Enterprise J2EE developer tools!
Get your free copy of BEA WebLogic Workshop 8.1 today.
http://ads.osdn.com/?ad_id=5047alloc_id=10808op=click
___
Hardhats-members mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/hardhats-members






---
This SF.Net email is sponsored by BEA Weblogic Workshop
FREE Java Enterprise J2EE developer tools!
Get your free copy of BEA WebLogic Workshop 8.1 today.
http://ads.osdn.com/?ad_idP47alloc_id808op=click
___
Hardhats-members mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/hardhats-members