Re: PIPE Help (please)

2008-03-14 Thread Kris Buelens
This is the quickest I could come up with.  No, not a PIPE this time.
Restore of IMPCP, VMCONIO and CPCONIO is a task left to the reader.
As opposed to the original code, the command execution order remains
the usual CMS, CP
/* */
trace o
address command
'ERASE $PIPEF$ $TEMP$ A'
'WAKEUP +0 (IUCVMSG'
'SET IMPCP ON'; 'CP SET CPCONIO IUCV'; 'CP SET VMCONIO IUCV'
address cms arg(1) ; src=rc
'CP SET CPCONIO OFF'; 'CP SET VMCONIO OFF'
do until wrc5
   'WAKEUP +0 (IUCVMSG QUIET' ; wrc=rc
   if wrc=5 then do
  parse pull 18 ln
  'EXECIO 1 DISKW $PIPEF$ $TEMP$ A3(STRING' ln
   end
end
'WAKEUP RESET'
if src=-3 then say 'Unknown CP/CMS command'
'FINIS $PIPEF$ $TEMP$ A'
if rc=0 then 'XEDIT $PIPEF$ $TEMP$ A'
else if src-3 then say 'No command output'
exit src

-- 
Kris Buelens,
IBM Belgium, VM customer support


Re: Using WakeUp to cycle a zLinux instance

2008-03-14 Thread Romanowski, John (OFT)
Instead of adding a CP SIGNAL SHUTDOWN option to prevent shutdown
(contrary to the signal name),
it'd be better to extend the CP SIGNAL command to send other types of
signals for other purposes, something like the linux 'kill' command.
 kill sounds like it started out as a stone cold killer but was reformed
to deliver many other useful,  non-fatal signals. 
Something like CP SIGNAL QUIT or SIGNAL STOP

'kill -l' lists these types of special-purpose signals
1) SIGHUP   2) SIGINT   3) SIGQUIT  4) SIGILL
 5) SIGTRAP  6) SIGABRT  7) SIGBUS   8) SIGFPE
 9) SIGKILL 10) SIGUSR1 11) SIGSEGV 12) SIGUSR2
13) SIGPIPE 14) SIGALRM 15) SIGTERM 17) SIGCHLD
18) SIGCONT 19) SIGSTOP 20) SIGTSTP 21) SIGTTIN
22) SIGTTOU 23) SIGURG  24) SIGXCPU 25) SIGXFSZ
26) SIGVTALRM   27) SIGPROF 28) SIGWINCH29) SIGIO
30) SIGPWR  31) SIGSYS  33) SIGRTMIN34) SIGRTMIN+1
35) SIGRTMIN+2  36) SIGRTMIN+3  37) SIGRTMIN+4  38) SIGRTMIN+5
39) SIGRTMIN+6  40) SIGRTMIN+7  41) SIGRTMIN+8  42) SIGRTMIN+9
43) SIGRTMIN+10 44) SIGRTMIN+11 45) SIGRTMIN+12 46) SIGRTMIN+13
47) SIGRTMIN+14 48) SIGRTMIN+15 49) SIGRTMAX-15 50) SIGRTMAX-14
51) SIGRTMAX-13 52) SIGRTMAX-12 53) SIGRTMAX-11 54) SIGRTMAX-10
55) SIGRTMAX-9  56) SIGRTMAX-8  57) SIGRTMAX-7  58) SIGRTMAX-6
59) SIGRTMAX-5  60) SIGRTMAX-4  61) SIGRTMAX-3  62) SIGRTMAX-2
63) SIGRTMAX-1  64) SIGRTMAX



This e-mail, including any attachments, may be confidential, privileged or 
otherwise legally protected. It is intended only for the addressee. If you 
received this e-mail in error or from someone who was not authorized to send it 
to you, do not disseminate, copy or otherwise use this e-mail or its 
attachments.  Please notify the sender immediately by reply e-mail and delete 
the e-mail from your system.


-Original Message-

From: The IBM z/VM Operating System [mailto:[EMAIL PROTECTED] On
Behalf Of Berry van Sleeuwen
Sent: Thursday, March 13, 2008 6:21 PM
To: IBMVM@LISTSERV.UARK.EDU
Subject: Re: Using WakeUp to cycle a zLinux instance

snip

I had a discussion with IBM on that some time ago. I'd liked to see an 
option in signal to prevent the shutdown of guests when they do not 
shutdown within the timeout period. But IBM did not follow me on that. 
When a forced user in not acceptable (databases or jobs cancelled while 
processing) they advised not to use SIGNAL. This is true for zLinux but 
also for guest VM, VSE and SFS (all of them can trap the signal.)
snip


Re: Using WakeUp to cycle a zLinux instance

2008-03-14 Thread Alan Altmark
On Friday, 03/14/2008 at 08:31 EDT, Romanowski, John (OFT) 
[EMAIL PROTECTED] wrote:
 Instead of adding a CP SIGNAL SHUTDOWN option to prevent shutdown
 (contrary to the signal name),
 it'd be better to extend the CP SIGNAL command to send other types of
 signals for other purposes, something like the linux 'kill' command.
 kill sounds like it started out as a stone cold killer but was reformed
 to deliver many other useful,  non-fatal signals.
 Something like CP SIGNAL QUIT or SIGNAL STOP
 
 'kill -l' lists these types of special-purpose signals
 1) SIGHUP   2) SIGINT   3) SIGQUIT  4) SIGILL
 5) SIGTRAP  6) SIGABRT  7) SIGBUS   8) SIGFPE
 9) SIGKILL 10) SIGUSR1 11) SIGSEGV 12) SIGUSR2
 13) SIGPIPE 14) SIGALRM 15) SIGTERM 17) SIGCHLD
 18) SIGCONT 19) SIGSTOP 20) SIGTSTP 21) SIGTTIN
 22) SIGTTOU 23) SIGURG  24) SIGXCPU 25) SIGXFSZ
 26) SIGVTALRM   27) SIGPROF 28) SIGWINCH29) SIGIO
 30) SIGPWR  31) SIGSYS  33) SIGRTMIN34) SIGRTMIN+1
 ...

So define an external interrupt code to go with each one and update Linux 
to convert them to one of the above signals.  Then a simple SENDSIG exec 
takes care of it.  For example, if you bind SIGPWR to code 3000, then 
SENDSIG LINUX01 PWR would result in CP SEND CP LINUX01 EXT 5000. You don't 
need a change in the CP SIGNAL command to do this; SIGNAL is for 
architecturally-defined events.

Alan Altmark
z/VM Development
IBM Endicott


Re: Re-Use DASD

2008-03-14 Thread Steve Mitchell
 Reformat the volumes with CPFMTXA or ICKDSF CPVOL, add them to your
 directory management tool (if you have one), and allocate a minidisk
 from 1-End and give that to the new guests.
 As has been previously mentioned, by you among others, allocating the
 minidisk from (1) to (end-1) would be better as it simplifies setting
up
 testing in 2nd level VM systems.
 Brian Nielsen

Perhaps I've mis-interpretted the term 'Full Volume Minidisk'.
I format cylinder 0 0, and then give the 'Volume Label'.

I've understood that to mean I'm  making cyl 1 to end available for linux
and using cyl 0 for vm.  Is that not correct?

Steve Mitchell
Sr Systems Software Specialist
Blue Cross Blue Shield of Kansas
(785) 291-8885

'There are no degrees of Honesty-you're either Honest or you're not!



CONFIDENTIALITY NOTICE: This email message and any attachments are for the sole 
use of the intended recipient(s) and may contain proprietary, confidential, 
trade secret or privileged information.  Any unauthorized review use, 
disclosure or distribution is prohibited and may be a violation of law.  If you 
are not the intended recipient or a person responsible for delivering this 
message to an intended recipient, please contact the sender by reply email and 
destroy all copies of the original message.


Re: MONWRITE files (PROFS)

2008-03-14 Thread Peter . Webb
OVMAIL works fine on our z/VM 5.3 system.

Peter

-Original Message-
From: The IBM z/VM Operating System [mailto:[EMAIL PROTECTED] On
Behalf Of Marcy Cortes
Sent: March 14, 2008 11:37
To: IBMVM@LISTSERV.UARK.EDU
Subject: Re: MONWRITE files (PROFS)

We can join Stanley's contest.  We have 1 user left.  Unfortunately, she
is
an EVP with 1700 notelogs :( and a 2000 cylinder a-disk.
Beware that the OVMAIL command stops working with z/VM 5.3.  She had to
learn how to find notelogs with filelist.

Marcy

This message may contain confidential and/or privileged information. If
you
are not the addressee or authorized to receive this for the addressee,
you
must not use, copy, disclose, or take any action based on this message
or
any information herein. If you have received this message in error,
please
advise the sender immediately by reply e-mail and delete this message.
Thank
you for your cooperation.



Stanley Rarick is cheating, Mark wants to win the price for the last
PROFS,
Office Vision/VM is another contest ;-)

2008/3/14, Rob van der Heij [EMAIL PROTECTED]:
 On Fri, Mar 14, 2008 at 4:45 PM, Stanley Rarick
[EMAIL PROTECTED]
wrote:

Standard OfficeVision Menu


 Press one of the following PF keys.
 PF1  Process schedules... Time:
10:18 AM
 PF2  Open the mail
 PF3  Browse employee directory2008 MARCH
2008
 PF4  Process notes and messages...   S   M   T   W
T
F   S


 DR00L :-) It wasn't love on first sight with PROFS, but after we
  were forced to live together, we got pretty close...


  Rob

--
Kris Buelens,
IBM Belgium, VM customer support


The information transmitted is intended only for the person or entity to which 
it is addressed and may contain confidential and/or privileged material.  Any 
review retransmission dissemination or other use of or taking any action in 
reliance upon this information by persons or entities other than the intended 
recipient or delegate is strictly prohibited.  If you received this in error 
please contact the sender and delete the material from any computer.  The 
integrity and security of this message cannot be guaranteed on the Internet.  
The sender accepts no liability for the content of this e-mail or for the 
consequences of any actions taken on the basis of information provided.  The 
recipient should check this e-mail and any attachments for the presence of 
viruses.  The sender accepts no liability for any damage caused by any virus 
transmitted by this e-mail.  This disclaimer is property of the TTC and must 
not be altered or circumvented in any manner.


Re: MONWRITE files (PROFS)

2008-03-14 Thread Mike Walter
Just to be clear, there appear to be two separate contests in play now, 
since PROFS  OV/VM.
To say otherwise would be to say that VM 370 = z/VM. 
Granted, each subsequent release is built upon the shoulders of that which 
came before it, but they are _different_ products.

OV/VM had lots of great features that we never had a chance to use because 
we switched to Lotus Notes in lieu of upgrading to OV/VM.
IMHO, the nice thing about PROFS (and OV/VM) was that everyone spent time 
working on the content of the message instead of fonts, colors, clip-art, 
etc.  But those added bells and whistles, **properly used**, can 
significantly enhance the message.

Mike Walter 
Hewitt Associates 
Any opinions expressed herein are mine alone and do not necessarily 
represent the opinions or policies of Hewitt Associates.



Marcy Cortes [EMAIL PROTECTED] 

Sent by: The IBM z/VM Operating System IBMVM@LISTSERV.UARK.EDU
03/14/2008 10:36 AM
Please respond to
The IBM z/VM Operating System IBMVM@LISTSERV.UARK.EDU



To
IBMVM@LISTSERV.UARK.EDU
cc

Subject
Re: MONWRITE files (PROFS)






We can join Stanley's contest.  We have 1 user left.  Unfortunately, she 
is
an EVP with 1700 notelogs :( and a 2000 cylinder a-disk.
Beware that the OVMAIL command stops working with z/VM 5.3.  She had to
learn how to find notelogs with filelist.

Marcy

This message may contain confidential and/or privileged information. If 
you
are not the addressee or authorized to receive this for the addressee, you
must not use, copy, disclose, or take any action based on this message or
any information herein. If you have received this message in error, please
advise the sender immediately by reply e-mail and delete this message. 
Thank
you for your cooperation.



Stanley Rarick is cheating, Mark wants to win the price for the last 
PROFS,
Office Vision/VM is another contest ;-)

2008/3/14, Rob van der Heij [EMAIL PROTECTED]:
 On Fri, Mar 14, 2008 at 4:45 PM, Stanley Rarick [EMAIL PROTECTED]
wrote:

Standard OfficeVision Menu


 Press one of the following PF keys.
 PF1  Process schedules... Time:  10:18 
AM
 PF2  Open the mail
 PF3  Browse employee directory2008 MARCH
2008
 PF4  Process notes and messages...   S   M   T   W   T
F   S


 DR00L :-) It wasn't love on first sight with PROFS, but after we
  were forced to live together, we got pretty close...


  Rob

--
Kris Buelens,
IBM Belgium, VM customer support





The information contained in this e-mail and any accompanying documents may 
contain information that is confidential or otherwise protected from 
disclosure. If you are not the intended recipient of this message, or if this 
message has been addressed to you in error, please immediately alert the sender 
by reply e-mail and then delete this message, including any attachments. Any 
dissemination, distribution or other use of the contents of this message by 
anyone other than the intended recipient is strictly prohibited. All messages 
sent to and from this e-mail address may be monitored as permitted by 
applicable law and regulations to ensure compliance with our internal policies 
and to protect our business. E-mails are not secure and cannot be guaranteed to 
be error free as they can be intercepted, amended, lost or destroyed, or 
contain viruses. You are deemed to have accepted these risks if you communicate 
with us by e-mail. 


Re: Re-Use DASD

2008-03-14 Thread Alan Altmark
On Friday, 03/14/2008 at 11:38 EDT, Steve Mitchell 
[EMAIL PROTECTED] wrote:

 Perhaps I've mis-interpretted the term 'Full Volume Minidisk'.
 I format cylinder 0 0, and then give the 'Volume Label'.
 
 I've understood that to mean I'm  making cyl 1 to end available for 
linux
 and using cyl 0 for vm.  Is that not correct?

A full-pack minidisk covers cylinders 0-END.  Anything else is just a 
minidisk.  We differentiate because there are special rules that apply to 
full-pack minidisks.  In particular, the use of DEVNO in the directory and 
SYSTEM CONFIG and their support of real Reserve/Release.

Alan Altmark
z/VM Development
IBM Endicott


Re: MONWRITE files (PROFS)

2008-03-14 Thread Marcy Cortes
We can join Stanley's contest.  We have 1 user left.  Unfortunately, she is
an EVP with 1700 notelogs :( and a 2000 cylinder a-disk.
Beware that the OVMAIL command stops working with z/VM 5.3.  She had to
learn how to find notelogs with filelist.

Marcy

This message may contain confidential and/or privileged information. If you
are not the addressee or authorized to receive this for the addressee, you
must not use, copy, disclose, or take any action based on this message or
any information herein. If you have received this message in error, please
advise the sender immediately by reply e-mail and delete this message. Thank
you for your cooperation.



Stanley Rarick is cheating, Mark wants to win the price for the last PROFS,
Office Vision/VM is another contest ;-)

2008/3/14, Rob van der Heij [EMAIL PROTECTED]:
 On Fri, Mar 14, 2008 at 4:45 PM, Stanley Rarick [EMAIL PROTECTED]
wrote:

Standard OfficeVision Menu


 Press one of the following PF keys.
 PF1  Process schedules... Time:  10:18 AM
 PF2  Open the mail
 PF3  Browse employee directory2008 MARCH
2008
 PF4  Process notes and messages...   S   M   T   W   T
F   S


 DR00L :-) It wasn't love on first sight with PROFS, but after we
  were forced to live together, we got pretty close...


  Rob

--
Kris Buelens,
IBM Belgium, VM customer support


Re: Re-Use DASD

2008-03-14 Thread Rob van der Heij
On Fri, Mar 14, 2008 at 4:33 PM, Steve Mitchell
[EMAIL PROTECTED] wrote:

  I've understood that to mean I'm  making cyl 1 to end available for linux
  and using cyl 0 for vm.  Is that not correct?

You're correct. For normal use that is enough.
The idea behind leaving the last cylinder free is that you could in
theory copy cyl 0 plus the Linux mini disk onto another pack, starting
from cylinder 1. That would allow for the same trick to be played in a
2nd level system.
But I don't know whether many people test Linux in 2nd level VM
systems. You certainly would not do for performance, and you might
also miss out on some of the hardware facilities that Linux can
exploit.

Rob
-- 
Rob van der Heij
Velocity Software GmbH
http://velocitysoftware.com/


Re: MONWRITE files (PROFS)

2008-03-14 Thread Ed Zell
 IMHO, the nice thing about PROFS (and OV/VM) was that
 everyone spent time working on the content of the message
 instead of fonts, colors, clip-art, etc.  


I hear that loud and clear.  If the content stinks, no amount
of prettying it up will help a document.

Ed Zell
Illinois Mutual Life
(309) 636-0107
.


CONFIDENTIALITY: This e-mail (including any attachments) may contain 
confidential, proprietary and privileged information, and unauthorized 
disclosure or use is prohibited.  If you receive this e-mail in error, notify 
the sender and delete this e-mail from your system.


New posting

2008-03-14 Thread Tony Noto
Well, it's been a while, but there is a new posting at

 

http://www.velocitysoftware.com/jobs/

 

and just a reminder, this is free to anyone wishing to post a position
wanted or position available for VSE, Linux, and/or z/VM.

 

Regards,

 

Tony Noto

Velocity Software, Inc

196-D Castro St.

Mountain View, CA 94041

650-964-8867

http://www.velocitysoftware.com

 



Re: MONWRITE files (PROFS)

2008-03-14 Thread Stanley Rarick

No intention of cheating.
Unfortunately, never lucky enoough (in 30+ years with VM) to have had 
the experience of working with PROFS/OV


I was basing my statement more on the following :

EPRERELN SEXECB1  V 80  Trunc=80 Size=142 Line=0 Col=1 Alt=0

|...+1+2+3+4+5+6+7...
* * * Top of File * * *  
/**/ 
/* EPRERELN EXEC --- EPRERELN FACILITY --- PROFS FUNCTION */ 
/**/ 
/* SYNTAX: EPRERELN CALLTYPE addr */ 
/**/ 
/* This PROFS exit allows the modification of a list of addressees*/ 
/* for notes, documents and calendars.It is called by PROFS whenever  */ 
/* addressee name resolution occurs.  */ 
/**/ 
/* Normal exit return code is 8 which causes PROFS to process all of  */ 

00282   'PROFS TERMNL 
TTY'   
00283   QUEUE destid 
00284   queue 'Error 
encountered'
00285   queue 'Listed below are the last 20 lines of the log 
file'   
00286   do ll = start to 
inline.0
00287  queue 
inline.ll   
00288  
end   
00289   queue 
'' 
00290   'PROFS 
NOTE' 
00291   'DROPBUF 
'buff   



Kris Buelens wrote:


Stanley Rarick is cheating, Mark wants to win the price for the last
PROFS, Office Vision/VM is another contest ;-)

2008/3/14, Rob van der Heij [EMAIL PROTECTED]:
 


On Fri, Mar 14, 2008 at 4:45 PM, Stanley Rarick [EMAIL PROTECTED] wrote:

  Standard OfficeVision Menu


   Press one of the following PF keys.
   PF1  Process schedules... Time:  10:18 AM
   PF2  Open the mail
   PF3  Browse employee directory2008 MARCH 2008
   PF4  Process notes and messages...   S   M   T   W   T   F   S


DR00L :-) It wasn't love on first sight with PROFS, but after we
were forced to live together, we got pretty close...


Rob
   



 



Re: MONWRITE files (PROFS)

2008-03-14 Thread Marcy Cortes
We've been getting  
EPUJMN005E OV/VM is unable to process your request.

What's the date on your OVMAIL EXEC (compiled)?

(I'm not too worried about fixing it--- one more reason to move along).

Marcy 
This message may contain confidential and/or privileged information. If you
are not the addressee or authorized to receive this for the addressee, you
must not use, copy, disclose, or take any action based on this message or
any information herein. If you have received this message in error, please
advise the sender immediately by reply e-mail and delete this message. Thank
you for your cooperation.


-Original Message-
From: The IBM z/VM Operating System [mailto:[EMAIL PROTECTED] On
Behalf Of [EMAIL PROTECTED]
Sent: Friday, March 14, 2008 8:43 AM
To: IBMVM@LISTSERV.UARK.EDU
Subject: Re: [IBMVM] MONWRITE files (PROFS)

OVMAIL works fine on our z/VM 5.3 system.

Peter

-Original Message-
From: The IBM z/VM Operating System [mailto:[EMAIL PROTECTED] On
Behalf Of Marcy Cortes
Sent: March 14, 2008 11:37
To: IBMVM@LISTSERV.UARK.EDU
Subject: Re: MONWRITE files (PROFS)

We can join Stanley's contest.  We have 1 user left.  Unfortunately, she is
an EVP with 1700 notelogs :( and a 2000 cylinder a-disk.
Beware that the OVMAIL command stops working with z/VM 5.3.  She had to
learn how to find notelogs with filelist.

Marcy

This message may contain confidential and/or privileged information. If you
are not the addressee or authorized to receive this for the addressee, you
must not use, copy, disclose, or take any action based on this message or
any information herein. If you have received this message in error, please
advise the sender immediately by reply e-mail and delete this message.
Thank
you for your cooperation.



Stanley Rarick is cheating, Mark wants to win the price for the last PROFS,
Office Vision/VM is another contest ;-)

2008/3/14, Rob van der Heij [EMAIL PROTECTED]:
 On Fri, Mar 14, 2008 at 4:45 PM, Stanley Rarick
[EMAIL PROTECTED]
wrote:

Standard OfficeVision Menu


 Press one of the following PF keys.
 PF1  Process schedules... Time:
10:18 AM
 PF2  Open the mail
 PF3  Browse employee directory2008 MARCH
2008
 PF4  Process notes and messages...   S   M   T   W
T
F   S


 DR00L :-) It wasn't love on first sight with PROFS, but after we
  were forced to live together, we got pretty close...


  Rob

--
Kris Buelens,
IBM Belgium, VM customer support


The information transmitted is intended only for the person or entity to
which it is addressed and may contain confidential and/or privileged
material.  Any review retransmission dissemination or other use of or taking
any action in reliance upon this information by persons or entities other
than the intended recipient or delegate is strictly prohibited.  If you
received this in error please contact the sender and delete the material
from any computer.  The integrity and security of this message cannot be
guaranteed on the Internet.  The sender accepts no liability for the content
of this e-mail or for the consequences of any actions taken on the basis of
information provided.  The recipient should check this e-mail and any
attachments for the presence of viruses.  The sender accepts no liability
for any damage caused by any virus transmitted by this e-mail.  This
disclaimer is property of the TTC and must not be altered or circumvented in
any manner.


Re: Re-Use DASD

2008-03-14 Thread Brian Nielsen
On Fri, 14 Mar 2008 16:38:44 +0100, Rob van der Heij [EMAIL PROTECTED]
software.com wrote:

On Fri, Mar 14, 2008 at 4:33 PM, Steve Mitchell
[EMAIL PROTECTED] wrote:

  I've understood that to mean I'm  making cyl 1 to end available for 

linux
  and using cyl 0 for vm.  Is that not correct?

You're correct. For normal use that is enough.
The idea behind leaving the last cylinder free is that you could in
theory copy cyl 0 plus the Linux mini disk onto another pack, starting
from cylinder 1. That would allow for the same trick to be played in a
2nd level system.
But I don't know whether many people test Linux in 2nd level VM
systems. You certainly would not do for performance, and you might
also miss out on some of the hardware facilities that Linux can
exploit.

I tested Linux in a 2nd level VM as part of migrating from z/VM 5.2 to 5.
3.

Any exploitation of new hardware features would be tested after a 
migration is complete.

Brian Nielsen


Re: MONWRITE files (PROFS)

2008-03-14 Thread Peter . Webb
OVMAIL   EXEC B1  F  1024  4  1
1995-09-06  9:27

Peter

-Original Message-
From: The IBM z/VM Operating System [mailto:[EMAIL PROTECTED] On
Behalf Of Marcy Cortes
Sent: March 14, 2008 11:52
To: IBMVM@LISTSERV.UARK.EDU
Subject: Re: MONWRITE files (PROFS)

We've been getting  
EPUJMN005E OV/VM is unable to process your request.

What's the date on your OVMAIL EXEC (compiled)?

(I'm not too worried about fixing it--- one more reason to move along).

Marcy 
This message may contain confidential and/or privileged information. If
you
are not the addressee or authorized to receive this for the addressee,
you
must not use, copy, disclose, or take any action based on this message
or
any information herein. If you have received this message in error,
please
advise the sender immediately by reply e-mail and delete this message.
Thank
you for your cooperation.


-Original Message-
From: The IBM z/VM Operating System [mailto:[EMAIL PROTECTED] On
Behalf Of [EMAIL PROTECTED]
Sent: Friday, March 14, 2008 8:43 AM
To: IBMVM@LISTSERV.UARK.EDU
Subject: Re: [IBMVM] MONWRITE files (PROFS)

OVMAIL works fine on our z/VM 5.3 system.

Peter

-Original Message-
From: The IBM z/VM Operating System [mailto:[EMAIL PROTECTED] On
Behalf Of Marcy Cortes
Sent: March 14, 2008 11:37
To: IBMVM@LISTSERV.UARK.EDU
Subject: Re: MONWRITE files (PROFS)

We can join Stanley's contest.  We have 1 user left.  Unfortunately, she
is
an EVP with 1700 notelogs :( and a 2000 cylinder a-disk.
Beware that the OVMAIL command stops working with z/VM 5.3.  She had to
learn how to find notelogs with filelist.

Marcy

This message may contain confidential and/or privileged information. If
you
are not the addressee or authorized to receive this for the addressee,
you
must not use, copy, disclose, or take any action based on this message
or
any information herein. If you have received this message in error,
please
advise the sender immediately by reply e-mail and delete this message.
Thank
you for your cooperation.



Stanley Rarick is cheating, Mark wants to win the price for the last
PROFS,
Office Vision/VM is another contest ;-)

2008/3/14, Rob van der Heij [EMAIL PROTECTED]:
 On Fri, Mar 14, 2008 at 4:45 PM, Stanley Rarick
[EMAIL PROTECTED]
wrote:

Standard OfficeVision Menu


 Press one of the following PF keys.
 PF1  Process schedules... Time:
10:18 AM
 PF2  Open the mail
 PF3  Browse employee directory2008 MARCH
2008
 PF4  Process notes and messages...   S   M   T   W
T
F   S


 DR00L :-) It wasn't love on first sight with PROFS, but after we
  were forced to live together, we got pretty close...


  Rob

--
Kris Buelens,
IBM Belgium, VM customer support


The information transmitted is intended only for the person or entity to
which it is addressed and may contain confidential and/or privileged
material.  Any review retransmission dissemination or other use of or
taking
any action in reliance upon this information by persons or entities
other
than the intended recipient or delegate is strictly prohibited.  If you
received this in error please contact the sender and delete the material
from any computer.  The integrity and security of this message cannot be
guaranteed on the Internet.  The sender accepts no liability for the
content
of this e-mail or for the consequences of any actions taken on the basis
of
information provided.  The recipient should check this e-mail and any
attachments for the presence of viruses.  The sender accepts no
liability
for any damage caused by any virus transmitted by this e-mail.  This
disclaimer is property of the TTC and must not be altered or
circumvented in
any manner.


The information transmitted is intended only for the person or entity to which 
it is addressed and may contain confidential and/or privileged material.  Any 
review retransmission dissemination or other use of or taking any action in 
reliance upon this information by persons or entities other than the intended 
recipient or delegate is strictly prohibited.  If you received this in error 
please contact the sender and delete the material from any computer.  The 
integrity and security of this message cannot be guaranteed on the Internet.  
The sender accepts no liability for the content of this e-mail or for the 
consequences of any actions taken on the basis of information provided.  The 
recipient should check this e-mail and any attachments for the presence of 
viruses.  The sender accepts no liability for any damage caused by any virus 
transmitted by this e-mail.  This disclaimer is property of the TTC and must 
not be altered or circumvented in any manner.


Re: Re-Use DASD

2008-03-14 Thread David Boyes
 Perhaps I've mis-interpretted the term 'Full Volume Minidisk'.
 I format cylinder 0 0, and then give the 'Volume Label'.
 I've understood that to mean I'm  making cyl 1 to end available for
linux
 and using cyl 0 for vm.  Is that not correct?

Usually, full volume minidisks get cyl 0 as well. I don't know if
there is a official term for the 1-End version -- rest of the volume
minidisks, maybe? 


Re: MONWRITE files (PROFS)

2008-03-14 Thread Dale R. Smith
Don't you just love that real informative error message?  ;-)

-- 
Dale R. Smith

Give a man a computer program and you give him a headache, but teach  

him to program computers and you give him the power to create headaches
for others for the rest of his life.
  
- R. B. Forest
 


On Fri, 14 Mar 2008 10:52:13 -0500, Marcy Cortes 
[EMAIL PROTECTED] wrote:

We've been getting
EPUJMN005E OV/VM is unable to process your request.

What's the date on your OVMAIL EXEC (compiled)?

(I'm not too worried about fixing it--- one more reason to move along).

Marcy


Re: Re-Use DASD

2008-03-14 Thread Thomas Kern
A 'virtually-full-volume' minidisk, since cyl 0 was intentially left almo
st
blank.

/Tom Kern


On Fri, 14 Mar 2008 16:24:58 -0400, David Boyes [EMAIL PROTECTED] w
rote:

 Perhaps I've mis-interpretted the term 'Full Volume Minidisk'.
 I format cylinder 0 0, and then give the 'Volume Label'.
 I've understood that to mean I'm  making cyl 1 to end available for
linux
 and using cyl 0 for vm.  Is that not correct?

Usually, full volume minidisks get cyl 0 as well. I don't know if
there is a official term for the 1-End version -- rest of the volume

minidisks, maybe? 


Re: MONWRITE files (PROFS)

2008-03-14 Thread Jefferson Davis
My favorite is  call your system support personnel 

It usually doesn't help much to call myself.  

Jeff Davis

-Original Message-
From: The IBM z/VM Operating System [mailto:[EMAIL PROTECTED] On
Behalf Of Dale R. Smith
Sent: Friday, March 14, 2008 2:35 PM
To: IBMVM@LISTSERV.UARK.EDU
Subject: Re: MONWRITE files (PROFS)

Don't you just love that real informative error message?  ;-)

--
Dale R. Smith

Give a man a computer program and you give him a headache, but teach  

him to program computers and you give him the power to create headaches
for others for the rest of his life.
  
- R. B. Forest
 


On Fri, 14 Mar 2008 10:52:13 -0500, Marcy Cortes
[EMAIL PROTECTED] wrote:

We've been getting
EPUJMN005E OV/VM is unable to process your request.

What's the date on your OVMAIL EXEC (compiled)?

(I'm not too worried about fixing it--- one more reason to move along).

Marcy


Re: MONWRITE files (PROFS)

2008-03-14 Thread Thomas Kern
Is that the one where you look it up in the messages file (I don't rememb
er
a real manual for these messages) and it add these responses:

User Response: See your System Administrator.

System Administrator Response: See your Systems Programmer.

Systems Programmer Response: See your Systemes Programmer.


/Tom Kern (yes it is Friday)

On Fri, 14 Mar 2008 15:35:27 -0500, Dale R. Smith
[EMAIL PROTECTED] wrote:
Don't you just love that real informative error message?  ;-)

-- 
Dale R. Smith


On Fri, 14 Mar 2008 10:52:13 -0500, Marcy Cortes 
[EMAIL PROTECTED] wrote:

We've been getting
EPUJMN005E OV/VM is unable to process your request.



More SHARE 110 Linux and z/VM related presentations

2008-03-14 Thread Mark Post
Cross-posted to Linux-390, IBMVM and IBM-Main

I've been able to add 10 more presentations from SHARE 100 in Orlando, Florida 
to the linuxvm.org web site.  You can find them at 
http://linuxvm.org/Present/index.html#share110  If any more come in from the 
various presenters, I'll let you know when I've added them as well.

SHARE 110, Orlando, Florida, February 25-29, 2008
Session Presenter   Title
2590Martin Kammerer Linux for System z performance update
2591Martin Kammerer Linux on System z performance hints and tips
9239Mark VerLinux for System z Goody Bag
9259Horst HummelMaking Your Penguins Fly - Introduction to SCSI over 
FCP for Linux on System z
9267Stefan ThossNetworking with Linux on System z
9279Stefan ThossProblem Determination with Linux on System z
9280Horst HummelLinux on System z - What's new in the I/O Area
9282Horst HummelLogical Volume Management for Linux on System z
9291Martin Kammerer End to end performance of WebSphere environments with 
Linux on System z
9292Martin Kammerer Performance experience with databases on Linux for IBM 
System z


Mark Post