Re: [Hardhats-members] Linux question: Trouble mounting NFS

2004-11-02 Thread Kevin Toppenberg
Thanks William,

The wonder of Linux is that it has so many options and
'buttons.'  But, alas, it is also a hurdle for
learning.

I'll try the things you have suggested.  Thanks for
your help.

Kevin

--- Wong Weng Yee <[EMAIL PROTECTED]> wrote:

> On the point of nfs server version.  If you are
> using an nfs server of
> version 3.0.  Specify in the mount prompt nfsvers=3.
>  If it is 2.0,
> specify in the mount prompt nfsvers=2.  If you still
> have an error
> mounting, it may be the linux client nfs client
> tools are too out of
> date in which you may have to update it.
> 
> william
> 
> On Tue, 2004-11-02 at 06:41, Kevin Toppenberg wrote:
> > Hello all.  This question is for you Linux guru's
> out
> > there.
> > 
> > As part of my project to export data from my old
> > system, I am having trouble with small hard drives
> on
> > my old AIX server.  I want to get around this
> problem
> > by mounting a remote drive from a linux server.
> > 
> > I have been trying to follow the linux NFS HowTo. 
> But
> > as usual I only understand about half of what I
> read.
> > 
> > I gotten to the point where I can mount the drive
> > locally:
> > mount localhost:/var/nfs/aix /mnt/tmp
> > And it works as expected.
> > 
> > Because working with an AIX server might
> complicate
> > matters, I decided to first get the remote drive
> > mounted on a second linux computer.  All these
> > computers might be confusing, so I'll list them
> > 
> > 1. Linux NFS server ("vpn")
> > 2. AIX client
> > 3. Linux test client
> > 
> > I think I have added the appropriate ip addresses
> to
> > the hosts.allow file. Also, I used the RH9 graphic
> > setup for NFS on the NFS server.
> > 
> > At first I was getting an error on the Test Client
> box
> > about the connection being refused. So I added a
> hole
> > in my iptables to let the signal through:
> > iptables -I INPUT 1 -j ACCEPT -s
> > 192.168.0.0/255.255.0.0
> > This should allow communication from all units on
> my
> > local network but still keep out the internet (I
> > think).
> > 
> > But now when I try to mount from the linux test
> > client, I am getting the following:
> > 
> > [EMAIL PROTECTED] root]# mount vpn:/var/nfs/aix /mnt/tmp
> > mount: RPC: Program not registered
> > [EMAIL PROTECTED] root]#
> > 
> > Can anyone help?
> > 
> > Thanks
> > Kevin
> > 
> > 
> > 
> > 
> > 
> > __ 
> > Do you Yahoo!? 
> > Check out the new Yahoo! Front Page. 
> > www.yahoo.com
> > 
> > 
> > 
> > 
> >
>
---
> > 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=5588&alloc_id=12065&op=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=5588&alloc_id=12065&op=click
> ___
> Hardhats-members mailing list
> [EMAIL PROTECTED]
>
https://lists.sourceforge.net/lists/listinfo/hardhats-members
> 




__ 
Do you Yahoo!? 
Check out the new Yahoo! Front Page. 
www.yahoo.com 
 



---
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=5588&alloc_id=12065&op=click
___
Hardhats-members mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/hardhats-members


Re: [Hardhats-members] Linux question: Trouble mounting NFS

2004-11-02 Thread Wong Weng Yee
Here is some tips on getting it working.

1. If possible flush the server's firewall. Then flush the client's
firewall.  Also make sure that in between the server and client there
are no proxy servers or firewall that may drop or reject the packets.
2.  Make sure that the nfs server and portmap is running on the server.
3. Attempt to mount the server from the remote client. If fails, check
/var/log/messages for error messages.
4. It is possible that the client is trying to mount to a version 3 nfs
server where some linux client by default mounts to a version 2.  Hence,
you have to specify enter nfsvers=2. It will go something like this:
mount -t nfs -o nfsvers=2 vpn:/var/nfs/aix /mnt/tmp.
5. Never do a service nfs restart. Do a stop  and start instead. Don't
ask me why, it is a red hat issue.

william


On Tue, 2004-11-02 at 06:41, Kevin Toppenberg wrote:
> Hello all.  This question is for you Linux guru's out
> there.
> 
> As part of my project to export data from my old
> system, I am having trouble with small hard drives on
> my old AIX server.  I want to get around this problem
> by mounting a remote drive from a linux server.
> 
> I have been trying to follow the linux NFS HowTo.  But
> as usual I only understand about half of what I read.
> 
> I gotten to the point where I can mount the drive
> locally:
> mount localhost:/var/nfs/aix /mnt/tmp
> And it works as expected.
> 
> Because working with an AIX server might complicate
> matters, I decided to first get the remote drive
> mounted on a second linux computer.  All these
> computers might be confusing, so I'll list them
> 
> 1. Linux NFS server ("vpn")
> 2. AIX client
> 3. Linux test client
> 
> I think I have added the appropriate ip addresses to
> the hosts.allow file. Also, I used the RH9 graphic
> setup for NFS on the NFS server.
> 
> At first I was getting an error on the Test Client box
> about the connection being refused. So I added a hole
> in my iptables to let the signal through:
> iptables -I INPUT 1 -j ACCEPT -s
> 192.168.0.0/255.255.0.0
> This should allow communication from all units on my
> local network but still keep out the internet (I
> think).
> 
> But now when I try to mount from the linux test
> client, I am getting the following:
> 
> [EMAIL PROTECTED] root]# mount vpn:/var/nfs/aix /mnt/tmp
> mount: RPC: Program not registered
> [EMAIL PROTECTED] root]#
> 
> Can anyone help?
> 
> Thanks
> Kevin
> 
> 
> 
> 
>   
> __ 
> Do you Yahoo!? 
> Check out the new Yahoo! Front Page. 
> www.yahoo.com
> 
> 
> 
> 
> ---
> 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=5588&alloc_id=12065&op=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=5588&alloc_id=12065&op=click
___
Hardhats-members mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/hardhats-members


Re: [Hardhats-members] Linux question: Trouble mounting NFS

2004-11-02 Thread Wong Weng Yee
On the point of nfs server version.  If you are using an nfs server of
version 3.0.  Specify in the mount prompt nfsvers=3.  If it is 2.0,
specify in the mount prompt nfsvers=2.  If you still have an error
mounting, it may be the linux client nfs client tools are too out of
date in which you may have to update it.

william

On Tue, 2004-11-02 at 06:41, Kevin Toppenberg wrote:
> Hello all.  This question is for you Linux guru's out
> there.
> 
> As part of my project to export data from my old
> system, I am having trouble with small hard drives on
> my old AIX server.  I want to get around this problem
> by mounting a remote drive from a linux server.
> 
> I have been trying to follow the linux NFS HowTo.  But
> as usual I only understand about half of what I read.
> 
> I gotten to the point where I can mount the drive
> locally:
> mount localhost:/var/nfs/aix /mnt/tmp
> And it works as expected.
> 
> Because working with an AIX server might complicate
> matters, I decided to first get the remote drive
> mounted on a second linux computer.  All these
> computers might be confusing, so I'll list them
> 
> 1. Linux NFS server ("vpn")
> 2. AIX client
> 3. Linux test client
> 
> I think I have added the appropriate ip addresses to
> the hosts.allow file. Also, I used the RH9 graphic
> setup for NFS on the NFS server.
> 
> At first I was getting an error on the Test Client box
> about the connection being refused. So I added a hole
> in my iptables to let the signal through:
> iptables -I INPUT 1 -j ACCEPT -s
> 192.168.0.0/255.255.0.0
> This should allow communication from all units on my
> local network but still keep out the internet (I
> think).
> 
> But now when I try to mount from the linux test
> client, I am getting the following:
> 
> [EMAIL PROTECTED] root]# mount vpn:/var/nfs/aix /mnt/tmp
> mount: RPC: Program not registered
> [EMAIL PROTECTED] root]#
> 
> Can anyone help?
> 
> Thanks
> Kevin
> 
> 
> 
> 
>   
> __ 
> Do you Yahoo!? 
> Check out the new Yahoo! Front Page. 
> www.yahoo.com
> 
> 
> 
> 
> ---
> 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=5588&alloc_id=12065&op=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=5588&alloc_id=12065&op=click
___
Hardhats-members mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/hardhats-members


Re: [Hardhats-members] Recording a web conference

2004-11-02 Thread Nancy E. Anthracite
Well, so much for that idea. I just tested the system and the web conference 
server won't work with a Linux client.  it is Oracle Web Conferencing ... one 
more reason to love Oracle.

On Tuesday 02 November 2004 04:39 pm, Nancy E. Anthracite wrote:
> www.thesilver.net looks like a possible cheap ($18) Windows solution, too.
> I will try the Sourceforge solution tonight and get in touch with you if I
> can't figure it out, Bhaskar.  Thanks to both of you.
>
> On Tuesday 02 November 2004 04:07 pm, K.S. Bhaskar wrote:
> > I recently successfully used xvidcap (http://xvidcap.sourceforge.net/).
> > Depending on your distribution, it may require some other software to be
> > installed first.  Remember to set the codec to MS_DIV3 if you want the
> > output to be compatible with Windows Media Player.  Contact me offline
> > if you need help.
> >
> > -- Bhaskar
> >
> > On Tue, 2004-11-02 at 15:38, Nancy E. Anthracite wrote:
> > > Is there some screen capture software for Linux that will allow me to
> > > capture the video portion of a web conference I will be attending
> > > tomorrow?
> >
> > *
> >** 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:
> > 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_idU88&alloc_id065&op=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=5588&alloc_id=12065&op=click
___
Hardhats-members mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/hardhats-members


Re: [Hardhats-members] Recording a web conference

2004-11-02 Thread Nancy E. Anthracite
www.thesilver.net looks like a possible cheap ($18) Windows solution, too. I 
will try the Sourceforge solution tonight and get in touch with you if I 
can't figure it out, Bhaskar.  Thanks to both of you.  

On Tuesday 02 November 2004 04:07 pm, K.S. Bhaskar wrote:
> I recently successfully used xvidcap (http://xvidcap.sourceforge.net/).
> Depending on your distribution, it may require some other software to be
> installed first.  Remember to set the codec to MS_DIV3 if you want the
> output to be compatible with Windows Media Player.  Contact me offline
> if you need help.
>
> -- Bhaskar
>
> On Tue, 2004-11-02 at 15:38, Nancy E. Anthracite wrote:
> > Is there some screen capture software for Linux that will allow me to
> > capture the video portion of a web conference I will be attending
> > tomorrow?
>
> ***
> 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:
> 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_idU88&alloc_id065&op=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=5588&alloc_id=12065&op=click
___
Hardhats-members mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/hardhats-members


Re: [Hardhats-members] Recording a web conference

2004-11-02 Thread K.S. Bhaskar
I recently successfully used xvidcap (http://xvidcap.sourceforge.net/). 
Depending on your distribution, it may require some other software to be
installed first.  Remember to set the codec to MS_DIV3 if you want the
output to be compatible with Windows Media Player.  Contact me offline
if you need help.

-- Bhaskar

On Tue, 2004-11-02 at 15:38, Nancy E. Anthracite wrote:
> Is there some screen capture software for Linux that will allow me to capture 
> the video portion of a web conference I will be attending tomorrow?

***
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:
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_idU88&alloc_id065&op=click
___
Hardhats-members mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/hardhats-members


Re: [Hardhats-members] Recording a web conference

2004-11-02 Thread Joseph Dal Molin
Have a look here the Wincam software looks good ... free 15 day 
trial ... Linux version etc.

http://wincam.net/main.html
http://all-streaming-media.com/record-video-stream/screen-capture-software.htm
Nancy E. Anthracite wrote:
Is there some screen capture software for Linux that will allow me to capture 
the video portion of a web conference I will be attending tomorrow?

---
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=5588&alloc_id=12065&op=click
___
Hardhats-members mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/hardhats-members


[Hardhats-members] Recording a web conference

2004-11-02 Thread Nancy E. Anthracite
Is there some screen capture software for Linux that will allow me to capture 
the video portion of a web conference I will be attending tomorrow?
-- 
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=5588&alloc_id=12065&op=click
___
Hardhats-members mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/hardhats-members


[Hardhats-members] Fwd: Re: VPE Install Log

2004-11-02 Thread Kevin Toppenberg

Note: forwarded message attached.




__ 
Do you Yahoo!? 
Check out the new Yahoo! Front Page. 
www.yahoo.com 
 
--- Begin Message ---
If you want to thank everyone, you  will need to send it to Hardhats.  I sent 
this to you off the list because it had an attachment.


On Monday 01 November 2004 06:46 pm, you wrote:
> Thanks for this log Nancy. I was able to get it
> installed with it.
>
> Just for the record, we REALLY need to work on making
> our interfaces more understandable.
>
> The prompt
> "Input device: :"
> is actually asking for a "file"
>
> I was hitting enter (after all, I was interacting with
> the program from a terminal),and then was entering the
> file name at the prompt "input routine".
>
> grumble grumble.
>
> Anyway, thanks for the help everyone.
>
> Kevin
>
>
> --- "Nancy E. Anthracite" <[EMAIL PROTECTED]>
>
> wrote:
> > --
> > Nancy Anthracite
> >
> > > [EMAIL PROTECTED] ov3]$ cd Downloads
> >
> > [EMAIL PROTECTED] Downloads]$ ls
> > VPE
> >
> > [EMAIL PROTECTED] ov3]$ cd Downloads
> > [EMAIL PROTECTED] Downloads]$ ls
> > VPE
> > [EMAIL PROTECTED] Downloads]$ cd VPE
> > [EMAIL PROTECTED] VPE]$ unzip -a *
> > Archive:  VPE_12.zip
> >   inflating: VPE_72.pdf  [text]
> >   inflating: VPE_12_Read Me.txt  [text]
> >   inflating: VPE_12_Rtns.PRD [text]
> >   inflating: VPE_12_Rtns.MGR [text]
> > [EMAIL PROTECTED] VPE]$ gtm
> >
> > GTM>D ^%RI
> >
> >
> > GTM>D ^%RI
> >
> > Routine Input Utility - Converts RO file to *.m
> > files.
> >
> > Formfeed delimited ?
> > Input device: :
> > /home/ov3/Downloads/VPE/VPE_12_Rtns.MGR
> >
> >  7:49 AM  5-JAN-04
> > VPE Version 12
> >
> >
> > Output directory : /home/ov3/3.0/r/
> >
> > %ZVEMD%ZVEMD1   %ZVEMDC   %ZVEMDI   %ZVEMDL
> > %ZVEMDL1  %ZVEMDLB  %ZVEMDLD  %ZVEMDLE  %ZVEMDLI
> > %ZVEMDLM  %ZVEMDM   %ZVEMDN   %ZVEMDPR  %ZVEMDPT
> > %ZVEMDT   %ZVEMDU   %ZVEMDU1  %ZVEMDUM  %ZVEMDX
> > %ZVEMDXK  %ZVEMDY   %ZVEMG%ZVEMG1   %ZVEMGE
> > %ZVEMGE1  %ZVEMGI   %ZVEMGI1  %ZVEMGM   %ZVEMGM1
> > %ZVEMGMC  %ZVEMGO   %ZVEMGP   %ZVEMGPI  %ZVEMGPS
> > %ZVEMGR   %ZVEMGR1  %ZVEMGS   %ZVEMGU   %ZVEMGUM
> > %ZVEMGY   %ZVEMKC   %ZVEMKDT  %ZVEMKE   %ZVEMKEA
> > %ZVEMKEB  %ZVEMKEC  %ZVEMKI1  %ZVEMKI2  %ZVEMKI3
> > %ZVEMKI4  %ZVEMKI5  %ZVEMKP   %ZVEMKR   %ZVEMKRN
> > %ZVEMKST  %ZVEMKT   %ZVEMKT1  %ZVEMKT2  %ZVEMKTF
> > %ZVEMKTG  %ZVEMKTM  %ZVEMKTR  %ZVEMKTS  %ZVEMKTT
> > %ZVEMKTU  %ZVEMKU   %ZVEMKU1  %ZVEMKY   %ZVEMKY1
> > %ZVEMKY2  %ZVEMKY3  %ZVEMKYB  %ZVEMO%ZVEMOC
> > %ZVEMOE   %ZVEMOE1  %ZVEMOE2  %ZVEMOEA  %ZVEMOEB
> > %ZVEMOEP  %ZVEMOEU  %ZVEMOM   %ZVEMOM1  %ZVEMOM2
> > %ZVEMOS   %ZVEMOSS  %ZVEMOU   %ZVEMOUM  %ZVEMOY
> > %ZVEMR%ZVEMRC   %ZVEMRE   %ZVEMRE1  %ZVEMRE2
> > %ZVEMREA  %ZVEMREB  %ZVEMREJ  %ZVEMREL  %ZVEMREM
> > %ZVEMREO  %ZVEMREP  %ZVEMRER  %ZVEMREW  %ZVEMRI
> > %ZVEMRI1  %ZVEMRID  %ZVEMRIE  %ZVEMRLI  %ZVEMRLM
> > %ZVEMRLO  %ZVEMRLP  %ZVEMRLU  %ZVEMRLV  %ZVEMRLX
> > %ZVEMRLY  %ZVEMRLZ  %ZVEMRM   %ZVEMRM1  %ZVEMRM2
> > %ZVEMRMG  %ZVEMRMS  %ZVEMRP   %ZVEMRP1  %ZVEMRP2
> > %ZVEMRS   %ZVEMRS1  %ZVEMRSS  %ZVEMRU   %ZVEMRUM
> > %ZVEMRUS  %ZVEMRV   %ZVEMRY   %ZVEMSCL  %ZVEMSCU
> > %ZVEMSD   %ZVEMSF   %ZVEMSH   %ZVEMSHY  %ZVEMSID
> > %ZVEMSL   %ZVEMSNR  %ZVEMSO   %ZVEMSO1  %ZVEMSP
> > %ZVEMSPS  %ZVEMSQ   %ZVEMSQA  %ZVEMSQE  %ZVEMSQL
> > %ZVEMSQS  %ZVEMSQU  %ZVEMSQV  %ZVEMSQW  %ZVEMSRL
> > %ZVEMSS   %ZVEMSS1  %ZVEMST   %ZVEMSTO  %ZVEMSU
> > %ZVEMSU1  %ZVEMSU2  %ZVEMSY   %ZVEMSY1  %ZVEMSY2
> > ZVEMBLD   ZVEMBLDA  ZVEMBLDB  ZVEMBLDL  ZVEMBLDO
> > ZVEMDH1   ZVEMDH2   ZVEMDH3   ZVEMDH4   ZVEMDH5
> > ZVEMGHZVEMGH1   ZVEMGH2   ZVEMOHZVEMOH1
> > ZVEMOH2   ZVEMRHZVEMRH1   ZVEMRHK   ZVEMRHL
> > ZVEMRHW   ZVEMS ZVEMSF1   ZVEMSF2   ZVEMSF3
> > ZVEMSF4   ZVEMSF5   ZVEMSF6   ZVEMSF7   ZVEMSF8
> > ZVEMSF9   ZVEMSFA   ZVEMSFB   ZVEMSFC   ZVEMSFD
> > ZVEMSGZVEMSGC   ZVEMSGD   ZVEMSGH   ZVEMSGR
> > ZVEMSGS   ZVEMSGT   ZVEMSGU   ZVEMSH1   ZVEMSH2
> > ZVEMSH3   ZVEMSH4   ZVEMSH5   ZVEMSH6   ZVEMSH7
> > ZVEMSH8   ZVEMSH9   ZVEMSLA   ZVEMSLB   ZVEMSLC
> > ZVEMSLD   ZVEMSN
> >
> >
> > Restored 16609 lines in 222 routines.
> > GTM>D ^%RI
> >
> > Routine Input Utility - Converts RO file to *.m
> > files.
> >
> > Formfeed delimited ?
> >
> > Input device: :
> > /home/ov3/Downloads/VPE/VPE_12_Rtns.PRD
> >
> >  4:39 PM  4-JAN-04
> > VPE Version 12
> >
> >
> > Output directory : /home/ov3/3.0/r/
> >
> > VEEMI001  VEEMI002  VEEMI003  VEEMI004  VEEMI005
> > VEEMI006  VEEMI007  VEEMI008  VEEMI009  VEEMI00A
> > VEEMI00B  VEEMI00C  VEEMI00D  VEEMI00E  VEEMI00F
> > VEEMI00G  VEEMI00H  VEEMI00I  VEEMI00J  VEEMI00K
> > VEEMI00L  VEEMI00M  VEEMI00N  VEEMI00O  VEEMI00P
> > VEEMI00Q  VEEMI00R  VEEMI00S  VEEMINI1  VEEMINI2
> > VEEMINI3  VEEMINI4  VEEMINI5  VEEMINIS  VEEMINIT
> > VEEMVPE
> >
> >
> > Restored 3783 lines in 36 routines.
> > GTM>halt
> > [EMAIL PROTECTED] VPE]$ mupip rundown -r "*"
> > %GTM-I-MUFILRNDWNSUC, File /home/ov3/3.0/g/mumps.dat
> > successfully rundown
>
>