New Mono RPMs on Web Site

2004-01-20 Thread Mark Post
Neale Ferguson has contributed new Mono RPMs for Linux/390, for version 0.29. This set of packages includes Unicode support, and internationalization: mono-0.29-0.6.1.s390.rpm mono-devel-0.29-0.6.1.s390.rpm icu-2.6-41.s390.rpm icu-data-2.6-41.s390.rpm icu-i18ndata-2.6-41.s390.rpm

HOW TO START TLS AND SASL ON SENDMAIL

2004-01-20 Thread Alikhani
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

sudo

2004-01-20 Thread Alikhani
hi, I want user with name admin can run these commands and want add this in sudoers file he/she can run :useradd -c comment -d /home/username -m -s /bin/false meanwhile I want after this user create successfully , this command: quotatool -u username -bq 10M -l 10M /var/spool/mail quotatool -u

Re: sudo

2004-01-20 Thread Alikhani
I write a script that contains: #!/bin/bash echo Enter username: read username /usr/sbin/useradd -d /home/$username -m $username /usr/bin/quotatool -u $username -bq 10M -l 10M /var/spool/mail /usr/bin/quotatool -u $username -bq 1-M -l 10M /home

Re: linux seeing windows files

2004-01-20 Thread Noll, Ralph
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... Ok that works great, except why am i being asked for a password and how do i setup the mount to be permanent...like

[no subject]

2004-01-20 Thread Rob Schwartz
Hey Everyone, I have a WebSphereCommerce instance and a DB2 server both running DB2 V7 fixpack 8 on top of SLES 7 (2.4.19 kernel). We are occassionally seeing the following message. Has anyone ever experienced this? Thanks, Rob [1/19/04 14:15:02:307 GMT+00:00] 1490ed88 StaleConnecti A

DB2: Communication link failure

2004-01-20 Thread Sergey Korzhevsky
Try this solution (about loop-database). http://www-306.ibm.com/cgi-bin/db2www/data/db2/udb/winos2unix/support/document.d2w/report?fn=1079756 DB2 Development Center on Red Hat 7.2 Systems Exception Error Applicable version(s): 8 Applicable platform(s): Linux Abstract: When you are running the

Communications Error To DB2

2004-01-20 Thread Rob Schwartz
Hey Everyone, I have a WebSphereCommerce instance and a DB2 server both running DB2 V7 fixpack 8 on top of SLES 7 (2.4.19 kernel). We are occassionally seeing the message below. We've also had some intermittent problems FTP'ing to Linux guests. Has anyone ever experienced these type of

Re: linux seeing windows files

2004-01-20 Thread Post, Mark K
You're being prompted for the password to send to the Windows system for authentication. You can put all this in /etc/fstab, but that will require you to also put the password in there for all to see. Mark Post -Original Message- From: Linux on 390 Port [mailto:[EMAIL PROTECTED] Behalf

Re: linux seeing windows files

2004-01-20 Thread Ferguson, Neale
Create an init script with permission of 0500 and ownership of root:root that gets executed at boot time. This means only root can see the contents. Not optimal but may be good enough.

Re: linux seeing windows files

2004-01-20 Thread Kern, Thomas
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:

RE : linux seeing windows files

2004-01-20 Thread Herve Bonvin
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:

Re: linux seeing windows files

2004-01-20 Thread Post, Mark K
It might. Why don't you try it and tell us what happens? :) I'm also curious as to what would happen to users' ability to mount file systems that have user specified on them in /etc/fstab. Mark Post -Original Message- From: Linux on 390 Port [mailto:[EMAIL PROTECTED] Behalf Of Kern,

Determining what programs are writing into /usr

2004-01-20 Thread David Kreuter
Hi: What methods are available for determining what is writing into /usr and it's subdirectories? Goal is to create a r/o /usr for sharing amongst multiple vm linux images. os is suse sles8. Thanks, David

Re: Determining what programs are writing into /usr

2004-01-20 Thread Post, Mark K
Well, you could always mount the file system read only and see what barfs. Mark Post -Original Message- From: David Kreuter [mailto:[EMAIL PROTECTED] Sent: Tuesday, January 20, 2004 1:24 PM To: [EMAIL PROTECTED] Subject: Determining what programs are writing into /usr Hi: What methods

Re: linux seeing windows files and...linux 2 linux

2004-01-20 Thread Noll, Ralph
ok all works fine.. seeing windows machines from Linux box now how do i mount a linux box to a linux box i have it-rntux. i want to mount linux2003/ibmbooks to my it-rntux box i want to see the files under ibmbooks from it-rntux i guess i am not thinking... what do i do thanks Ralph

Re: linux seeing windows files and...linux 2 linux

2004-01-20 Thread Rich Smrcina
I think there was a recent thread on this. You could also use SMB, but NFS will be better for Linux to Linux. On Tue, 2004-01-20 at 13:22, Noll, Ralph wrote: ok all works fine.. seeing windows machines from Linux box now how do i mount a linux box to a linux box i have it-rntux. i

Re: linux seeing windows files and...linux 2 linux

2004-01-20 Thread David Boyes
0) Make ABSOLUTELY certain the numeric uids match (ie if you have a user with a uid of 500 on one system, the same userid should have uid 500 on the other system) on both systems and enable NFS Server function (use yast as the simplest method). Enable NFS client function on system2. For the rest

Re: Determining what programs are writing into /usr

2004-01-20 Thread Samuel S Chessman
On Tue, 20 Jan 2004, David Kreuter wrote: Hi: What methods are available for determining what is writing into /usr and it's subdirectories? Goal is to create a r/o /usr for sharing amongst multiple vm linux images. os is suse sles8. Thanks, David fuser -m /usr /usr: 176m

Re: Determining what programs are writing into /usr

2004-01-20 Thread Wolfe, Gordon W
David, There isn't much that writes to the /usr partition. We've been running shared read-only /usr on SuSE linux for about two years now. The only change we had to make was to Apache's config file to move the source of stuff being served out by Apache to /home from /usr. The only thing

IP address puzzle

2004-01-20 Thread Henry . Calzaretta
Hello, I have a GBit Ethernet OSA port (qeth0) dedicated to an zLinux server (SLES7) under zVM. The IP address configured for this device is 172.16.111.101. ifconfig output wcs-mf-winxs-test:/etc # ifconfig eth0 eth0 Link encap:Ethernet HWaddr 00:02:55:9A:EC:9E

Re: sudo

2004-01-20 Thread Richard Higson
On Tue, Jan 20, 2004 at 01:10:19PM +0330, Alikhani wrote: Date: Tue, 20 Jan 2004 13:10:19 +0330 From: Alikhani [EMAIL PROTECTED] Subject: Re: sudo To: [EMAIL PROTECTED] I write a script that contains: #!/bin/bash echo Enter username: read username /usr/sbin/useradd -d /home/$username -m

Re: IP address puzzle

2004-01-20 Thread Alex deVries
Hank, Could it be that your HTTP traffic is being passed through a web proxy that has the correct DNS entry cached? - Alex [EMAIL PROTECTED] wrote: Hello, I have a GBit Ethernet OSA port (qeth0) dedicated to an zLinux server (SLES7) under zVM. The IP address configured for this device is

Re: Determining what programs are writing into /usr

2004-01-20 Thread Post, Mark K
Of course, this doesn't identify tasks that run, write to /usr, then terminate, unless you're lucky enough to run the command during the (probably short) time period the file is open. One way to get some clues about tasks that might be doing that is by identifying which files have been modified:

Re: RE : linux seeing windows files

2004-01-20 Thread Post, Mark K
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

Re: IP address puzzle

2004-01-20 Thread Henry . Calzaretta
Alex, That's entirely possible..I will check into it. Why would going after it by IP address, http://172.16.111.103, work though? Thanks, Hank -Original Message- From: Alex deVries [mailto:[EMAIL PROTECTED] Sent: Tuesday, January 20, 2004 4:54 PM To: [EMAIL PROTECTED] Subject: Re: IP

Nagios - CPU and Memory monitoring?

2004-01-20 Thread Ranga Nathan
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: sudo

2004-01-20 Thread Alikhani
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

[Fwd: [SM-PLUGINS] change_passwd problem]

2004-01-20 Thread Alikhani
__ Inflex - installed on mailserver for domain @itrc.ac.ir Queries to: admin@ ---BeginMessage--- Hi I have little problems with the Change_passwd 3.1 plugin and SquirrelMail 1.4.1. I get this debug info and error message when I try to change password.

Re: sudo

2004-01-20 Thread Alikhani
Hi Richard I can solve the problem only admin need use this command :sudo ud and then everything will be OK. Thank you very much for your guidance . -by -Sophia Richard Higson wrote: On Tue, Jan 20, 2004 at 01:10:19PM +0330, Alikhani wrote: Date: Tue, 20 Jan 2004 13:10:19 +0330 From: Alikhani