VM VSE linux/390 Employment Web Page

2002-11-14 Thread Dennis G. Wicks
Greetings; (Posted to VMESA-L and VSE-L and LINUX-390) - - Now in its fifth year! - - Now includes VSE and linux/390! I have set up a public service web page at http://www.eskimo.com/~wix/vm/ for posting positions available and wanted for VM, VSE and linux/390. Please visit the

/bin/sh is needed by

2002-11-14 Thread Felix Yoyok S. Aditias
Hi, I use suse 7.0 with kernel 2.16. When I install tomcat, the following message came out : rootlbii:/master/tomcat3-3.3.1-4 rpm -ihv servletapi3-3.3.1-1.noarch.rpm error: failed dependencies: /bin/shis needed by servletapi3-3.3.1-1 /bin/shis needed by servletapi3-3.3.1-1 I

Re: /bin/sh is needed by

2002-11-14 Thread John Summerfield
On Thu, 14 Nov 2002, Felix Yoyok S. Aditias wrote: Hi, I use suse 7.0 with kernel 2.16. When I install tomcat, the following message came out : rootlbii:/master/tomcat3-3.3.1-4 rpm -ihv servletapi3-3.3.1-1.noarch.rpm error: failed dependencies: /bin/shis needed by

Re: /bin/sh is needed by

2002-11-14 Thread Daniel Jarboe
I'm on a RH system, but $ rpm -qf /bin/sh bash-2.05-8 If you can find whatever rpm is supposed to provide /bin/sh in your distro then you might want to do a rpm --justdb on it so you won't get dependency errors for this in the future. ~ Daniel -Original Message- From: John Summerfield

Problems loading qeth for a Guest Lan

2002-11-14 Thread Geyer, Thomas L.
I am attempting to setup a Guest Lan on zVM 4.3 on a z800. I have one Linux machine, lnxrtr1, up and running with a CTC connection to the zVM TCPIP virtual machine. My goal is to have the lnxrtr1 linux machine act be a router for my Guest Lan. I am now trying to get lnxrtr1 to communicate to the

regina/rexx question

2002-11-14 Thread Mark . Pace
I am working on rexx/regina. I want to issue a command, such as 'df' and then pull the results and massage them. 'df' do queued() pull line /* edit the line */ say line end df results are not put in the stack to be pulled off in this manner. How can I accomplish this? Mark D Pace

Re: regina/rexx question

2002-11-14 Thread Ferguson, Neale
From memory... x = 'df'() parse var X '0a'x I'm probably wrong about the CR delimiter you may have to check out what you get by using trace i -Original Message- I am working on rexx/regina. I want to issue a command, such as 'df' and then pull the results and massage them. 'df'

Re: Problems loading qeth for a Guest Lan

2002-11-14 Thread Rich Smrcina
In a couple of cases I had to use: qeth-1,0x To have the driver pick the device automatically. On Thursday 14 November 2002 09:57 am, you wrote: ctc0,0x7100,0x7101 add_parms 0x10,0x7000,0x7002,portname:BEARS qeth1,0x7000,0x7001,0x7002 -- Rich Smrcina Sytek Services, Inc. Milwaukee, WI

regina/rexx question

2002-11-14 Thread Sal Torres/SBC Inc.
*** Reply to note of Thu, 14 Nov 2002 11:11:24 -0500 (EST/CDT) *** by [EMAIL PROTECTED] Mark, using popen: rc=popen('df', list.); do i=1 to list.i say list.i end or using the stack: q=queued() 'df FIFO' do i=1 to queued()-q; parse pull line say line end [EMAIL

Re: Problems loading qeth for a Guest Lan

2002-11-14 Thread Richard Hirst
On Thu, Nov 14, 2002 at 10:57:42AM -0500, Geyer, Thomas L. wrote: lnxrtr1:~ # ifconfig ctc0 Link encap:Serial Line IP inet addr:147.185.179.2 P-t-P:147.185.2.158 Mask:255.255.255.128 ... lnxrtr1:~ # ifconfig eth1 147.185.179.65 ... eth1 Link encap:Ethernet HWaddr

Re: regina/rexx question

2002-11-14 Thread Post, Mark K
Mark, Try 'df FIFO' and see if that helps. Note that there cannot be a space between the and FIFO (at least on Win2K system). One working example from one of my programs is: grep -i line all.names.txt | wc | sed -e 's/^ *//' | cut -f1 -d' ' FIFO Mark Post -Original Message- From:

Re: Problems loading qeth for a Guest Lan

2002-11-14 Thread Alan Altmark
On Thursday, 11/14/2002 at 10:57 EST, Geyer, Thomas L. [EMAIL PROTECTED] wrote: I am attempting to setup a Guest Lan on zVM 4.3 on a z800. I have one Linux machine, lnxrtr1, up and running with a CTC connection to the zVM TCPIP virtual machine. My goal is to have the lnxrtr1 linux machine act

Re: regina/rexx question

2002-11-14 Thread Mark . Pace
Try 'df FIFO' and see if that helps. x = 'df'() parse var X '0a'x rc=popen('df', list.); Thanks for the suggestions!FIFO does exactly what I was looking for. Mark D Pace Senior Systems Engineer Mainline Information Systems 1700 Summit Lake Drive Tallahassee, FL. 32317 [EMAIL

Re: regina/rexx question

2002-11-14 Thread Post, Mark K
Sal, One small correction: rc=popen('df', list.); -do i=1 to list.i +do i=1 to list.0 say list.i And one question. The distribution of Regina I have doesn't document popen at all. Do you know where I can find a source that does? Mark Post -Original Message- From: Sal Torres/SBC

Re: regina/rexx question

2002-11-14 Thread Sal Torres/SBC Inc.
*** Reply to note of Thu, 14 Nov 2002 12:52:54 -0500 (EST/CDT) *** by [EMAIL PROTECTED] You can find the Regina documentation at SourceForce.net: http://regina-rexx.sourceforge.net/doc/index.html popen is documented under the REXX Standard Built-in Functions. On newer versions of Regina you

Re: regina/rexx question

2002-11-14 Thread Post, Mark K
Sal, Thanks. That's about 4 years more current than my documentation. Mark Post -Original Message- From: Sal Torres/SBC Inc. [mailto:cmcgst;a05jes.ameritech.com] Sent: Thursday, November 14, 2002 1:26 PM To: [EMAIL PROTECTED] Subject: Re: regina/rexx question *** Reply to note of

Re: regina/rexx question

2002-11-14 Thread Sal Torres/SBC Inc.
*** Reply to note of Thu, 14 Nov 2002 13:43:32 -0500 (EST/CDT) *** by [EMAIL PROTECTED] Mark, No problem. With popen you can gain access to many of the shell's helper programs, such as basename, dirname, test, getopt. For example one could use getopt (man getopt) to handle unix command line

FW: Problems loading qeth for a Guest Lan

2002-11-14 Thread Geyer, Thomas L.
THanks to all that responded. The problem was routing. Thomas L. Geyer Email:[EMAIL PROTECTED] Phone:(330) 471-2073 Fax:(330) 471-4034 -Original Message- From: Alan Altmark [mailto:Alan_Altmark;us.ibm.com] Sent: Thursday, November 14, 2002 11:36 AM To: [EMAIL PROTECTED] Subject: Re:

Another frightening emulation trick

2002-11-14 Thread Adam Thornton
Brought to you by Robotussin DM: http://www.fsf.net/~adam/Mac-on-S390-desktop.png 470k large, so be warned. Adam

Re: Another frightening emulation trick

2002-11-14 Thread Wolfe, Gordon W
Some people have far too much time on their hands... If Paradise Lost had been written by a system administrator, it would have had the sequel 'Paradise Restored from Backup'. Gordon Wolfe, Ph. D. (425)865-5940 VM Technical Services, The Boeing Company -- From: Adam Thornton

Re: Another frightening emulation trick

2002-11-14 Thread Adam Thornton
On Thu, Nov 14, 2002 at 03:00:57PM -0800, Wolfe, Gordon W wrote: Some people have far too much time on their hands... Actually, not. I already had a bootable disk image lying around from when I was playing with Basilisk on my home system. So the sum total of the required work was: Put the

Re: Another frightening emulation trick

2002-11-14 Thread Rick Troth
http://www.fsf.net/~adam/Mac-on-S390-desktop.png Umm... Am I understanding that correctly? MacOS on a pseudo-Mac hosted by Linux/390? Put the disk and the ROM in a directory. Unpack the Basilisk sources. From the top level, cd src/Unix; configure; make Then tweak .basilisk_ii_prefs to

Linux for zSeries Informational Seminar

2002-11-14 Thread Rich Smrcina
cross-posted to vse-l, vmesa-l and linux-390, sorry for duplications. Linux for zSeries Informational Seminar What applications are companies moving to Linux, and why? Computer Associates (CA), IBM, DSG, Sytek Services cordially invites you to a free half-day joint seminar designed to present

Re: regina/rexx question

2002-11-14 Thread Ross Patterson
At 12:25 11/14/2002 -0600, Sal Torres/SBC Inc. wrote: You can find the Regina documentation at SourceForce.net: http://regina-rexx.sourceforge.net/doc/index.html popen is documented under the REXX Standard Built-in Functions. That brings up one of my favorite problems with Regina - the doc

Re: regina/rexx question

2002-11-14 Thread Ross Patterson
At 13:35 11/14/2002 -0600, Sal Torres/SBC Inc. wrote: With popen you can gain access to many of the shell's helper programs, such as basename, dirname, test, getopt. For example one could use getopt (man getopt) to handle unix command line options: Sure, but please be careful! Regina doesn't

Re: /bin/sh is needed by

2002-11-14 Thread Felix Yoyok S. Aditias
Thanks to John Daniel, installation works fine with --nodeps :)-Original Message- :)From: John Summerfield [mailto:summer;computerdatasafe.com.au] :)Sent: 14 Nopember 2002 15:42 :)To: [EMAIL PROTECTED] :)Subject: Re: /bin/sh is needed by :)For some reason the rpm database doesn't have