[Hardhats-members] Install problems with GDE and aliases?

2005-02-06 Thread Peter Charbonnier
Hello,

This weekend I went out and picked up a new HD and installed Fedora
Core 3 in the hopes of getting OpenVistA up and running on my computer
at home.  Things went well making the dual boot comp, but when I went
to install VistA I hit a snag.

Everything was fine until the very end of the Quick Start Installation Guide:

5.Create the globals file:
First logout and login as the vista user, then enter the following commands:
gde
At the GDE prompt type:

When I open a Terminal window and type gde I get - bash: gde:
command not found

The other aliases I set in the .bash_profile also look like they are
bombing out.  I either get the command not found error or Cannot
access global directory.  I think that I've set-up something wrong in
the .bash_profile, although that's just a guess.  As I said, I've only
just installed Linux this weekend.  I really hope it doesn't have
anything to do with the big use core 1 only warning on the pacific
telehealth website.

Any help would be appreciated.

Thanks,
Peter Charbonnier
Overlake Hospital
Bellevue WA


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag--drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
Hardhats-members mailing list
Hardhats-members@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/hardhats-members


Re: [Hardhats-members] Install problems with GDE and aliases?

2005-02-06 Thread Kevin Toppenberg
Peter,

I'm no guru here, but here are a few thoughts:

1. It shoulds like you are asking your bash shell to
execute a command named gde.  It appears to not
understand this.  Here is the script that I use to
launch my GT.M environment.  You could cut a bunch of
the script if you didn't want to know what your
environment lookes like etc.  I launch it like this:

sh runvista

Here's the script:


#!/bin/bash

#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=/usr/local/OpenVistA_UserData
#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 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
stty susp \000

if [ $# -gt 0 ]
  then
echo Automatically launching program: $1
$gtm_dist/mumps -r $1
  else
$gtm_dist/mumps -dir
fi
#$gtm_dist/mumps -dir

echo  
echo Leaving GT.M, returning to Linux...
echo  
-

Regarding your error Cannot access global directory,
I would think this means you either have your
gtmgbldir variable set up wrong, or you don't have the
permissions set correctly for this directory (i.e.
maybe you installed it as a superuser, and now your
regular user doesn't have read/write access to it.

Let me know if this doesn't help.

Kevin




--- Peter Charbonnier [EMAIL PROTECTED]
wrote:

 Hello,
 
 This weekend I went out and picked up a new HD and
 installed Fedora
 Core 3 in the hopes of getting OpenVistA up and
 running on my computer
 at home.  Things went well making the dual boot
 comp, but when I went
 to install VistA I hit a snag.
 
 Everything was fine until the very end of the Quick
 Start Installation Guide:
 
 5.Create the globals file:
 First logout and login as the vista user, then enter
 the following commands:
 gde
 At the GDE prompt type:
 
 When I open a Terminal window and type gde I get -
 bash: gde:
 command not found
 
 The other aliases I set in the .bash_profile also
 look like they are
 bombing out.  I either get the command not found
 error or Cannot
 access global directory.  I think that I've set-up
 something wrong in
 the .bash_profile, although that's just a guess.  As
 I said, I've only
 just installed Linux this weekend.  I really hope it
 doesn't have
 anything to do with the big use core 1 only
 warning on the pacific
 telehealth website.
 
 Any help would be appreciated.
 
 Thanks,
 Peter Charbonnier
 Overlake Hospital
 Bellevue WA
 
 

---
 This SF.Net email is sponsored by: IntelliVIEW --
 Interactive Reporting
 Tool for open source databases. Create drag--drop
 reports. Save time
 by over 75%! Publish reports on the web. Export to
 DOC, XLS, RTF, etc.
 Download a FREE copy at
 http://www.intelliview.com/go/osdn_nl
 ___
 Hardhats-members mailing list
 Hardhats-members@lists.sourceforge.net

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




__ 
Do you Yahoo!? 
Yahoo! Mail - now with 250MB free storage. Learn more.
http://info.mail.yahoo.com/mail_250


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag--drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
Hardhats-members mailing list
Hardhats-members@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/hardhats-members


Re: [Hardhats-members] Install problems with GDE and aliases?

2005-02-06 Thread Kevin Toppenberg
Peter, 

Let me explain that the script below will not work for
you unless you change the directory paths to match the
location you chose for your installation.

Good luck
Kevin

--- Kevin Toppenberg [EMAIL PROTECTED] wrote:

 Peter,
 
 I'm no guru here, but here are a few thoughts:
 
 1. It shoulds like you are asking your bash shell to
 execute a command named gde.  It appears to not
 understand this.  Here is the script that I use to
 launch my GT.M environment.  You could cut a bunch
 of
 the script if you didn't want to know what your
 environment lookes like etc.  I launch it like this:
 
 sh runvista
 
 Here's the script:
 
 
 #!/bin/bash
 
 #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=/usr/local/OpenVistA_UserData
 #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 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
 stty susp \000
 
 if [ $# -gt 0 ]
   then
 echo Automatically launching program: $1
 $gtm_dist/mumps -r $1
   else
 $gtm_dist/mumps -dir
 fi
 #$gtm_dist/mumps -dir
 
 echo  
 echo Leaving GT.M, returning to Linux...
 echo  
 -
 
 Regarding your error Cannot access global
 directory,
 I would think this means you either have your
 gtmgbldir variable set up wrong, or you don't have
 the
 permissions set correctly for this directory (i.e.
 maybe you installed it as a superuser, and now your
 regular user doesn't have read/write access to it.
 
 Let me know if this doesn't help.
 
 Kevin
 
 
 
 
 --- Peter Charbonnier [EMAIL PROTECTED]
 wrote:
 
  Hello,
  
  This weekend I went out and picked up a new HD and
  installed Fedora
  Core 3 in the hopes of getting OpenVistA up and
  running on my computer
  at home.  Things went well making the dual boot
  comp, but when I went
  to install VistA I hit a snag.
  
  Everything was fine until the very end of the
 Quick
  Start Installation Guide:
  
  5.Create the globals file:
  First logout and login as the vista user, then
 enter
  the following commands:
  gde
  At the GDE prompt type:
  
  When I open a Terminal window and type gde I get
 -
  bash: gde:
  command not found
  
  The other aliases I set in the .bash_profile also
  look like they are
  bombing out.  I either get the command not found
  error or Cannot
  access global directory.  I think that I've
 set-up
  something wrong in
  the .bash_profile, although that's just a guess. 
 As
  I said, I've only
  just installed Linux this weekend.  I really hope
 it
  doesn't have
  anything to do with the big use core 1 only
  warning on the pacific
  telehealth website.
  
  Any help would be appreciated.
  
  Thanks,
  Peter Charbonnier
  Overlake Hospital
  Bellevue WA
  
  
 

---
  This SF.Net email is sponsored by: IntelliVIEW --
  Interactive Reporting
  Tool for open source databases. Create drag--drop
  reports. Save time
  by over 75%! Publish reports on the web. Export to
  DOC, XLS, RTF, etc.
  Download a FREE copy at
  http://www.intelliview.com/go/osdn_nl
  ___
  Hardhats-members mailing list
  Hardhats-members@lists.sourceforge.net
 

https://lists.sourceforge.net/lists/listinfo/hardhats-members
  
 
 
 
   
 __ 
 Do you Yahoo!? 
 Yahoo! Mail - now with 250MB free storage. Learn
 more.
 http://info.mail.yahoo.com/mail_250
 
 

---
 This SF.Net email is sponsored by: IntelliVIEW --
 Interactive Reporting
 Tool for open source databases. Create drag--drop
 reports. Save time
 by over 75%! Publish reports on the web. Export to
 DOC, XLS, RTF, etc.
 Download a FREE copy at
 http://www.intelliview.com/go/osdn_nl
 ___
 Hardhats-members mailing list
 Hardhats-members@lists.sourceforge.net

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


__
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting

Re: [Hardhats-members] Install problems with GDE and aliases?

2005-02-06 Thread Chris Richardson
Peter;

   How wedded are you to Fedora??   Try downloading the Live VivA ISO and
burn a disk.  Try booting off of the disk you burn from the ISO and then
click on the install to the harddrive ICON.  It goes up pretty easy if you
don't get too fancy.  Morphix becomes  There are a couple of modification I
made in the vista install script that you will find in
/usr/local/OpenVistA/ that I will make available.   Right now, just don't
forget to run D ^DINIT .  Most of the inputs are defaulted already.

  I've been installing this ISO most of  the weekend on a couple of
machines.   Am spending a lot of time looking for a decent partition-level
backup that might make creating new replacements fast and easy.  The Live CD
is cool, but if you could just layer in the pre-established partitions back
in to recover to a known point, we would really have something.  I have
looked at g4l (no guarantees and pretty unstable) and SystemImage (more
stable and easier from the reading/Also has been reported to work over the
net),  autoinstall (pulled, but notinstalled), and fai to name a few.

  I can call you from the VA hospital in the morning and talk you through
it, if you can send me your phone number.   Send me your phone number to
[EMAIL PROTECTED] if you don't want to publish it here.  I can't send mail
on my private account from work, but I should be able to help talk you
through it.

 Best wishes;   Chris Richardson

- Original Message -
From: Peter Charbonnier [EMAIL PROTECTED]
To: hardhats-members@lists.sourceforge.net
Sent: Sunday, February 06, 2005 4:38 PM
Subject: [Hardhats-members] Install problems with GDE and aliases?


 Hello,

 This weekend I went out and picked up a new HD and installed Fedora
 Core 3 in the hopes of getting OpenVistA up and running on my computer
 at home.  Things went well making the dual boot comp, but when I went
 to install VistA I hit a snag.

 Everything was fine until the very end of the Quick Start Installation
Guide:

 5.Create the globals file:
 First logout and login as the vista user, then enter the following
commands:
 gde
 At the GDE prompt type:

 When I open a Terminal window and type gde I get - bash: gde:
 command not found

 The other aliases I set in the .bash_profile also look like they are
 bombing out.  I either get the command not found error or Cannot
 access global directory.  I think that I've set-up something wrong in
 the .bash_profile, although that's just a guess.  As I said, I've only
 just installed Linux this weekend.  I really hope it doesn't have
 anything to do with the big use core 1 only warning on the pacific
 telehealth website.

 Any help would be appreciated.

 Thanks,
 Peter Charbonnier
 Overlake Hospital
 Bellevue WA


 ---
 This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
 Tool for open source databases. Create drag--drop reports. Save time
 by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
 Download a FREE copy at http://www.intelliview.com/go/osdn_nl
 ___
 Hardhats-members mailing list
 Hardhats-members@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/hardhats-members






---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag--drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
Hardhats-members mailing list
Hardhats-members@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/hardhats-members


Re: [Hardhats-members] how to dictate an operation report?

2005-02-06 Thread Nick James
Kevin,
while i was trying to solve this problem,i figured
that i had not assigned the transcriptionist in the
transcriptionist user class (TIU). After doing so i
have assigned the 'tiu main menu transcription' to the
user. I can in the menu select the operation report,
but am neither allowed to view it Nor edit it. (either
as the transcriptionist or the author)the status does
not change from undictated. How do i link the report
to be typed to the transcriptionist?

Can transcriptionists type directly into CPRS?

Thanks
Nick.
--- Kevin Toppenberg [EMAIL PROTECTED] wrote:

 Nick,
 
 I assume, since you are working with a hospital,
 that
 you will be using transcriptionists.  This is the
 same
 issue I am working with right now.  
 
 Many transcriptionists prefer to type in word
 processors, rather than into CPRS.  They'll have
 more
 tools at their disposal.  So VistA is designed to
 allow them to prepair a large document with multiple
 patient reports in it.  Each report has a separate
 header.  Then the file is uploaded to VistA.  The
 upload process then scans through the document and
 identifies each report.  Each report specifies the
 type of note it is, i.e. SURGICAL NOTE, or PROGESS
 NOTE etc.  These note types are set up by you.  Each
 note type has a cooresponding filer program.  This
 is
 a program that prepairs a document entry in file
 #8925
 (TIU DOCUMENT) for the filer to put the report into.
  
 
 The TIU (Text integration utilities) module has some
 sample filer programs that one can use to customize
 for your location.  I know that one of these samples
 focuses on surgical reports.  It somehow ties the
 report to the surgical entity in VistA.  I haven't
 explored the surgical side of things since I am
 outpatient here.
 
 This doesn't directly answer your question, but I
 hope
 it gives you some background info that helps.
 
 Kevin
 
 
 --- Nick James [EMAIL PROTECTED] wrote:
 
  
  I have sucessfully done a dummy surgery on my test
  patient! have even managed to get the Nurse's
  interoperative report and anesthesia report signed
  and
  completed! But the problem now is that when i try
 to
  get to the Operation report (in CPRS) , i cannot
 get
  the status moving from undictated. How does one
  dictate these reports and have the alert to sign
 it?
  
  From the Operation Menu, 
  
  Select Operation Menu Option: OR  Operation Report
  
   * * The Operation Report for this case is not yet
  available. * *
  
  
  Nick.
  
  
  
  __ 
  Do you Yahoo!? 
  Yahoo! Mail - Helps protect you from nasty
 viruses. 
  http://promotions.yahoo.com/new_mail
  
  
 

---
  This SF.Net email is sponsored by: IntelliVIEW --
  Interactive Reporting
  Tool for open source databases. Create drag--drop
  reports. Save time
  by over 75%! Publish reports on the web. Export to
  DOC, XLS, RTF, etc.
  Download a FREE copy at
  http://www.intelliview.com/go/osdn_nl
  ___
  Hardhats-members mailing list
  Hardhats-members@lists.sourceforge.net
 

https://lists.sourceforge.net/lists/listinfo/hardhats-members
  
 
 
 __
 Do You Yahoo!?
 Tired of spam?  Yahoo! Mail has the best spam
 protection around 
 http://mail.yahoo.com 
 
 

---
 This SF.Net email is sponsored by: IntelliVIEW --
 Interactive Reporting
 Tool for open source databases. Create drag--drop
 reports. Save time
 by over 75%! Publish reports on the web. Export to
 DOC, XLS, RTF, etc.
 Download a FREE copy at
 http://www.intelliview.com/go/osdn_nl
 ___
 Hardhats-members mailing list
 Hardhats-members@lists.sourceforge.net

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




__ 
Do you Yahoo!? 
Yahoo! Mail - 250MB free storage. Do more. Manage less. 
http://info.mail.yahoo.com/mail_250


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag--drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
Hardhats-members mailing list
Hardhats-members@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/hardhats-members