Re: TSM Scripts

2004-02-02 Thread Joerg Reuter
On Fri, Jan 30, 2004 at 08:54:15AM +0100, Stefan Kopp wrote: This script works fine (with SUSE). Thank you for the script. A minor addition that might save you from headaches, though: you may wish to change the start of the script to something like #! /bin/sh # ### BEGIN INIT INFO # Provides:

New Redpaper

2004-02-02 Thread Ferguson, Neale
http://publib-b.boulder.ibm.com/Redbooks.nsf/RedpaperAbstracts/redp3818.htm l Accounting and Monitoring for z/VM Linux guest machines This IBM Redpaper is intended for clients working with Linux for zSeries under z/VM in a proof of concept or pilot phase. We illustrate a basic accounting and

Linux userid?

2004-02-02 Thread Sal Torres/SBC Inc.
*** Reply to note of Fri, 30 Jan 2004 12:42:49 -0800 (PST) *** by [EMAIL PROTECTED] You can get the LPAR name and VM userid from /proc/sysinfo cat /proc/sysinfo VMUSERID=$(cat /proc/sysinfo |grep 'VM00 Name:'|awk '{print $3}') sal Wolfe, Gordon W [EMAIL PROTECTED] writes: Is there a way for

Adding Swap Space on the Fly

2004-02-02 Thread Scully, William P
On SLES 8 we added more swap space on the fly by doing the needed mkswap and swapon commands. But it seems that the new swap space isn't being used: usilws80q:~ # swapon -s FilenameTypeSizeUsedPriority /dev/dasda1 partition

Re: Adding Swap Space on the Fly

2004-02-02 Thread Post, Mark K
Bill, Adding it to /etc/fstab: /dev/dasdx swapswapdefaults 0 0 then swapon -a. Mark Post -Original Message- From: Linux on 390 Port [mailto:[EMAIL PROTECTED] Behalf Of Scully, William P Sent: Monday, February 02, 2004 10:58 AM To: [EMAIL PROTECTED] Subject:

Re: Kernel 2.4.24 qeth.o - unresolved symdol show_trace

2004-02-02 Thread Post, Mark K
You can try inserting this into linux/kernel/ksyms.c: EXPORT_SYMBOL(show_trace); Or, if you want to be more rigorous about it: #if defined (CONFIG_ARCH_S390 || CONFIG_ARCH_S390X) EXPORT_SYMBOL(show_trace); #endif It might make your problem go away. Mark Post -Original Message- From:

Re: Kernel 2.4.24 qeth.o - unresolved symdol show_trace

2004-02-02 Thread Post, Mark K
Well, it turns out this won't work as written (even if I fix the syntax error in the #if statement.) :( There's so much I don't understand about kernels it's not even funny. Sigh. Maybe someone from Boeblingen can help out here? This is a start: #if (defined(CONFIG_ARCH_S390) |

New (first) FBA device - dasd_fba_mod not loading

2004-02-02 Thread James Tison
Got a head-scratcher that perhaps a lister can help me with here. We installed a sandbox copy of SLES 8 as a VM guest. During installation, there were no VM VDISK units (FBA) attached to the machine. We added one for swap space, extended parmfile /etc/zipl.conf to include the new address, hoping

Re: Kernel 2.4.24 qeth.o - unresolved symdol show_trace

2004-02-02 Thread Alex deVries
How about: #if defined(CONFIG_ARCH_S390) || defined (CONFIG_ARCH_S390X) .. #endif ? (note the ||, not |) - Alex Post, Mark K wrote: Well, it turns out this won't work as written (even if I fix the syntax error in the #if statement.) :( There's so much I don't understand about kernels it's not

Re: New (first) FBA device - dasd_fba_mod not loading

2004-02-02 Thread Post, Mark K
You need to rebuild the initrd so that it will have (and know about) the FBA driver. See Jim Sibley's HOWTO on this at http://linuxvm.org/Info/HOWTOs/ Mark Post -Original Message- From: Linux on 390 Port [mailto:[EMAIL PROTECTED] Behalf Of James Tison Sent: Monday, February 02, 2004

Re: Kernel 2.4.24 qeth.o - unresolved symdol show_trace

2004-02-02 Thread Post, Mark K
Yeah, but that's the easy part. What about the definition of show_trace? I did IPL the 2.4.24 kernel, and I was able to modprobe the qeth driver, bring up a QDIO eth0, and ping another guest. So, it _works_, but is it _correct? Mark Post -Original Message- From: Linux on 390 Port

Re: ColdFusion MX

2004-02-02 Thread Gowans, Chuck
We played a big part in getting the port for ColdFusion developed for the 390 platform. We are a Beta site and are currently testing some apps we developed for other platforms to see how well they port. A few of the items/features available in ColdFusion on other platforms did not port to

Re: ColdFusion MX

2004-02-02 Thread konstantin vladim
bOLX[OE SPASIBO ZA O^EREDNOE PISXMO. kAK TOLXKO OSWOBOVUSX - OTWE^U. Mail.Ru - UDOBNO, DOSTUPNO, NADEVNO!

Re: New (first) FBA device - dasd_fba_mod not loading

2004-02-02 Thread Marcy Cortes
Add it to /etc/sysconfig/kernel and re-run mkinitrd Marcy Cortes Wells Fargo Services Company -Original Message- From: James Tison [mailto:[EMAIL PROTECTED] Sent: Monday, February 02, 2004 14:07 To: [EMAIL PROTECTED] Subject: [LINUX-390] New (first) FBA device - dasd_fba_mod not loading

Re: New (first) FBA device - dasd_fba_mod not loading

2004-02-02 Thread James Tison
Thank you, Marcy and Mark. That does the trick! My brain must be going on vacation a few days early :-) --Jim-- James S. Tison Senior Software Engineer TPF Laboratory / Architecture IBM Corporation If dogs don't go to heaven, then, when I die, I want to go where they do. -- Will Rogers