Re: Standby storage and user direct

2011-02-09 Thread Malcolm Beattie
Brad Hinson writes: Anyone know if there's support in z/VM's user direct file for defining standby storage/memory when defining a user? There's no specific keyword so you do it via COMMAND DEFINE STORAGE AS size STANDBY size You can include a RESERVED size in there too but unless you're

Re: Standby storage and user direct

2011-02-09 Thread Jerry Park
Hi, Brad. You can find information on this from below URL. http://publib.boulder.ibm.com/infocenter/zvm/v5r4/index.jsp?topic=/com.ibm.zvm.v54.hcpb7/defstor.htm -- Jae-hwa(Jerry)  Park jae...@gmail.com 2011/2/9 Brad Hinson bhin...@redhat.com:  Hi, Anyone know if there's support in z/VM's

AUTO: Libby Coleman is on holiday back on Tuesday 15th February. (returning 14/02/2011)

2011-02-09 Thread Libby Coleman
I am out of the office until 14/02/2011. In an emergency please contact my manager Ian Lyon (ian_l...@uk.ibm.com) Tel: 07967-275335 (Mobex 37275335) Note: This is an automated response to your message LINUX-390 Digest - 7 Feb 2011 to 8 Feb 2011 (#2011-31) sent on 9/2/11 5:00:31. This is the

Debian Squeeze and zSeries Machines

2011-02-09 Thread Carlos Bodra - Pessoal
Checking documentation from Debian 6.0, chapter 2 - Supported Hardware I can read: /2.1.2. S/390 and zSeries machine types/ /Since Debian Squeeze, support for booting in ESA/390 mode was dropped.*Your machine needs to support for at least the z/Architecture, Architecture Level Set 2.*

BASH question - may even be advanced - pipe stdout to 2 or more processes.

2011-02-09 Thread McKown, John
Yeah, it sound weird. What I have is 72 files containing a lot of secuity data from our z/OS RACF system. To save space, all these files are bzip2'ed - each individually. I am writing some Perl scripts to process this data. The Perl script basically reformats the data in such a way that I can

Re: BASH question - may even be advanced - pipe stdout to 2 or more processes.

2011-02-09 Thread Larry Ploetz
If you have a new enough bash, you can: bzcat data*bz2 | tee (process1) (process2) (process3) ... | processn but the stdout from process1..n get intermixed unless redirected to files. (Tom Meyer taught me that!) - Larry On 2/9/11 12:19 PM, McKown, John wrote: Yeah, it sound weird. What I

Re: BASH question - may even be advanced - pipe stdout to 2 or more processes.

2011-02-09 Thread McKown, John
tee can output to multiple files? The man page implies only a single file. So I guess I could: bzcat data*bz2| tee (perl script1.pl|psql database)|perl script2.pl|psql database bzcat data*bz2| tee (perl script1.pl|psql database)|tee (pers script2.pl|psql database)|perl script3.pl|psql

Re: BASH question - may even be advanced - pipe stdout to 2 or more processes.

2011-02-09 Thread Larry Ploetz
On 2/9/11 12:40 PM, McKown, John wrote: tee can output to multiple files? The man page implies only a single file. Hmmm...maybe you need a new enough tee also: SYNOPSIS tee [OPTION]... [FILE]... DESCRIPTION Copy standard input to each FILE, and also to standard output. So I

Re: BASH question - may even be advanced - pipe stdout to 2 or more processes.

2011-02-09 Thread Edmund R. MacKenty
On Wednesday, February 09, 2011 03:19:03 pm you wrote: Yeah, it sound weird. What I have is 72 files containing a lot of secuity data from our z/OS RACF system. To save space, all these files are bzip2'ed - each individually. I am writing some Perl scripts to process this data. The Perl script

Re: BASH question - may even be advanced - pipe stdout to 2 or more processes.

2011-02-09 Thread McKown, John
No, it's me. I didn't interpret [FILE]... as more than one file. My bad. I think this will handle what I want to do. Many thanks! -- John McKown Systems Engineer IV IT Administrative Services Group HealthMarkets(r) 9151 Boulevard 26 * N. Richland Hills * TX 76010 (817) 255-3225 phone *

Re: BASH question - may even be advanced - pipe stdout to 2 or more processes.

2011-02-09 Thread Edmund R. MacKenty
On Wednesday, February 09, 2011 03:47:38 pm you wrote: On 2/9/11 12:40 PM, McKown, John wrote: tee can output to multiple files? The man page implies only a single file. Hmmm...maybe you need a new enough tee also: SYNOPSIS tee [OPTION]... [FILE]... DESCRIPTION Copy

Re: BASH question - may even be advanced - pipe stdout to 2 or more processes.

2011-02-09 Thread Larry Ploetz
On 2/9/11 1:08 PM, Edmund R. MacKenty wrote: Doh! I should have remembered that. So the functions I wrote could have been implemented as: Ntee() { tee $@ /dev/null } Just goes to show that there's usually several ways to do anything in Linux. I focused on doing it entirely in bash.

Logtail2 utility

2011-02-09 Thread Martha McConaghy
There is a utility that comes in Debian and Ubantu named logtail2. Does anyone know if there is a version that will run on SLES 10? Martha -- For LINUX-390 subscribe / signoff / archive access instructions, send email to

Re: Logtail2 utility

2011-02-09 Thread Neale Ferguson
It's in a noarch package called logcheck. This is available for s390x Fedora 14, so you should be able to grab the RPM from there and install. On 2/9/11 4:42 PM, Martha McConaghy u...@vm.marist.edu wrote: There is a utility that comes in Debian and Ubantu named logtail2. Does anyone know if

SLES10 LPAR clone - OSA interface not found

2011-02-09 Thread Lester, Doug
Unfortunately, we do not have z/VM and I am stuck with LPAR installations. I am trying to develop a process for cloning from one LPAR and installing the clone in another LPAR. Everything works according to plan except the OSA network card is not found. This is where I need help. General steps:

signal shutdown user xx within yy

2011-02-09 Thread Donald Russell
RHEL 5 I use the following chshut commands (in /etc/rc.local) chshut halt vmcmd LOGOFF chshut poff vmcmd LOGOFF They shudown and logoff properly when I use shutdown -h or -P options from zLinux, From another ID, when I use CP SIGNAL SHUTDOWN zLinux machine id WITHIN x zLinux also shuts down and

Re: signal shutdown user xx within yy

2011-02-09 Thread Neale Ferguson
What's in your /etc/inittab file? On Feb 9, 2011, at 22:13, Donald Russell russell@gmail.com wrote: RHEL 5 I use the following chshut commands (in /etc/rc.local) chshut halt vmcmd LOGOFF chshut poff vmcmd LOGOFF They shudown and logoff properly when I use shutdown -h or -P options

Re: signal shutdown user xx within yy

2011-02-09 Thread van Sleeuwen, Berry
Hello Donald, The SIGNAL SHUTDOWN acts like a CTRL-ALT-DEL. So in your /etc/inittab you should change the CTRL-ALT-DEL behaviour to switch to runlevel 0 instead of 6. Regards, Berry. -Original Message- From: Linux on 390 Port [mailto:LINUX-390@VM.MARIST.EDU] On Behalf Of Donald

Re: signal shutdown user xx within yy

2011-02-09 Thread Donald Russell
Perfect... thank you. I'll tweak /etc/inittab 2011/2/9 van Sleeuwen, Berry berry.vansleeu...@atosorigin.com Hello Donald, The SIGNAL SHUTDOWN acts like a CTRL-ALT-DEL. So in your /etc/inittab you should change the CTRL-ALT-DEL behaviour to switch to runlevel 0 instead of 6. Regards,