Re: switch user without logoff

2007-01-02 Thread Zoltan Balogh

Hi, and good morning :)

I'll read all post after my previous, but first of all.. telnet cant be a
good way for me because i can login only with logon by, and "help telnet"
dont tell me any possibility for VM like logonby connection...

Zoltan


Re: switch user without logoff

2007-01-02 Thread Alan Altmark
On Wednesday, 01/03/2007 at 01:00 CET, Zoltan Balogh 
<[EMAIL PROTECTED]> wrote:

> Nowadays i finished all change what i could do for make things easier, 
but i 
> was thinking of maybe possible to do the checking phase (using two user 
with 
> method logon by) without have to logon manually to each user. I know it 
is a 
> very lazy thing, but while im trying to solve problems i know more the 
VM and 
> ill see more its borders, what can i do and what not. And if i can do 
it, how.
> 
> So this is the answer to your question, what do i want to do ( and a 
some kind 
> of why in my long story)

In this case, from a privileged id, 
   CP SET SECUSER otheruser *

This will let you watch AND interact (using the CP SEND command) with 
another userid.  If you only want to watch the userid, use CP SET OBSERVER 
instead.

The previous reference to "SCIF" (Secondary Console Image Facility) is the 
same thing.

Alan Altmark
z/VM Development
IBM Endicott


Re: switch user without logoff

2007-01-02 Thread Adam Thornton

On Jan 2, 2007, at 5:24 PM, Mike Walter wrote:

Didn't Arty Ecock had another program named "session" that built an  
LDEV

on an existing logged on CMS userid, and popped you into that session?


That seems to be the "session" we have on our system.

A bit of googling:

http://ukcc.uky.edu/~tools.1996/session.vmarc

Adam


Re: IBM ServiceLink greenscreen to be discontinued March 31, 2007

2007-01-02 Thread David Boyes
> The internet version of ServiceLink has been embraced by our customers   
> as a safe and secure method of obtaining technical support and software 
> maintenance for their zSeries system. 

While I can kind of see their point about maintaining two applications for the 
same purpose, and probably a bunch of compatibility routines for the databases, 
I'd be interested to know if any of these "embracing" customers were visually 
impaired. The WWW version is *unusable* via Braille readers. 

I'd also really like to watch anyone in the UI design group for IBMlink 
navigate the IBMlink (or try to do so) apps using a text-only browser. 
I think it would be very enlightening. And darn funny. 

Particularly if we got video of the effort. I'm not sure the audio would be 
family-oriented enough to safely distribute. 


-- db


Re: switch user without logoff

2007-01-02 Thread David Boyes
> Nowadays i finished all change what i could do for make things easier,
but > i was thinking of maybe possible to do the checking phase (using
two user > with method logon by) without have to logon manually to each
user. I know > it is a very lazy thing, but while im trying to solve
problems i know more > the VM and ill see more its borders, what can i
do and what not. And if i > can do it, how.

Always give hard problems to the laziest man you know. They'll find the
least difficult way to solve the problem. 

Look around for a copy of RXLDEV. RXLDEV is a REXX function package that
allows you to create and manipulate CP LDEVs from REXX. Once you can do
that, you can automate just about anything. 

If all you need is to issue some line-mode commands and trap the output,
don't forget that telnet can be simulated in REXX by using RXSOCKET
calls connecting to port 23. 

Two other must-have tools: SESSION has already been mentioned, and if
you have a privileged ID, you must have a copy of TRACK. I carry them on
a USB drive everywhere I go. 


Re: switch user without logoff

2007-01-02 Thread David Boyes
> 1. Create another emulator session to connect to VM and use your
> emulator's own "jump next" key to switch between sessions.
> 
> 2. If you are connected to a 3270 terminal controller (e.g. 3174), use
the
> Multiple Logical Terminal (MLT) function of the controller to perform
the
> switch function.
> 
> 3. Download the YVETTE package from the VM Download Library.  You can
> program a PF/PA key to act as the "jump next" key.

4. Download the SESSION utility from any site having the VM Workshop
tools. You can create arbitrary numbers of sessions (I typically have
8-10 defined) and switch between them with a PF key or by name. Each
session does need to be a separate userid, though; nothing equivalent to
'su' within the same session.

YVETTE's got some more sophisticated features, but SESSION requires zero
installation and configuration; copy the binary someplace convenient,
SESSION FOO PF12, and you're off. Hit PF12 (or whatever you defined the
exit key to be), and you're back to the original session. You can even
run SESSION from inside XEDIT if you need to pop over to another id and
check something out and come right back to where you left off. 


Re: switch user without logoff

2007-01-02 Thread Thomas Kern
Okay, so how I read your problem is that you have some process running in
another virtual machine and you want to check it without logging off your id
and logging onto the other id. 

There are several ways and I sometimes use all of them. First, spool the
console of the process virtual machine, write status messages to that virtual
console, get the TRACK program to view the current open console buffer. Or get
the VM:Spool product from CA and use it to view the entire console log. Another
way is to write those status messages to a file on a minidisk and use "VMLINK
processid cuu ( FILELIST" to look at the current read-only view of the status
file. An older style of sending status messages is to at regular intervals,
send a punch file with a status message in it to your monitoring userid, and
user RDRLIST/PEEK to view the status messages.

There are more advanced techniques like including an SMSG/IUCV handler into
your process virtual machine to intercept, parse and respond to queries for
status messages. 

/Tom Kern
/301-903-2211

--- Zoltan Balogh <[EMAIL PROTECTED]> wrote:

> First of all, if i forget: Happy new Year, happy 2007!
> 
>   ...snipped...
> Nowadays i finished all change what i could do for make things easier, but i
> was thinking of maybe possible to do the checking phase (using two user with
> method logon by) without have to logon manually to each user. I know it is a
> very lazy thing, but while im trying to solve problems i know more the VM
> and ill see more its borders, what can i do and what not. And if i can do
> it, how.
> 
> So this is the answer to your question, what do i want to do ( and a some
> kind of why in my long story)
> 
> Zoltan
> 
> Ps: Ill give a try the telnet, perhaps the "users" have right for using
> telnet.
> 
> (the logins i log into are seems only for checking and maintaining, if i
> good well they arent kind of service machines, or maybe only at night)
> 


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


Re: switch user without logoff

2007-01-02 Thread Don Russell

Tom Duerbusch wrote:

There was a package.

[snip]

Now that it is comming back to me, the package name was "sessions".  In
the last 10 years, I've always had either a mainframe session manager
product (such as tubes), or TN3270 session (which you can have as many
as you are willing to support).

I don't know if "sessions" was ever upgraded to ESA (and beyond), but a
product like what you are looking for, did exist.  Free package, that
is.


We have a "session" command which creates an LDEV and presents the VM 
logon screen. I'm not sure if this is the same "sessions" Tom is 
referring to, but it's running fine on our z/VM 4.4 system.


Since I connect to VM with some flavour of TN3270E, I usually just open 
another session, that way I can have both VM sessions visible at once.


The "session" command allows me to flip back and forth between two IDs 
with a PF key, but there's nothing like having both visible at the same 
time.


However, I use "session" more and more to log on quickly for a specific 
task because the method we have to use to get logged on is getting more 
and more inconvenient in the name of security. I won't go off on that 
tangent now.. :-)


Don Russell


Re: switch user without logoff

2007-01-02 Thread Rick Troth
Not sure what you are after, but maybe  #CP DISC HOLD  will help?
To me, it is a lot like the "switch user" feature of some Unix/Linux
X session managers and of Windows (XP) home edition.

If you're connected via VTAM, your "session" usually remains.
If you're connected via TELNET, your "session" usually drops when you
DISConnect or LOGOFF.  But the HOLD option retains the connection.
Very handy.  Conceptually like a "switch user" function.

I second Mike Walter's endorsement of SESSION.

-- R;


Re: switch user without logoff

2007-01-02 Thread Zoltan Balogh

First of all, if i forget: Happy new Year, happy 2007!


Tell the truth i had many problem about posting this problem to list because
SMTP server didnt want to follow in 2006. At least for one week when ive got
a new message what isnt contained: it just a warning message, you dont have
to resend your email. Then i tried again, and that time i was lucky.

So it is just a simple story about the source message, and what i wanted to
say yet: i always very happy i got many help and ideas how can i solve my
problems. So a very big thank you for you all!

Ok, back to the questions. Sorry i start with a little story too for getting
picture a bit more about my line of my questions. Im working at IBM, ive got
this job in end of september, about 3 month after i got my degree.
I knew ill work with mainframes, with VM. Ive got basic and advanced level
knowledges of VM using and administrating. Now me and one of my collegue got
a project what is started to migrating to our country some month ago, almost
the time when i joined. Nowadays i have to check logs and files and -tell
the truth-  ive got many free time. So i started to make some rexx & pipe
prog for my fun (see: questions about using colors) and  i tried to make the
checking  phase a bit more easier if i can (see: problems with  starting
exec's from  an exec).


Nowadays i finished all change what i could do for make things easier, but i
was thinking of maybe possible to do the checking phase (using two user with
method logon by) without have to logon manually to each user. I know it is a
very lazy thing, but while im trying to solve problems i know more the VM
and ill see more its borders, what can i do and what not. And if i can do
it, how.

So this is the answer to your question, what do i want to do ( and a some
kind of why in my long story)

Zoltan

Ps: Ill give a try the telnet, perhaps the "users" have right for using
telnet.

(the logins i log into are seems only for checking and maintaining, if i
good well they arent kind of service machines, or maybe only at night)


Re: switch user without logoff

2007-01-02 Thread Mike Walter
One "Sessions" was a freebie "value add" from Amdahl for their customers. 
Great stuff.  Instead of logging on, you issued a DIAL PIE (or whatever 
server name you used) command and it permitted starting up and 
hot-switching up to 12 logons from that single screen.

Didn't Arty Ecock had another program named "session" that built an LDEV 
on an existing logged on CMS userid, and popped you into that session?

The old Amdahl Sessions tool was bought by Technologic Software Concepts 
or Irvine, CA.  They renamed it Pie/VM-Sessions, enhanced and supported it 
for many years before their direction changed. They formally dropped the 
product and its support on January 1, 2000 (killed by Y2K; with few 
customers they did not want to spend time re-writing the code to validate 
the CPU serial number against the 4-digit date).

But PC terminal emulation software has pretty much made it obsolete 
anyway, although with an added cost of a communications connection for 
every emulator session.  With TCPIP, the cost of the connections is pretty 
insignificant - SNA was a little more expensive.

None of those were anything like Linux's sudo.  If the requirements were 
made clearer, perhaps we could address it another way (maybe using SCIF, 
or a server running a command authorization program).

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




"Tom Duerbusch" <[EMAIL PROTECTED]> 

Sent by: "The IBM z/VM Operating System" 
01/02/2007 04:39 PM
Please respond to
"The IBM z/VM Operating System" 



To
IBMVM@LISTSERV.UARK.EDU
cc

Subject
Re: switch user without logoff






There was a package.

It was a user contributed program on VM/SP days.
You would type the program name with a name and it would create a LDEV
device with that session name.

You would then get the VM logo, sign on to that CMS (or do a DIAL to
some multi-user system, such as VSE), and you could hotkey between that
session and the base session.  That is as close to the Linux "su"
command I've ever seen.

Now that it is comming back to me, the package name was "sessions".  In
the last 10 years, I've always had either a mainframe session manager
product (such as tubes), or TN3270 session (which you can have as many
as you are willing to support).

I don't know if "sessions" was ever upgraded to ESA (and beyond), but a
product like what you are looking for, did exist.  Free package, that
is.

Tom Duerbusch
THD Consulting

>>> [EMAIL PROTECTED] 12/31/2006 7:00 AM >>>
Hi

Is it possible to swich user (normally or with logon by method)
without
logoff under z/VM?
I find passthru but it seems not for this kind of problem..




 
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.


Re: switch user without logoff

2007-01-02 Thread Wakser, David
 
You could also TELNET to the VM stack from the user, sign on as a second
user, and when exiting from the 2nd TELNET session, you will be back in
the original session. Would that work for you?

David Wakser
InfoCrossing


Re: switch user without logoff

2007-01-02 Thread Thomas Kern
If you don't want to use something like DISCONNECT/LOGON but to have two
userids at your disposal at the same time, there is a SCIF exec that is a
wrapper for the CO SET SECUSER and CP SEND commands. I am at home now, but I
can find out where I got it when I get into the office tomorrow.

/Tom Kern

--- "McKown, John" <[EMAIL PROTECTED]> wrote:

> Do you mean something like the UNIX "su - userid"? I don't know of any.
>  
>  
> 
> --
> John McKown
> Senior Systems Programmer
> HealthMarkets
> Keeping the Promise of Affordable Coverage
> Administrative Services Group
> Information Technology
> 
> This message (including any attachments) contains confidential
> information intended for a specific individual and purpose, and its
> content is protected by law.  If you are not the intended recipient, you
> should delete this message and are hereby notified that any disclosure,
> copying, or distribution of this transmission, or taking any action
> based on it, is strictly prohibited.
>   
> 
>   -Original Message-
>   From: The IBM z/VM Operating System
> [mailto:[EMAIL PROTECTED] On Behalf Of Zoltan Balogh
>   Sent: Sunday, December 31, 2006 7:00 AM
>   To: IBMVM@LISTSERV.UARK.EDU
>   Subject: switch user without logoff
>   
>   
>   Hi
>   
>   Is it possible to swich user (normally or with logon by method)
> without
>   logoff under z/VM?
>   I find passthru but it seems not for this kind of problem..
>   
>   
> 
> 


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


Re: switch user without logoff

2007-01-02 Thread Tom Duerbusch
There was a package.

It was a user contributed program on VM/SP days.
You would type the program name with a name and it would create a LDEV
device with that session name.

You would then get the VM logo, sign on to that CMS (or do a DIAL to
some multi-user system, such as VSE), and you could hotkey between that
session and the base session.  That is as close to the Linux "su"
command I've ever seen.

Now that it is comming back to me, the package name was "sessions".  In
the last 10 years, I've always had either a mainframe session manager
product (such as tubes), or TN3270 session (which you can have as many
as you are willing to support).

I don't know if "sessions" was ever upgraded to ESA (and beyond), but a
product like what you are looking for, did exist.  Free package, that
is.

Tom Duerbusch
THD Consulting

>>> [EMAIL PROTECTED] 12/31/2006 7:00 AM >>>
Hi

Is it possible to swich user (normally or with logon by method)
without
logoff under z/VM?
I find passthru but it seems not for this kind of problem..


Re: switch user without logoff

2007-01-02 Thread Alan Altmark
On Sunday, 12/31/2006 at 02:00 CET, Zoltan Balogh 
<[EMAIL PROTECTED]> wrote:
> Is it possible to swich user (normally or with logon by method) without
> logoff under z/VM?
> I find passthru but it seems not for this kind of problem..

No, there is no built-in "hot key" function in CP maintain multiple 
terminal sessions on a single (real or logical) connection.  I suggest one 
of the following (in order of preference):

1. Create another emulator session to connect to VM and use your 
emulator's own "jump next" key to switch between sessions.

2. If you are connected to a 3270 terminal controller (e.g. 3174), use the 
Multiple Logical Terminal (MLT) function of the controller to perform the 
switch function.

3. Download the YVETTE package from the VM Download Library.  You can 
program a PF/PA key to act as the "jump next" key.

Alan Altmark
z/VM Development
IBM Endicott


Re: switch user without logoff

2007-01-02 Thread Huegel, Thomas
I am not sure what you are trying to do but you might try using telnet.
>From your logged on CMS just telnet xxx.xxx.xxx.xxx < == your z/VM systems
IP.
This should allow you to logon to something else, without killing your old
logon.

-Original Message-
From: The IBM z/VM Operating System [mailto:[EMAIL PROTECTED]
Behalf Of Zoltan Balogh
Sent: Sunday, December 31, 2006 7:00 AM
To: IBMVM@LISTSERV.UARK.EDU
Subject: switch user without logoff


Hi

Is it possible to swich user (normally or with logon by method) without
logoff under z/VM?
I find passthru but it seems not for this kind of problem..




  _  

<< ella for Spam Control >> has removed 9341 VSE-List messages and set aside
6407 VM-List for me
You can use it too - and it's FREE!   www.ellaforspam.com



Re: switch user without logoff

2007-01-02 Thread McKown, John
Do you mean something like the UNIX "su - userid"? I don't know of any.
 
 

--
John McKown
Senior Systems Programmer
HealthMarkets
Keeping the Promise of Affordable Coverage
Administrative Services Group
Information Technology

This message (including any attachments) contains confidential
information intended for a specific individual and purpose, and its
content is protected by law.  If you are not the intended recipient, you
should delete this message and are hereby notified that any disclosure,
copying, or distribution of this transmission, or taking any action
based on it, is strictly prohibited.
  

-Original Message-
From: The IBM z/VM Operating System
[mailto:[EMAIL PROTECTED] On Behalf Of Zoltan Balogh
Sent: Sunday, December 31, 2006 7:00 AM
To: IBMVM@LISTSERV.UARK.EDU
Subject: switch user without logoff


Hi

Is it possible to swich user (normally or with logon by method)
without
logoff under z/VM?
I find passthru but it seems not for this kind of problem..





switch user without logoff

2007-01-02 Thread Zoltan Balogh

Hi

Is it possible to swich user (normally or with logon by method) without
logoff under z/VM?
I find passthru but it seems not for this kind of problem..


{SPAM?} RE: [IBMVM] CP VMDUMP for a mega server

2007-01-02 Thread Marcy Cortes
OK, I tried it here (#CP VMDUMP 0-END on a 2G server).  Took 15:27
minutes.  Better than hours - but still seems long to wait when someone
is screaming... Records ended up being 487788.

This was z/VM 5.2 RSU 0602, z9-109 2 engines, 24G memory (20 central,
4xstor), heavily loaded with 80+ servers running - paging to DASD at
approx 1000/sec.  2 virtual CPUs on the guest.  2 mod 9's for spool (IBM
DS8300).

Here's a SWAG- could all those spool writes with the little 4K blocks be
overwhelming a certain vendors DASD write cache?   How many i/o per sec
are you getting off the spool volumes?


Marcy Cortes

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 Jim Vincent
Sent: Tuesday, January 02, 2007 12:58
To: IBMVM@LISTSERV.UARK.EDU
Subject: [IBMVM] CP VMDUMP for a mega server

We are doing a VMDUMP for a 2G linux server and it is taking FOREVER.
If
this was a production server we would be picking daggers out of places I
can't mention here.

Paging is not too bad on the system (300/sec) and we set the share and
reserved for the guest up to maybe help, but nothing seems to get it
moving
any.  It is doing about 1000 spool records every 15-20 seconds and we
guestimated it would be about 524288 records; after about an hour it is
less than half done!!

Is this to be expected?  Are we to expect VMDUMP to take that long for
these larger guests or do we have a situation we need to dig into?

___
James Vincent
Systems Engineering Consultant
Nationwide Services Co., Technology Solutions
Mainframe, z/VM and z/Linux Support
One Nationwide Plaza  3-20-13
Columbus OH 43215-2220   U.S.A
Voice: (614) 249-5547Fax: (614) 677-7681
mailto:[EMAIL PROTECTED]


Re: IBM ServiceLink greenscreen to be discontinued March 31, 2007

2007-01-02 Thread Parmelee, Phil
Obviously a "management" decision.

 

Phil 

 



From: The IBM z/VM Operating System [mailto:[EMAIL PROTECTED] On
Behalf Of Mike Walter
Sent: Tuesday, January 02, 2007 2:50 PM
To: IBMVM@LISTSERV.UARK.EDU
Subject: IBM ServiceLink greenscreen to be discontinued March 31, 2007

 


Here we go again. 
Noticed on IBMLink (yes, using the reliable, productive greenscreen
version) today, 02 Jan 2007: 
-- 
  Withdrawl of VM ServiceLink   

Access to ServiceLink via the VM mode (green screen) will be removed on 
March 31, 2007. ServiceLink will only  be available through:

www.ibm.com/ibmlink 
The internet version of ServiceLink has been embraced by our customers

as a safe and secure method of obtaining technical support and software 
maintenance for their zSeries system. Many new features have been added 
to the ServiceLink applications on the web that are not on the VM   
version. These enhanced features include:   
 a) A tailored fix package for preventive and corrective service.   
 b) A more comprehensive Search which includes additional technical 
support libraries.

 c) An improved PTF ordering capability in PSP

Since ServiceLink VM is being removed, there will be no changes made to 
the ServiceLink vm code to support the new 2007 daylight saving time 
extension.   
-- 

I used to complain that most VM users could not do anything that didn't
get mapped directly to a PFkey.  I really **like** the command line!  I
don't want to be turned into a systems janitor, only knowing which
buttons to push while not knowing what's going on under the covers.
When someone changes the buttons, stuff stops working the same and
precious time is lost trying to find the latest magic button to push. 

Am I the *only* one who still prefers the stable, unchanging 3270
greenscreen access to IBMLink? 
The screens do not change, so you can continue to find information the
way that has always worked: QUICKLY! 
"The internet version of ServiceLink has been embraced by our customers"
-- well, not this one! 
This is one "withdrawl" (sic) pain that I can really live without. 

Does it really cost IBM anything to support the **unchanging**
greenscreen IBMLink?  I don't know of any reason that I should give a
rat's patoot about the "vm code to support the new 2007 daylight saving
time extension."  IMHO that really sounds like a weak attempt to find a
justification for abandoning something that still works perfectly. 

Happy New Year!  BAH HUMBUG!! 

Mike (not starting the new year off happily) Walter

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



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. 



IBM ServiceLink greenscreen to be discontinued March 31, 2007

2007-01-02 Thread Mike Walter
Here we go again. 
Noticed on IBMLink (yes, using the reliable, productive greenscreen 
version) today, 02 Jan 2007:
--
  Withdrawl of VM ServiceLink 
 
Access to ServiceLink via the VM mode (green screen) will be removed on 
March 31, 2007. ServiceLink will only  be available through: 
www.ibm.com/ibmlink 
The internet version of ServiceLink has been embraced by our customers 
as a safe and secure method of obtaining technical support and software 
maintenance for their zSeries system. Many new features have been added 
to the ServiceLink applications on the web that are not on the VM 
version. These enhanced features include: 
 a) A tailored fix package for preventive and corrective service. 
 b) A more comprehensive Search which includes additional technical 
support libraries. 
 c) An improved PTF ordering capability in PSP 
Since ServiceLink VM is being removed, there will be no changes made to 
the ServiceLink vm code to support the new 2007 daylight saving time 
extension. 
--

I used to complain that most VM users could not do anything that didn't 
get mapped directly to a PFkey.  I really **like** the command line!  I 
don't want to be turned into a systems janitor, only knowing which buttons 
to push while not knowing what's going on under the covers.  When someone 
changes the buttons, stuff stops working the same and precious time is 
lost trying to find the latest magic button to push.

Am I the *only* one who still prefers the stable, unchanging 3270 
greenscreen access to IBMLink?
The screens do not change, so you can continue to find information the way 
that has always worked: QUICKLY!
"The internet version of ServiceLink has been embraced by our customers" 
-- well, not this one!
This is one "withdrawl" (sic) pain that I can really live without.

Does it really cost IBM anything to support the **unchanging** greenscreen 
IBMLink?  I don't know of any reason that I should give a rat's patoot 
about the "vm code to support the new 2007 daylight saving time 
extension."  IMHO that really sounds like a weak attempt to find a 
justification for abandoning something that still works perfectly. 

Happy New Year!  BAH HUMBUG!!

Mike (not starting the new year off happily) Walter   
Hewitt Associates 
Any opinions expressed herein are mine alone and do not necessarily 
represent the opinions or policies of Hewitt Associates.

 
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.




Re: OK Pipers, a new challenge

2007-01-02 Thread Mike Walter
First guess: Take a peek on VMUTIL's disk to see if you might have an 
ERASE EXEC accessed.
In any case, changing the "CMS" stage to a "COMMAND" stage would prevent 
it from running any accessed ERASE EXECs.

Personally, I'd stop using the stack altogether and re-write the pipe 
(untested) as:

'PIPE (NAME Erase332Stats)' ,
   '| COMMAND LISTFILE * 332STATS A (TODAY NOHEADER', 
   '| SORT 1-8 DESCENDING', 
   '| DROP FIRST 1', 
   '| SPECS /ERASE/ 1 W1-3 NW', 
   '| CONSOLE', 
   '| COMMAND' 
RETURN

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



"Tom Duerbusch" <[EMAIL PROTECTED]> 

Sent by: "The IBM z/VM Operating System" 
01/02/2007 01:00 PM
Please respond to
"The IBM z/VM Operating System" 



To
IBMVM@LISTSERV.UARK.EDU
cc

Subject
OK Pipers, a new challenge






OK, this is a real simple pipe. 

'LISTF * 332STATS A (TODAY STACK' 
'PIPE STACK ', 
   '| SORT 1-8 DESCENDING', 
   '| DROP FIRST 1', 
   '| SPECS /ERASE / 1 W1-3 NW', 
   '| CONSOLE', 
   '| CMS ' 
RETURN 

It erases all "* 332sstats" files except for the lastest one.
I think it works great, but perhaps not.

As you can see, I create a CMS 'erase' command, display it on the
console and execute it.

After all the rexx subsitutions take place and the pipe is build, a
"trace i" shows the following:

   >O>   "PIPE STACK  | SORT 1-8 DESCENDING | DROP FIRST 1 | SPECS
/ERASE / 
1 W1-3 NW | CONSOLE | CMS " 
 
11 *-* RETURN 
 
009 FILES PURGED 
 

I would have expected to see:

erase 090101 332stats a
erase 100101 332stats a
erase 110101 332stats a
etc

so, why am I not getting the CMS command, listed.  Obviously, I'm doing
something wrong here.  But 9 files being purged is the right number. 

The process is being kicked off by VMUTIL.  So I plan on disabling it
and log on and do the commands myself to see what is actually out there.
 But that shouldn't have any effect on why I'm not seeing the CMS
commands echoed to the console.

Thanks

Tom Duerbusch
THD Consulting
Happy New Year



 
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.




Re: OK Pipers, a new challenge

2007-01-02 Thread Schuh, Richard
Replace the LISTF, the PIPE STACK, and the DROP with "PIPE  cms list *
332stats a (today noh,"   

-Original Message-
From: The IBM z/VM Operating System [mailto:[EMAIL PROTECTED] On
Behalf Of Tom Duerbusch
Sent: Tuesday, January 02, 2007 11:00 AM
To: IBMVM@LISTSERV.UARK.EDU
Subject: OK Pipers, a new challenge

OK, this is a real simple pipe.  

'LISTF * 332STATS A (TODAY STACK' 
'PIPE STACK ',
   '| SORT 1-8 DESCENDING',   
   '| DROP FIRST 1',  
   '| SPECS /ERASE / 1 W1-3 NW',  
   '| CONSOLE',   
   '| CMS '   
RETURN

It erases all "* 332sstats" files except for the lastest one.
I think it works great, but perhaps not.

As you can see, I create a CMS 'erase' command, display it on the
console and execute it.

After all the rexx subsitutions take place and the pipe is build, a
"trace i" shows the following:

   >O>   "PIPE STACK  | SORT 1-8 DESCENDING | DROP FIRST 1 | SPECS
/ERASE /   
1 W1-3 NW | CONSOLE | CMS "
  
11 *-* RETURN  
  
009 FILES PURGED   
  

I would have expected to see:

erase 090101 332stats a
erase 100101 332stats a
erase 110101 332stats a
etc

so, why am I not getting the CMS command, listed.  Obviously, I'm doing
something wrong here.  But 9 files being purged is the right number.  

The process is being kicked off by VMUTIL.  So I plan on disabling it
and log on and do the commands myself to see what is actually out there.
 But that shouldn't have any effect on why I'm not seeing the CMS
commands echoed to the console.

Thanks

Tom Duerbusch
THD Consulting
Happy New Year


CP VMDUMP for a mega server

2007-01-02 Thread Jim Vincent
We are doing a VMDUMP for a 2G linux server and it is taking FOREVER.  If
this was a production server we would be picking daggers out of places I
can't mention here.

Paging is not too bad on the system (300/sec) and we set the share and
reserved for the guest up to maybe help, but nothing seems to get it moving
any.  It is doing about 1000 spool records every 15-20 seconds and we
guestimated it would be about 524288 records; after about an hour it is
less than half done!!

Is this to be expected?  Are we to expect VMDUMP to take that long for
these larger guests or do we have a situation we need to dig into?

___
James Vincent
Systems Engineering Consultant
Nationwide Services Co., Technology Solutions
Mainframe, z/VM and z/Linux Support
One Nationwide Plaza  3-20-13
Columbus OH 43215-2220   U.S.A
Voice: (614) 249-5547Fax: (614) 677-7681
mailto:[EMAIL PROTECTED]


OK Pipers, a new challenge

2007-01-02 Thread Tom Duerbusch
OK, this is a real simple pipe.  

'LISTF * 332STATS A (TODAY STACK' 
'PIPE STACK ',
   '| SORT 1-8 DESCENDING',   
   '| DROP FIRST 1',  
   '| SPECS /ERASE / 1 W1-3 NW',  
   '| CONSOLE',   
   '| CMS '   
RETURN

It erases all "* 332sstats" files except for the lastest one.
I think it works great, but perhaps not.

As you can see, I create a CMS 'erase' command, display it on the
console and execute it.

After all the rexx subsitutions take place and the pipe is build, a
"trace i" shows the following:

   >O>   "PIPE STACK  | SORT 1-8 DESCENDING | DROP FIRST 1 | SPECS
/ERASE /   
1 W1-3 NW | CONSOLE | CMS "
  
11 *-* RETURN  
  
009 FILES PURGED   
  

I would have expected to see:

erase 090101 332stats a
erase 100101 332stats a
erase 110101 332stats a
etc

so, why am I not getting the CMS command, listed.  Obviously, I'm doing
something wrong here.  But 9 files being purged is the right number.  

The process is being kicked off by VMUTIL.  So I plan on disabling it
and log on and do the commands myself to see what is actually out there.
 But that shouldn't have any effect on why I'm not seeing the CMS
commands echoed to the console.

Thanks

Tom Duerbusch
THD Consulting
Happy New Year


Re: Remote Tape drives

2007-01-02 Thread O'Brien, Dennis L
There are channel extension boxes that will do this. McData is one
vendor that comes to mind, but I'm sure there are others.

   Dennis

"I'll tell you a secret: When your number comes up, you're going to go.
Well, every morning I get up, I change my number."  -- Edward Chun,
Pearl Harbor survivor

 



From: The IBM z/VM Operating System [mailto:[EMAIL PROTECTED] On
Behalf Of Crispin Hugo
Sent: Friday, December 29, 2006 10:16
To: IBMVM@LISTSERV.UARK.EDU
Subject: [IBMVM] Remote Tape drives


Chaps,
Any suggestions on ways we could have a tape  drive 3490  in a remote
location attached to our mainframe. We are talking about 1 thousand of
miles. Speed is not important 
 
Crispin Hugo
Systems Programmer, Macro 4

Macro 4 plc, The Orangery, Turners Hill Road, Worth, Crawley, RH10 4SS
Direct Line: +44 (0)1293 872121 Switchboard: +44 (0) 1293 872000
Fax: +44 (0) 1293 872001
This message contains confidential information and is intended only for
the individual named. If you are not the named addressee you should not
disseminate, distribute or copy this e-mail. Please notify the sender
immediately by e-mail if you have received this e-mail by mistake and
delete this e-mail from your system. E-mail transmission cannot be
guaranteed to be secure or error-free as information could be
intercepted, corrupted, lost, destroyed, arrive late or incomplete, or
contain viruses. The sender therefore does not accept liability for any
errors or omissions in the contents of this message which arise as a
result of e-mail transmission. If verification is required please
request a hard-copy version. This message is provided for informational
purposes and should not be construed as a solicitation, offer or
acceptance of any offer.
 


This email has been scanned for all known viruses by the MessageLabs
Email Security Service and the Macro 4 plc internal virus protection
system.




Re: Remote Tape drives

2007-01-02 Thread Alan Altmark
On Friday, 12/29/2006 at 06:16 GMT, Crispin Hugo <[EMAIL PROTECTED]> 
wrote:
> Any suggestions on ways we could have a tape  drive 3490  in a remote 
location 
> attached to our mainframe. We are talking about 1 thousand of miles. 
Speed is 
> not important 

Speed is *always* important.  :-)  There are companies who make FICON and 
ESCON "channel extenders" who encapsulate and encrypt channel data on a 
WAN to a remote location.  If you don't have guaranteed WAN bandwidth 
between sites, you may end up with a problem.

Certification of drives attached via a channel extender is typically the 
responsibility of the channel extender vendor, not the drive vendor.  For 
IBM drives, you *may* need an RPQ to obtain IBM support for drives so 
attached.  Check with your business partner or IBM Storage specialist; the 
extender vendor should be able to provide guidance to you as well.

Alan Altmark
z/VM Development
IBM Endicott


Re: Remote Tape drives

2007-01-02 Thread Paul Raulerson
There are lots of ways to do that, depending upon what it is attached to and 
what (if any) budget you have to do it with. Some more details would help get 
you better suggestions. : )

-Paul


--- Begin Message ---
Chaps,
Any suggestions on ways we could have a tape  drive 3490  in a remote
location attached to our mainframe. We are talking about 1 thousand of
miles. Speed is not important 
 
Crispin Hugo
Systems Programmer, Macro 4
 >
Macro 4 plc, The Orangery, Turners Hill Road, Worth, Crawley, RH10 4SS
Direct Line: +44 (0)1293 872121 Switchboard: +44 (0) 1293 872000
Fax: +44 (0) 1293 872001
This message contains confidential information and is intended only for the
individual named. If you are not the named addressee you should not
disseminate, distribute or copy this e-mail. Please notify the sender
immediately by e-mail if you have received this e-mail by mistake and delete
this e-mail from your system. E-mail transmission cannot be guaranteed to be
secure or error-free as information could be intercepted, corrupted, lost,
destroyed, arrive late or incomplete, or contain viruses. The sender
therefore does not accept liability for any errors or omissions in the
contents of this message which arise as a result of e-mail transmission. If
verification is required please request a hard-copy version. This message is
provided for informational purposes and should not be construed as a
solicitation, offer or acceptance of any offer.
 



This email has been scanned for all known viruses by the MessageLabs Email 
Security Service and the Macro 4 plc internal virus protection system.

--- End Message ---


Re: Nobiity and not-quite-so-nobility

2007-01-02 Thread Rob van der Heij

On 12/28/06, Jon Brock <[EMAIL PROTECTED]> wrote:


And what's up with the shorts?  And that shirt?  Even I wouldn't wear that.  
Well, not often, anyway.


Well, that's not my normal costume. It happened that's because Dame
Martha the Magisterial took my picture from one of the VM Workshops.
During these summer events in the previous century, folks from the VM
Community would join to meet their peers for lectures and discussion.
Traditionally one of the evening events was the "Ugly Hawaiian Shirt
Contest" and my picture is from one such events (where the winner got
extra points because he borrowed it from his dad and it was actually
used in real life). Look at http://vm.marist.edu/~workshop

When I was reading http://www.linuxbierwanderung.org/ it looks like
there's a lot of similarities...

Sir Rob the Plumber


Re: Nobiity and not-quite-so-nobility

2007-01-02 Thread Rob van der Heij

On 1/1/07, Rob van der Heij  wrote:

3 times the same... my apologies for that.
The mail agent claimed a reject 2 times and then finally something
unclogged the Internet plumbing after all.


Remote Tape drives

2007-01-02 Thread Crispin Hugo
Chaps,
Any suggestions on ways we could have a tape  drive 3490  in a remote
location attached to our mainframe. We are talking about 1 thousand of
miles. Speed is not important 
 
Crispin Hugo
Systems Programmer, Macro 4
 >
Macro 4 plc, The Orangery, Turners Hill Road, Worth, Crawley, RH10 4SS
Direct Line: +44 (0)1293 872121 Switchboard: +44 (0) 1293 872000
Fax: +44 (0) 1293 872001
This message contains confidential information and is intended only for the
individual named. If you are not the named addressee you should not
disseminate, distribute or copy this e-mail. Please notify the sender
immediately by e-mail if you have received this e-mail by mistake and delete
this e-mail from your system. E-mail transmission cannot be guaranteed to be
secure or error-free as information could be intercepted, corrupted, lost,
destroyed, arrive late or incomplete, or contain viruses. The sender
therefore does not accept liability for any errors or omissions in the
contents of this message which arise as a result of e-mail transmission. If
verification is required please request a hard-copy version. This message is
provided for informational purposes and should not be construed as a
solicitation, offer or acceptance of any offer.
 



This email has been scanned for all known viruses by the MessageLabs Email 
Security Service and the Macro 4 plc internal virus protection system.


Re: Nobiity and not-quite-so-nobility

2007-01-02 Thread Rob van der Heij

On 12/28/06, Jon Brock <[EMAIL PROTECTED]> wrote:


And what's up with the shorts?  And that shirt?  Even I wouldn't wear that.  
Well, not often, anyway.


Well, that's not my normal costume. Since I was not at SHARE, Dame
Martha the Magisterial took my picture from one of the VM Workshops.
During these summer events in the previous century, folks from the VM
Community would join to meet their peers for lectures and discussion.
Traditionally one of the evening events was the "Ugly Hawaiian Shirt
Contest" and my picture is from one such events (where the winner got
extra points because he borrowed it from his dad and it was actually
used in real life). Look at http://vm.marist.edu/~workshop

When I was reading http://www.linuxbierwanderung.org/ it looks like
there's a lot of similarities...

Sir Rob the Plumber


Re: TCP/IP and IPv6

2007-01-02 Thread Alan Altmark
On Tuesday, 12/26/2006 at 06:30 EST, "Scully, William P" 
<[EMAIL PROTECTED]> wrote:

> In long last, my questions:  Is it possible to have a IPV6 Virtual
> Switch used by TCP/IP on VM?

Yes, but only if you're using a QDIO VSWITCH.  VM TCP/IP cannot use a 
layer 2 VSWITCH or Guest LAN.  This also means that if you're using IPv6 
with Linux and with VM TCP/IP, they cannot share a VSWITCH or Guest LAN. 
This isn't a problem with real OSA sharing since the OSA allows both layer 
2 and layer 3 connections on the same OSA - CP doesn't.

People with IPv6 requirements for VM TCP/IP (stack and apps) should let 
their voices be heard ASAP.  [To DB: I already have your vote.]  And if 
you have any drop-dead dates for IPv6 deployment, let us know that, too.

Alan Altmark
z/VM Development
IBM Endicott


Looking for Hobbit users

2007-01-02 Thread Rich Smrcina

Cross posted to ibmvm and linux390, sorry for duplications.

I am looking for Mainframe people that are using Hobbit either on the 
mainframe or using the mainframe client code.


Please respond *privately*.

Much thanks and Happy New Year!
--
Rich Smrcina
VM Assist, Inc.
Phone: 414-491-6001
Ans Service:  360-715-2467
rich.smrcina at vmassist.com

Catch the WAVV!  http://www.wavv.org
WAVV 2007 - Green Bay, WI - May 18-22, 2007


Re: Nobiity and not-quite-so-nobility

2007-01-02 Thread Tony Thigpen

And that's YOUR story and you're sticking with it. :-)

Tony Thigpen


-Original Message -
 From: Rob van der Heij
 Sent: 01/01/2007 04:29 PM

 > And what's up with the shorts?  And that shirt?  Even I wouldn't
 > wear that.  Well, not often, anyway.

That's not my normal costume. It's because Dame Martha the Magisterial 
took my picture from one of the VM Workshops. During these summer events 
in the previous century, folks from the VM Community would join to meet 
their peers for lectures and discussion. Traditionally one of the 
evening events was the "Ugly Hawaiian Shirt Contest" and my picture is 
from one such events (where the winner got extra points because he 
borrowed it from his dad and it was actually used in real life).

Look at http://vm.marist.edu/~workshop

When I was reading http://www.linuxbierwanderung.org/ it looks like
there's a lot of similarities...

Sir Rob the Plumber




Re: Backup of z/VM and z/VSE

2007-01-02 Thread August Carideo
I would beg to differ w/ this
you can recover any component of a backed up running VSE system
how many system crashes are planned ? w/ op system down ?
what good is a DR plan if you can only restore from a planned outage ?
VSE utilities should also be used as fallback , such as power off-loads,
fcopy etc.




   
 Doug Shupe
 <[EMAIL PROTECTED] 
 .net>  To 
 Sent by: The IBM  IBMVM@LISTSERV.UARK.EDU 
 z/VM Operating cc 
 System
 <[EMAIL PROTECTED] Subject 
 ARK.EDU>  Re: Backup of z/VM and z/VSE
   
   
 01/01/2007 10:25  
 PM
   
   
 Please respond to 
   The IBM z/VM
 Operating System  
 <[EMAIL PROTECTED] 
 ARK.EDU>  
   
   




Daniel,

You can get a valid/usable backup the z/VSE guest dasd with DDR -ONLY IF-
the z/VSE guest is shutdown while performing the backup.

You can use z/OS DFDSS to backup the z/VM and z/VSE dasd but (IMHO) it is
not a wise solution because of the restore considerations. With enough
practice you could make it work. Problem is the z/VSE guest would never
work
correctly unless it were shutdown during the backup.

You can backup the running z/VM system with DDR (minus the page and spool
volumes - format the page and spool volumes, cold start the spool after
recovery). You would have to re-save CMS and other DCSS or use SPXTAPE to
save the information in the spool.

Since you have a z/VM system, this would be a good time to try using z/VM
under z/VM to validate your recovery process. If you forgot something just
scrape the 2nd level system and start over. (kind of like using Changeman
to
maintain Changeman).

Would be glad to discuss with you offline.

Best  Regards,
Doug Shupe

- Original Message -
From: "Daniel Allen" <[EMAIL PROTECTED]>
To: 
Sent: Thursday, December 28, 2006 12:48 PM
Subject: Backup of z/VM and z/VSE


I have been given an assignment to backup our z/VM and z/VSE systems.
We also run z/OS. I know about DDR. Can I backup/restore both z/VM and =

z/VSE using DDR ? Can z/OS backup/restore z/VM ?


Re: TCP/IP and IPv6

2007-01-02 Thread Sue Farrell
The restriction about IPv6 with an IP VSWITCH is only if you were using a
n 
external (eg. RDEV) connection on the VSWITCH.  You can define the VSWITC
H 
as IP and will be able to use IPv6 on it.




Re: Backup of z/VM and z/VSE

2007-01-02 Thread Doug Shupe

Daniel,

You can get a valid/usable backup the z/VSE guest dasd with DDR -ONLY IF- 
the z/VSE guest is shutdown while performing the backup.


You can use z/OS DFDSS to backup the z/VM and z/VSE dasd but (IMHO) it is 
not a wise solution because of the restore considerations. With enough 
practice you could make it work. Problem is the z/VSE guest would never work 
correctly unless it were shutdown during the backup.


You can backup the running z/VM system with DDR (minus the page and spool 
volumes - format the page and spool volumes, cold start the spool after 
recovery). You would have to re-save CMS and other DCSS or use SPXTAPE to 
save the information in the spool.


Since you have a z/VM system, this would be a good time to try using z/VM 
under z/VM to validate your recovery process. If you forgot something just 
scrape the 2nd level system and start over. (kind of like using Changeman to 
maintain Changeman).


Would be glad to discuss with you offline.

Best  Regards,
Doug Shupe

- Original Message - 
From: "Daniel Allen" <[EMAIL PROTECTED]>

To: 
Sent: Thursday, December 28, 2006 12:48 PM
Subject: Backup of z/VM and z/VSE


I have been given an assignment to backup our z/VM and z/VSE systems.
We also run z/OS. I know about DDR. Can I backup/restore both z/VM and =

z/VSE using DDR ? Can z/OS backup/restore z/VM ?


DST Updates for VM on FLEX-ES users

2007-01-02 Thread Mike Hammock
Daylight Saving Time date change

For VM users who are running on FLEX-ES systems. this may be of interest.

As many of you know, the effective dates for Daylight Saving Time (DST) and
"normal" time changes in 2007 for people in the USA and Canada.  (People in
other countries can stop reading now, this does not affect you.)
If you are running a FLEX-ES system then the underlying UnixWare or Linux
should be updated to reflect these new DST dates.  If you do not update the
DST dates, your system will continue to function properly, but the UnixWare
or Linux displayed dates will be incorrect for several weeks in the spring
and fall, possibly causing some operational confusion.
Cornerstone Systems (with assistance from Fundamental Software) has
packaged the required update files and procedures as a service to our
Cornerstone customers.  As part of our commitment to continuing support for
all FLEX-ES users, we have decided to make this package available to anyone
who wants to use it.  (Normal disclaimers apply, of course.)
If you want to apply this update to your FLEX-ES system, or if you just
want to learn more about the DST date change, you can download the
information, procedures, and needed files from our web site.  Just go to
 http://www.csihome.com/csiforms/zFrame_DayLight2007_Contact.htm
to provide a little tracking information, and that will take you to the
page where you can download a .ISO CDROM image with either UnixWare or
Linux procedures for the update.  Note that the .ISO file is actually
imbedded in or attached to the .PDF file of the instructions, so you only
need to download the appropriate .PDF file and that will include the .ISO
image.

VM users should also update their TIMEZONE_BOUNDARY statements in the
SYSTEM CONFIG to reflect these new dates.

Mike Hammock
Cornerstone Systems
[EMAIL PROTECTED]