Re: sudo

2004-01-21 Thread Richard Higson
On Wed, Jan 21, 2004 at 08:12:50AM +0330, Alikhani wrote:
 Date: Wed, 21 Jan 2004 08:12:50 +0330
 From: Alikhani [EMAIL PROTECTED]
 Subject: Re: sudo
 To: [EMAIL PROTECTED]

 Hi Rechard,

 Thank you very much for your guidance. I did something you said ,but
 when I add the
 /usr/bin/sudo /usr/sbin/useradd .
 to my script  and when the admin run it , system says ,
 /usr/bin/sudo: /etc/sudoers is mode 0440, should be 0640
 and when I chmod 0640 /etc/sudoers as root , admin can use it
 successfully, but when admin want to use userdel command , system says:
 /usr/local/bin/sudo: /etc/sudoers is mode 0640, should be 0440
 i add in /etc/sudoers this line for admin
 admin ALL= /usr/bin/ud
 ud is the name of my script. I want to know what is the problem and how
 can I solve it?

a few questions:

1) why would `sudo` be in /usr/local/bin/sudo _AND_ /usr/bin/sudo
2) I ASSuME that in your $PATH you have /usr/local/bin/ _BEFORE_ /usr/bin
3) Please check the following

#!/bin/sh
# sudo sanity check
# find this luser's PATH
echo $PATH
# look for both sudo's and their MD5
/bin/ls -la /usr/bin/sudo /usr/local/bin/sudo
/usr/bin/md5sum /usr/bin/sudo /usr/local/bin/sudo
# see which one this luser is using
# (probably different for root and admin)
which sudo
# reported mode-error-string differs from mine, check it out.
/usr/bin/strings /usr/bin/sudo | /usr/bin/grep -i mode
/usr/bin/strings /usr/local/bin/sudo | /usr/bin/grep -i mode
# EoJ

Note that I tend to use fully qualified paths in my scripts,
(or define $PATH explicitly at the start of the script)

probably better to take this off-list, so that we don't bore the others


Richard
--
Vegetarians eat vegetables. That's OK.
It's the Humanitarians I'm worried about.
Have a nice day ;-) Richard Higson mailto:[EMAIL PROTECTED]


RE : RE : linux seeing windows files

2004-01-21 Thread Herve Bonvin
here some docs about smbclient :

http://us1.samba.org/samba/docs/man/smbclient.1.html
...
A third option is to use a credentials file which contains the plaintext of the 
username and password. This option is mainly provided for scripts where the admin does 
not wish to pass the credentials on the command line or via environment variables. If 
this method is used, make certain that the permissions on the file restrict access 
from unwanted users. See the -A for more details.
...

Regards,
Herve Bonvin



-Original Message-
From: Post, Mark K [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, January 21, 2004 12:23 AM
To: [EMAIL PROTECTED]
Subject: Re: RE : linux seeing windows files


Well, this certainly works, as long as you don't want non-root users to be
able do the mount.  Cool.  I searched, though, and the man page for smbmnt
and smbmount (as well mount) don't mention the credentials= parameter.
How did you happen to know about it?  I'd like to make mention of wherever
it might be documented on linuxvm.org.


Mark Post

P.S., before anyone else tries it too, I tried to put the workgroup=
parameter in the credentials file, and the mount failed.  So, it looks like
that value needs to stay in /etc/fstab.  Oh well, it is still tons better
than trying to play with the permissions on /etc/fstab!

-Original Message-
From: Herve Bonvin [mailto:[EMAIL PROTECTED]
Sent: Tuesday, January 20, 2004 11:26 AM
To: [EMAIL PROTECTED]
Subject: RE : linux seeing windows files


You could also try the following :

in /etc/fstab

//server/share  /mountpoint smbfs
rw,workgroup=x,uid=501,credentials=/home/user/cred 0 0


in file /home/user/cred
username=yyy
password=x

chmod 600 /home/user/cred

Regards,
Herve

-Original Message-
From: Kern, Thomas [mailto:[EMAIL PROTECTED]
Sent: Tuesday, January 20, 2004 5:14 PM
To: [EMAIL PROTECTED]
Subject: Re: linux seeing windows files


Does /etc/fstab have to be world-readable? Will a linux system boot up if
/etc/fstab is set to 0500 and owned by root?

/Thomas Kern
/301-903-2211

 -Original Message-
 From: Richard Troth [mailto:[EMAIL PROTECTED]
 Sent: Tuesday, January 20, 2004 10:58
 To: [EMAIL PROTECTED]
 Subject: Re: linux seeing windows files


  Post, Mark K wrote:
   According to the Samba team, the preferred method is now this:
   mount -t smbfs //server/share /mountpoint -o
   username=abcde,workgroup=etc...

 One of the options being password=.

  Ok that works great, except why am i being asked for a password
  and how do i setup the mount to be permanent...like when i
  shutdown and restart Linux the mount will be there

 You can include password=.   Obviously that is otherwise a no no.
 But the problem is that you need to pass credentials.   Perhaps
 someone else knows how to make it work w/o scribbling the password
 into your /etc/fstab file.   I think I understand WHY you get prompted
 but I surely don't know how to stop it.

 -- R;



Re: Nagios - CPU and Memory monitoring?

2004-01-21 Thread Hall, Ken (IDS ECCS)
I'm monitoring disk space remotely using a script that calls getsnmp, but that's only 
because check_snmp couldn't do what I needed.  There's no reason you shouldn't be able 
to retrieve any MIB element
as long as you know the OID and format.  I picked up a MIB browser called getif 
that's been very helpful.

Which VRML plugin are you using?  I haven't been able to get that to work, my browser 
rejects the incoming data.

 -Original Message-
 From: Linux on 390 Port [mailto:[EMAIL PROTECTED] Behalf Of
 Ranga Nathan
 Sent: Tuesday, January 20, 2004 9:47 PM
 To: [EMAIL PROTECTED]
 Subject: [LINUX-390] Nagios - CPU and Memory monitoring?


 Just got Nagios installed and configured. The CGI's are
 working great. I
 love the VRML 3D display.
 Now, how do I monitor memory and CPU usage?
 Also it seems that with a proper SNMP + plugin one should be able to
 monitor almost any resource - including z/OS. Anyone tried this?
 TIA



64-bit linux and tomcat

2004-01-21 Thread Ann Smith
We installed 64-bit linux from SuSE and installed tomcat from the
s390x.rpm file that came with the distribution (4.0.4-49).
We installed the 64-bit IBM java. Tomcat failed to come up. When we
installed the 32-bit IBM java Tomcat comes up fine.
I guess I learned that just because a package has an s390x.rpm name
doesn't mean it supports 64 bit. Since there is a 64-bit java, does
anyone know if there are any plans for a 64-bit version of tomcat?


SCO sues Novell

2004-01-21 Thread Dave Jones
SCO sues Novell over Unix rights
(http://biz.yahoo.com/rc/040120/tech_sco_novell_1.html).
SEATTLE, Jan 20 (Reuters) - SCO Group Inc. (NasdaqSC:SCOX
http://finance.yahoo.com/q?s=scox - News
http://finance.yahoo.com/q/h?s=scox) sued Novell Inc. (NasdaqNM:NOVL
http://finance.yahoo.com/q?s=novl - News
http://finance.yahoo.com/q/h?s=novl) on Tuesday, saying the business
software maker was blocking its efforts to collect licensing fees from
users of Linux, the freely available operating system.
SCO, which claims control over the rights to the Unix software system,
charges that some parts of Unix are being used illegally in Linux, the
operating system that can be copied and modified freely.
SCO sued International Business Machines Corp. (NYSE:IBM
http://finance.yahoo.com/q?s=ibm - News
http://finance.yahoo.com/q/h?s=ibm) last year, saying the world's
largest computer company was responsible for infringing on its
copyrights by promoting Linux software containing Unix code.
Novell and SCO, both based in Utah, have been arguing intermittently
over which company controls the copyright to Unix.
SCO is demanding that users of Linux, which include large corporations,
academic institutions and government agencies, pay a licensing fee or
face litigation.
SCO said in a statement that it filed suit against Novell for its
alleged bad faith effort to interfere with SCO's rights with respect to
UNIX and UnixWare.
SCO said that Novell had improperly filed copyright registrations and
made misleading claims that it owned the rights to Unix.
Novell spokesman Bruce Lowry declined to comment on the specifics of the
lawsuit, but said, We will be defending our interests.
A week ago, Novell announced a program to indemnify customers using its
Linux software, which it acquired through the $210 million acquisition
of German Linux developer SuSE Linux.
Dave Jones



--
Dave JonesSine Nomine Associates
Houston, TX   www.sinenomine.net
281.578.7544


reiserfs problem

2004-01-21 Thread Mark D Pace
I had a crash on my VM system last night.
6 out 7 Linux guests restarted without a problem.  All are reiserfs file
systems.  One guest told me to run fsck manually, which I did.

sles007:~ # fsck.reiserfs /dev/dasde1
blah blah blah
There were found 73 corruptions which can be fixed with --fix-fixable

Okay -
sles007:~ # fsck.reiserfs --fix-fixable /dev/dasde1
Fatal error occured: 12 fixable corruptions found after fix-fixable.

Umm - 12 fixable corruptions found?!?
Rerunning fsck.reiserfs --fix-fixable /dev/dasde1  yields the same result.
Any suggestions?   --rebuild-tree??




Mark D Pace
Senior Systems Engineer
Mainline Information Systems
1700 Summit Lake Drive
Tallahassee, FL. 32317
[EMAIL PROTECTED]
Office: 850.219.5184
Fax: 888.221.9862
http://www.mainline.com


This e-mail and files transmitted with it are confidential, and are
intended solely for the use of the individual or entity to whom this e-mail
is addressed.  If you are not the intended recipient, or the employee or
agent responsible to deliver it to the intended recipient, you are hereby
notified that any dissemination, distribution or copying of this
communication is strictly prohibited.  If you are not one of the named
recipient(s) or otherwise have reason to believe that you received this
message in error, please immediately notify sender by e-mail, and destroy
the original message.  Thank You.

This e-mail and files transmitted with it are confidential, and are
intended solely for the use of the individual or entity to whom this e-mail
is addressed.  If you are not the intended recipient, or the employee or
agent responsible to deliver it to the intended recipient, you are hereby
notified that any dissemination, distribution or copying of this
communication is strictly prohibited.  If you are not one of the named
recipient(s) or otherwise have reason to believe that you received this
message in error, please immediately notify sender by e-mail, and destroy
the original message.  Thank You.


Re: linux seeing windows files

2004-01-21 Thread David Booher
I noticed that the credentials parameter was not valid in Suse 7, but appeared (and 
worked) in Suse 8. 

Dave




-Original Message-
From: Post, Mark K [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, January 21, 2004 12:23 AM
To: [EMAIL PROTECTED]
Subject: Re: RE : linux seeing windows files


Well, this certainly works, as long as you don't want non-root users to be
able do the mount.  Cool.  I searched, though, and the man page for smbmnt
and smbmount (as well mount) don't mention the credentials= parameter.
How did you happen to know about it?  I'd like to make mention of wherever
it might be documented on linuxvm.org.


Mark Post


Linux email solutions on s390

2004-01-21 Thread Darren Zamrykut
Hi,

What are shops with SLES8 (32bit) running as a guest under VM doing in
regards to a mail server?   Besides setting up my own ldap, postfix,
cyrus, etc from the packages that come with SLES8 CDs, are there any
commercial products that will work?

Thanks,
Darren


Re: HOW TO START TLS AND SASL ON SENDMAIL

2004-01-21 Thread Post, Mark K
I think you got lucky.  Someone just posted a similar question on
alt.os.linux.slackware, and the answer seems not too hard to implement.
Take a look at
http://groups.google.com/groups?hl=enlr=ie=UTF-8threadm=4dSdnbQP6Ynj3Zbd4
p2dnA%40comcast.comrnum=1prev=/groups%3Fhl%3Den%26lr%3D%26ie%3DISO-8859-1%
26q%3DSendmail%252FSalckbuild%26btnG%3DGoogle%2BSearch%26meta%3Dgroup%253Dal
t.os.linux.slackware and scroll to the top to see the entire thread.


Mark Post

-Original Message-
From: Linux on 390 Port [mailto:[EMAIL PROTECTED] Behalf Of
Alikhani
Sent: Tuesday, January 20, 2004 3:21 AM
To: [EMAIL PROTECTED]
Subject: HOW TO START TLS AND SASL ON SENDMAIL


Hi,
I have 2.4.7-SUSE_SMP as a gust and i use sendmail-8.11.3-31 . This
service is not secure and I need to secure it as soon as possible and I
need some helping to doing this . I want to know how to use SASL and TLS
in linux.mc , meanwhile i use inflex-1.0.12.7 for filtering and I run
spamassassin in my server that inflex use it but since i don't know
anything about spamssassin config my mailserver assume that every mail
is spam and then delete the concept of every mail include attachements
and body. Now for the first time I need to start sendmail with sasl and tls
can anybody help me ?

-- by regards
-- Sophia


__
Inflex - installed on mailserver for domain @itrc.ac.ir
Queries to: admin@


Re: SCO sues Novell

2004-01-21 Thread Chris Cox
Dave Jones wrote:
SCO sues Novell over Unix rights


It's kind of interesting... I think that SCO does have
more rights than what Novell has been saying recently.
This I gathered reading each ones Edgar stored filings.
However, SCO's suit filing still looks to be written
by an angry 4 year old.  If I were a judge, I throw
it out just because of that.  SCO must have the
stupidest lawyers in the world.


FW: TSM running on a mainframe LINUX engine

2004-01-21 Thread Mike Moore
This was originally posted on the VSE side but it was suggested I post
it here too.

We are looking at how to use our 3590s to help speed up our backups of
open systems data living on our SHARK. One of the options we are looking
at on a new Z800-003 is going ahead and getting a LINUX engine, running
Tivoli Storage Manager on it and letting the mainframe/3590/SHARK
horsepower speed up our server backups. One group of vendors says they
want us to use a AIX platform for TSM while another says the LINUX
platform on the Z800 will be the best bet. Has anyone played with any of
these scenarios?

Mike Moore
Alabama Judicial Datacenter
[EMAIL PROTECTED]
334-242-0375


Re: Linux email solutions on s390

2004-01-21 Thread Post, Mark K
I would hope that most people were using what came with their distribution.
But, if you want to pay extra, there are these choices listed on
http://www.ibm.com/servers/eserver/zseries/solutions/s390da/linuxproduct.htm
l:
Bynari Insight
Intercope Message Plus/Open
OwnMail
Samsung Contact
Secure Mail Exchange
Sendmail Mailcenter
Sendmail Mainstream Manager
Stalker Software CommuniGate Pro
Technology Nexus Neon

Then there's IBM's Domino.


Mark Post

-Original Message-
From: Linux on 390 Port [mailto:[EMAIL PROTECTED] Behalf Of
Darren Zamrykut
Sent: Wednesday, January 21, 2004 10:34 AM
To: [EMAIL PROTECTED]
Subject: Linux email solutions on s390


Hi,

What are shops with SLES8 (32bit) running as a guest under VM doing in
regards to a mail server?   Besides setting up my own ldap, postfix,
cyrus, etc from the packages that come with SLES8 CDs, are there any
commercial products that will work?

Thanks,
Darren


looking for down load site for: Java JRE 1.3.0 Linux S390

2004-01-21 Thread Terry Spaulding
Can anyone direct me to a down load site for the Java JRE 1.3.0 Linux S390
?

I have gone thru and searched sites with no success for Linux S390
platform.

I need that version for LDAP 3.2.2-1 as Java JRE 1.3.1 does not work.

TIA...

Regards,
Terry L. Spaulding
IBM Global Services
[EMAIL PROTECTED]


Re: SCO sues Novell

2004-01-21 Thread Ryan Ware
 -Original Message-
 From: Chris Cox [mailto:[EMAIL PROTECTED]
 Sent: Wednesday, January 21, 2004 10:36 AM
 To: [EMAIL PROTECTED]
 Subject: Re: SCO sues Novell


 Dave Jones wrote:
  SCO sues Novell over Unix rights


 It's kind of interesting... I think that SCO does have
 more rights than what Novell has been saying recently.
 This I gathered reading each ones Edgar stored filings.
 However, SCO's suit filing still looks to be written
 by an angry 4 year old.  If I were a judge, I throw
 it out just because of that.  SCO must have the
 stupidest lawyers in the world.

No, they have some of the best and some of the richest.  I too think that
SCO may have an ace yet.


Re: looking for down load site for: Java JRE 1.3.0 Linux S390

2004-01-21 Thread Rich Smrcina
http://www.ibm.com/java.  Click on Downloads  Products.

On Wed, 2004-01-21 at 10:59, Terry Spaulding wrote:
 Can anyone direct me to a down load site for the Java JRE 1.3.0 Linux S390
 ?

 I have gone thru and searched sites with no success for Linux S390
 platform.

 I need that version for LDAP 3.2.2-1 as Java JRE 1.3.1 does not work.

 TIA...

 Regards,
 Terry L. Spaulding
 IBM Global Services
[EMAIL PROTECTED]
--
Rich Smrcina
Sr. Systems Engineer
Sytek Services - A Division of DSG
Milwaukee, WI
rsmrcina at wi.rr.com
rsmrcina at dsgroup.com

Catch the WAVV! Stay for requirements and the free-for-all.
Update your zSeries skills in 4 days for a very reasonable price.
WAVV 2004 in Chattanooga, TN
April 30-May 4, 2004
For details see http://www.wavv.org


Re: SCO sues Novell

2004-01-21 Thread Chris Cox
Ryan Ware wrote:
..
No, they have some of the best and some of the richest.  I too think that
SCO may have an ace yet.
So... the best lawyers are the ones that
let Microsoft get away with a simple
hand slap for being a monopoly??  I don't
think they have a clue.  Just look at the
stupid remarks that SCO keeps on making.
Any reasonable lawyer would have gagged
Darl by now nope... I don't believe
any part of that except the richest
part.


Re: SCO sues Novell

2004-01-21 Thread Ronald Wells
SCO has an( ace )---but spelled different


Re: looking for down load site for: Java JRE 1.3.0 Linux S390

2004-01-21 Thread Post, Mark K
Except all that IBM has available for download is 1.3.1, and 1.4.1.  Terry
said he needed 1.3.0.


Mark Post

-Original Message-
From: Linux on 390 Port [mailto:[EMAIL PROTECTED] Behalf Of
Rich Smrcina
Sent: Wednesday, January 21, 2004 1:20 PM
To: [EMAIL PROTECTED]
Subject: Re: looking for down load site for: Java JRE 1.3.0 Linux S390


http://www.ibm.com/java.  Click on Downloads  Products.

On Wed, 2004-01-21 at 10:59, Terry Spaulding wrote:
 Can anyone direct me to a down load site for the Java JRE 1.3.0 Linux S390
 ?

 I have gone thru and searched sites with no success for Linux S390
 platform.

 I need that version for LDAP 3.2.2-1 as Java JRE 1.3.1 does not work.

 TIA...

 Regards,
 Terry L. Spaulding
 IBM Global Services
[EMAIL PROTECTED]
--
Rich Smrcina
Sr. Systems Engineer
Sytek Services - A Division of DSG
Milwaukee, WI
rsmrcina at wi.rr.com
rsmrcina at dsgroup.com

Catch the WAVV! Stay for requirements and the free-for-all.
Update your zSeries skills in 4 days for a very reasonable price.
WAVV 2004 in Chattanooga, TN
April 30-May 4, 2004
For details see http://www.wavv.org


Re: Nagios - CPU and Memory monitoring?

2004-01-21 Thread Ranga Nathan
MIB? (Men In Black?) . OID element? Sorry, could you expand?


I got the Corotona 2 from Parallelgraphics.com. Nice to see that the
download installs for both IE and Mozilla.





Hall, Ken (IDS ECCS) [EMAIL PROTECTED]

Sent by: Linux on 390 Port [EMAIL PROTECTED]
01/21/2004 05:06 AM
Please respond to Linux on 390 Port


To: [EMAIL PROTECTED]
cc:
Subject:Re: Nagios - CPU and Memory monitoring?


I'm monitoring disk space remotely using a script that calls getsnmp, but
that's only because check_snmp couldn't do what I needed.  There's no
reason you shouldn't be able to retrieve any MIB element
as long as you know the OID and format.  I picked up a MIB browser called
getif that's been very helpful.

Which VRML plugin are you using?  I haven't been able to get that to work,
my browser rejects the incoming data.

 -Original Message-
 From: Linux on 390 Port [mailto:[EMAIL PROTECTED] Behalf Of
 Ranga Nathan
 Sent: Tuesday, January 20, 2004 9:47 PM
 To: [EMAIL PROTECTED]
 Subject: [LINUX-390] Nagios - CPU and Memory monitoring?


 Just got Nagios installed and configured. The CGI's are
 working great. I
 love the VRML 3D display.
 Now, how do I monitor memory and CPU usage?
 Also it seems that with a proper SNMP + plugin one should be able to
 monitor almost any resource - including z/OS. Anyone tried this?
 TIA



Re: Nagios - CPU and Memory monitoring?

2004-01-21 Thread Hall, Ken (IDS ECCS)
MIB=Management Information Base.  That's the tree structure of elements SNMP provides.

An OID (Object Identifier) is a particular element in the tree.  It has a number like 
.1.3.6.1.4.1.2021.9.1.101 that defines it's place in the tree.  Many (but not all) 
also have names, like
system.sysDescr.0, and system.sysUpTime.0

The O'Rielly book Essential SNMP gives a pretty good overview of how SNMP works.

The nagios plugin check_snmp calls a program calles snmpget to retrieve single 
element values and checks them against provided limits.  If you want to do anything 
fancy (like retrieve related
name/value pairs in corresponding branches), you need to write a script that uses 
snmpget.

 -Original Message-
 From: Linux on 390 Port [mailto:[EMAIL PROTECTED] Behalf Of
 Ranga Nathan
 Sent: Wednesday, January 21, 2004 2:30 PM
 To: [EMAIL PROTECTED]
 Subject: Re: [LINUX-390] Nagios - CPU and Memory monitoring?


 MIB? (Men In Black?) . OID element? Sorry, could you expand?


 I got the Corotona 2 from Parallelgraphics.com. Nice to see that the
 download installs for both IE and Mozilla.





 Hall, Ken (IDS ECCS) [EMAIL PROTECTED]

 Sent by: Linux on 390 Port [EMAIL PROTECTED]
 01/21/2004 05:06 AM
 Please respond to Linux on 390 Port


 To: [EMAIL PROTECTED]
 cc:
 Subject:Re: Nagios - CPU and Memory monitoring?


 I'm monitoring disk space remotely using a script that calls
 getsnmp, but
 that's only because check_snmp couldn't do what I needed.  There's no
 reason you shouldn't be able to retrieve any MIB element
 as long as you know the OID and format.  I picked up a MIB
 browser called
 getif that's been very helpful.

 Which VRML plugin are you using?  I haven't been able to get
 that to work,
 my browser rejects the incoming data.

  -Original Message-
  From: Linux on 390 Port [mailto:[EMAIL PROTECTED] Behalf Of
  Ranga Nathan
  Sent: Tuesday, January 20, 2004 9:47 PM
  To: [EMAIL PROTECTED]
  Subject: [LINUX-390] Nagios - CPU and Memory monitoring?
 
 
  Just got Nagios installed and configured. The CGI's are
  working great. I
  love the VRML 3D display.
  Now, how do I monitor memory and CPU usage?
  Also it seems that with a proper SNMP + plugin one should be able to
  monitor almost any resource - including z/OS. Anyone tried this?
  TIA
 



Re: 64-bit linux and tomcat

2004-01-21 Thread Post, Mark K
Ann,

True, the s390x designation just means that the package was built to run on
a 64-bit system, using the 64-bit libraries, not that it exploits it.  It
also gives you a clear warning about trying to run it on a 31-bit system.


Mark Post

-Original Message-
From: Linux on 390 Port [mailto:[EMAIL PROTECTED] Behalf Of Ann
Smith
Sent: Wednesday, January 21, 2004 9:06 AM
To: [EMAIL PROTECTED]
Subject: 64-bit linux and tomcat


We installed 64-bit linux from SuSE and installed tomcat from the
s390x.rpm file that came with the distribution (4.0.4-49).
We installed the 64-bit IBM java. Tomcat failed to come up. When we
installed the 32-bit IBM java Tomcat comes up fine.
I guess I learned that just because a package has an s390x.rpm name
doesn't mean it supports 64 bit. Since there is a 64-bit java, does
anyone know if there are any plans for a 64-bit version of tomcat?


Re: SCO sues Novell

2004-01-21 Thread Beinert, William
I wouldn't give those lawyers any credit for getting MS a free pass. MS lost the case 
on the facts, and their lawyers let them make fools of themselves - remember the 
rigged demo, and Gates' statement the he  didn't mark a message 'high importance' - 
the computer did.
The decision was overturned on a 'procedural' error because Judge Jackson made public 
remarks about the case, and the appeal judge wasn't interested in any facts, just in 
letting MS off the hook. 

Bill

-Original Message-
From: Linux on 390 Port [mailto:[EMAIL PROTECTED] Behalf Of
Chris Cox
Sent: Wednesday, January 21, 2004 1:29 PM
To: [EMAIL PROTECTED]
Subject: Re: SCO sues Novell


Ryan Ware wrote:
..

 No, they have some of the best and some of the richest.  I too think that
 SCO may have an ace yet.


So... the best lawyers are the ones that
let Microsoft get away with a simple
hand slap for being a monopoly??  I don't
think they have a clue.  Just look at the
stupid remarks that SCO keeps on making.
Any reasonable lawyer would have gagged
Darl by now nope... I don't believe
any part of that except the richest
part.


Re: looking for down load site for: Java JRE 1.3.0 Linux S390

2004-01-21 Thread Terry Spaulding
Correct, I need the Java JRE 1.3.0.
---
Mark wrote:
Except all that IBM has available for download is 1.3.1, and 1.4.1.  Terry
said he needed 1.3.0.

Mark Post


Thanks.

Regards,
Terry L. Spaulding
IBM Global Services
[EMAIL PROTECTED]


Re: looking for down load site for: Java JRE 1.3.0 Linux S390

2004-01-21 Thread Adam Thornton
On Wed, Jan 21, 2004 at 03:25:25PM -0500, Terry Spaulding wrote:
 Correct, I need the Java JRE 1.3.0.
 ---
 Mark wrote:
 Except all that IBM has available for download is 1.3.1, and 1.4.1.  Terry
 said he needed 1.3.0.

Wow.  What app do you have that can't handle a version minor number
increase?  I can't remember offhand what changed between 1.3.0 and
1.3.1, but I'm surprised that there's not good upwards compatibility
between them.

Adam


Re: looking for down load site for: Java JRE 1.3.0 Linux S390

2004-01-21 Thread Terry Spaulding
I am working with LDAP 3.2.2-1. Trying to use the dmt tool in LDAP.

Yes, it is an older LDAP.

I got message saying it did not like the Java JRE 1.3.1. Must be 1.3.0.

Adam wrote:
-
Wow.  What app do you have that can't handle a version minor number
increase?  I can't remember offhand what changed between 1.3.0 and
1.3.1, but I'm surprised that there's not good upwards compatibility
between them.

Adam
---


Thanks...

Regards,
Terry L. Spaulding
IBM Global Services
[EMAIL PROTECTED]


Re: looking for down load site for: Java JRE 1.3.0 Linux S390

2004-01-21 Thread Post, Mark K
Terry,

Was this during the ./configure stage?  Or after the package was built?  If
the first, you may just need to diddle the configure.in file a little bit
and run autoconf.


Mark Post

-Original Message-
From: Linux on 390 Port [mailto:[EMAIL PROTECTED] Behalf Of
Terry Spaulding
Sent: Wednesday, January 21, 2004 3:55 PM
To: [EMAIL PROTECTED]
Subject: Re: looking for down load site for: Java JRE 1.3.0 Linux S390


I am working with LDAP 3.2.2-1. Trying to use the dmt tool in LDAP.

Yes, it is an older LDAP.

I got message saying it did not like the Java JRE 1.3.1. Must be 1.3.0.

Adam wrote:
-
Wow.  What app do you have that can't handle a version minor number
increase?  I can't remember offhand what changed between 1.3.0 and
1.3.1, but I'm surprised that there's not good upwards compatibility
between them.

Adam

---


Thanks...

Regards,
Terry L. Spaulding
IBM Global Services
[EMAIL PROTECTED]


Red Hat Open Source Assurance

2004-01-21 Thread Henry Schaffer
  Red Hat Announces Open Source Assurance to Safeguard Customer Investment

  Program features warranty to guarantee customers the right to use
Red Hat Enterprise Linux without interruption.

  ...
A key feature of the Open Source Assurance Program is an Intellectual
Property Warranty. The warranty ensures, that in the event that an
infringement issue is identified in Red Hat Enterprise Linux software
code, Red Hat will replace the infringing code. Red Hat's warranty
assures customers that they can use Red Hat Enterprise Linux and related
solutions without interruption. The warranty is available for all
customers having a valid registered subscription to Red Hat Enterprise
Linux or related solutions.
 ...

--henry schaffer

P.S. See:
http://www.redhat.com/about/presscenter/2004/press_OS_assurance.html

Note that SCO is *not* mentioned! :-)


CUNY's small foray into Linux

2004-01-21 Thread Ferguson, Neale
City University Purchases Largest IBM zSeries for Linux Workload

City University of New York (CUNY), the largest urban university in the
United States, recently inked a deal with IBM for the largest IBM zSeries
system ever purchased for a Linux workload - a z990 Model 316 with 15
Integrated Facilities for Linux (IFLs) and one processor dedicated to a z/OS
workload. The Linux workload will include email, voicemail, calendaring and
BlackBerry wireless handheld devices for 260,000 users. The IBM solution
meets CUNY's goals because it delivers state-of-the art technology,
cross-campus consolidation and compatibility on one server, consolidating
old workloads and new onto one z990. The consolidation provides excellent
total cost of ownership and streamlines future procurement and growth.


OSA-2 sharing between Linux LPARS

2004-01-21 Thread Doug Clark
I need to share between two LPARS - (that have working copies of Linux
running on each LPAR with separate IP addresses and Hostnames) - a single
OSA-2 adapter.  The first LPAR that I activate owns the OSA-2 adapter and
the second LPAR does not have network access.  Can someone please point me
to a manual or documentation that can walk me through this configuration
effort?  If this is even possible.  Sorry no VM/z and OSA-E is not currently
available to me.


Re: CUNY's small foray into Linux

2004-01-21 Thread Post, Mark K
I'll bet this makes Arty Ecock happy.  :)

Mark Post

-Original Message-
From: Linux on 390 Port [mailto:[EMAIL PROTECTED] Behalf Of
Ferguson, Neale
Sent: Wednesday, January 21, 2004 4:18 PM
To: [EMAIL PROTECTED]
Subject: CUNY's small foray into Linux


City University Purchases Largest IBM zSeries for Linux Workload

City University of New York (CUNY), the largest urban university in the
United States, recently inked a deal with IBM for the largest IBM zSeries
system ever purchased for a Linux workload - a z990 Model 316 with 15
Integrated Facilities for Linux (IFLs) and one processor dedicated to a z/OS
workload. The Linux workload will include email, voicemail, calendaring and
BlackBerry wireless handheld devices for 260,000 users. The IBM solution
meets CUNY's goals because it delivers state-of-the art technology,
cross-campus consolidation and compatibility on one server, consolidating
old workloads and new onto one z990. The consolidation provides excellent
total cost of ownership and streamlines future procurement and growth.


Re: OSA-2 sharing between Linux LPARS

2004-01-21 Thread Alan Schilla
There is probably more than one way to make this happen but for OSA-2 to
support multiple LPARs on the same interface or port you must configure the
OSA-2 using OSA-SF. I have been fortunate enough that I have not needed to
do this so I can't help with any of the specifics, sorry. IBM has a pretty
good red book OSA-2 Implementation Guide that should be able to walk you
thru the configuration.
Sorry I could not be more help,
Al Schilla
State of Minnesota

-Original Message-
From: Doug Clark [mailto:[EMAIL PROTECTED]
Sent: Wednesday, January 21, 2004 3:25 PM
To: [EMAIL PROTECTED]
Subject: OSA-2 sharing between Linux LPARS


I need to share between two LPARS - (that have working copies of Linux
running on each LPAR with separate IP addresses and Hostnames) - a single
OSA-2 adapter.  The first LPAR that I activate owns the OSA-2 adapter and
the second LPAR does not have network access.  Can someone please point me
to a manual or documentation that can walk me through this configuration
effort?  If this is even possible.  Sorry no VM/z and OSA-E is not currently
available to me.


Re: SCO sues Novell

2004-01-21 Thread David Boyes
 SCO said in a statement that it filed suit against Novell for its
 alleged bad faith effort to interfere with SCO's rights with
 respect to
 UNIX and UnixWare.

Interesting. I was wondering when the Continental Airlines strategy would
appear.

(background: Continental proved in the 1980s that if you're going to go
bankrupt, the way to do it is to go over the top in a spectacular blaze of
debt and public stupidity first. You then get bailed out by investment
groups, and go on to lose even more money with different kinds of stupidity
until you eventually reach the point of no return and depend on Federal
bailouts to attempt to do it again. )

100% homegrown market/share price gaming at work.

-- db


Re: looking for down load site for: Java JRE 1.3.0 Linux S390

2004-01-21 Thread Terry Spaulding
I have LDAP installed with no problems and it is working.
I need to use the directory management tool (dmt) that is part of the LDAP
package and it requires Java JRE 1.3.0.
It looks like the java delivered with LDAP is broken. The resolve is to
download a good Java JRE 1.3.0.

I enter dmt at the Linux prompt to invoke a graphical interface for the
tool.

Mark wrote:
---
Terry,

Was this during the ./configure stage?  Or after the package was built?  If
the first, you may just need to diddle the configure.in file a little bit
and run autoconf.


Mark Post



Thanks...

Regards,
Terry L. Spaulding
IBM Global Services
[EMAIL PROTECTED]


Re: TSM running on a mainframe LINUX engine

2004-01-21 Thread David Boyes
Without reopening the discussion about Tivoli's past policies and failings,
TSM on 390 makes most sense when backing up Linux guests on the same frame
over hipersockets to z/OS (the only really reliable TSM on 390 with any
future or sensible configuration options). Getting enough bandwidth over the
LAN for large scale backups is difficult, and the TSM code on the mainframe
does not have a number of the later enhancements. It also implies some
significant impact on your current hardware configuration.

Hate to say it, but you're probably better off with the AIX box, or another
backup solution than TSM. Contact me off list if you'd like to discuss some
other options.

-- db

David Boyes
Sine Nomine Associates


 -Original Message-
 From: Linux on 390 Port [mailto:[EMAIL PROTECTED] Behalf Of
 Mike Moore
 Sent: Wednesday, January 21, 2004 11:07 AM
 To: [EMAIL PROTECTED]
 Subject: FW: TSM running on a mainframe LINUX engine


 This was originally posted on the VSE side but it was suggested I post
 it here too.

 We are looking at how to use our 3590s to help speed up our backups of
 open systems data living on our SHARK. One of the options we
 are looking
 at on a new Z800-003 is going ahead and getting a LINUX
 engine, running
 Tivoli Storage Manager on it and letting the mainframe/3590/SHARK
 horsepower speed up our server backups. One group of vendors says they
 want us to use a AIX platform for TSM while another says the LINUX
 platform on the Z800 will be the best bet. Has anyone played
 with any of
 these scenarios?

 Mike Moore
 Alabama Judicial Datacenter
 [EMAIL PROTECTED]
 334-242-0375



Re: looking for down load site for: Java JRE 1.3.0 Linux S390

2004-01-21 Thread Rich Smrcina
Sorry Terry, I missed that part.

On Wed, 2004-01-21 at 14:25, Terry Spaulding wrote:
 Correct, I need the Java JRE 1.3.0.
 ---
 Mark wrote:
 Except all that IBM has available for download is 1.3.1, and 1.4.1.  Terry
 said he needed 1.3.0.

 Mark Post
 

 Thanks.

 Regards,
 Terry L. Spaulding
 IBM Global Services
[EMAIL PROTECTED]
--
Rich Smrcina
Sr. Systems Engineer
Sytek Services - A Division of DSG
Milwaukee, WI
rsmrcina at wi.rr.com
rsmrcina at dsgroup.com

Catch the WAVV! Stay for requirements and the free-for-all.
Update your zSeries skills in 4 days for a very reasonable price.
WAVV 2004 in Chattanooga, TN
April 30-May 4, 2004
For details see http://www.wavv.org


more on Red Hat protection

2004-01-21 Thread Henry Schaffer
http://story.news.yahoo.com/news?tmpl=storyu=/nf/20040120/bs_nf/23025

--henry schaffer