From Carl.Boberg at nrm.se Wed Aug 2 13:03:26 2006 From: Carl.Boberg at nrm.se (Carl Boberg) Date: Wed, 2 Aug 2006 15:03:26 +0200 Subject: Problems with csh In-Reply-To: <004e01c6b0a5$b6381920$0f0a650a@EUROPE.ROOT.PRI> Message-ID: <521A1817A68E5F4895A67C104512BF5F7FBAD2@GANDALF.nrm.se> Hi, I get result 0 on my RH9/FC4/RHEL3/RHEL4 boxes ... So I guess it could be local to your install. / Carl > -----Original Message----- > From: redhat-sysadmin-list-bounces at redhat.com > [mailto:redhat-sysadmin-list-bounces at redhat.com] On Behalf Of > Mark Waterhouse > Sent: den 26 juli 2006 13:22 > To: redhat-sysadmin-list at redhat.com > Subject: Re: Problems with csh > > Has anyone got any thoughts on this problem? > > ----- Original Message ----- > From: "Mark Waterhouse" > To: > Sent: Wednesday, July 12, 2006 5:09 PM > Subject: Problems with csh > > > > Hi all > > > > A user on our campus has discovered a small bug within csh > that I would > > like to share with the community; predominately to confirm > if this is a > > bug and, if it, to see what you all think. > > > > My user is trying to capture the exit status of csh when > running against a > > certain internal script. > > For the sake of completeness, I've created a very small > script which does > > nothing but echo a string. > > > > The script, called 'test', looks like this; > > [sysadmin at ns02 ~]$ cat test > > echo $status > > echo DFK > > echo $status > > > > On each machine that I tested this on (Centos/FC3/FC1), I > get an output of > > "1". > > On the FreeBSD, Solaris and SuSE boxes, I get the correct output. > > > > Do you think this is a bug? > > fwiw, I noticed that on the Centos/FCx/RHEL boxes, /bin/csh > is symlinked > > to /bin/tcsh. Ah....except that the same is true for SuSE. > > > > Any ideas greatly appreciated. > > > > Thanks > > Mark > > > > > > > > Centos 3.6 > > [sysadmin at ns02 sysadmin]$ csh > > [sysadmin at ns02 ~]$ csh -e test > > [sysadmin at ns02 ~]$ echo $status > > 1 > > > > Fedora Core 3 > > [root at webhost ~]$ csh > > [root at webhost ~]$ csh -e test > > [root at webhost ~]$ echo $status > > 1 > > > > Fedora Core 1 > > [mark at secure mark]$ csh > > [mark at secure ~]# csh -e test > > [mark at secure ~]# echo $status > > 1 > > > > FreeBSD 5.4-STABLE > >> csh > > %csh -e test > > 0 > > DFK > > 0 > > %echo $status > > 0 > > > > Solaris 2.6 (5.6) > > # csh > > noo-noo# csh -e test > > 0 > > DFK > > 0 > > noo-noo# echo $status > > 0 > > > > SuSE Enterprise Server 9 (x86_64) > > octopus % 24 : csh > > octopus % 21 : csh -e test > > 0 > > DFK > > 0 > > octopus % 22 : echo $status > > 0 > > > > -- > This message has been scanned for viruses and dangerous > content by DFK Systems Limited, and is believed to be clean. > To report this message as spam, please click on this link - > https://secure.dfk-systems.com/quarantine/spam.php?id=k6QBM0OO069635 > > -- > redhat-sysadmin-list mailing list > redhat-sysadmin-list at redhat.com > https://www.redhat.com/mailman/listinfo/redhat-sysadmin-list > From Carl.Boberg at nrm.se Wed Aug 2 13:09:27 2006 From: Carl.Boberg at nrm.se (Carl Boberg) Date: Wed, 2 Aug 2006 15:09:27 +0200 Subject: Problems with csh In-Reply-To: <521A1817A68E5F4895A67C104512BF5F7FBAD2@GANDALF.nrm.se> Message-ID: <521A1817A68E5F4895A67C104512BF5F7FBAD3@GANDALF.nrm.se> Er, When run with -e I get no output and when I echo $status I get null [root at mail ~]# csh -e test [root at mail ~]# echo $status [root at mail ~]# Without -e [root at mail ~]# csh test 0 DFK 0 [root at mail ~]# Hmm... / C > > Hi, > > I get result 0 on my RH9/FC4/RHEL3/RHEL4 boxes ... > So I guess it could be local to your install. > > / Carl > > > -----Original Message----- > > From: redhat-sysadmin-list-bounces at redhat.com > > [mailto:redhat-sysadmin-list-bounces at redhat.com] On Behalf Of Mark > > Waterhouse > > Sent: den 26 juli 2006 13:22 > > To: redhat-sysadmin-list at redhat.com > > Subject: Re: Problems with csh > > > > Has anyone got any thoughts on this problem? > > > > ----- Original Message ----- > > From: "Mark Waterhouse" > > To: > > Sent: Wednesday, July 12, 2006 5:09 PM > > Subject: Problems with csh > > > > > > > Hi all > > > > > > A user on our campus has discovered a small bug within csh > > that I would > > > like to share with the community; predominately to confirm > > if this is a > > > bug and, if it, to see what you all think. > > > > > > My user is trying to capture the exit status of csh when > > running against a > > > certain internal script. > > > For the sake of completeness, I've created a very small > > script which does > > > nothing but echo a string. > > > > > > The script, called 'test', looks like this; > > > [sysadmin at ns02 ~]$ cat test > > > echo $status > > > echo DFK > > > echo $status > > > > > > On each machine that I tested this on (Centos/FC3/FC1), I > > get an output of > > > "1". > > > On the FreeBSD, Solaris and SuSE boxes, I get the correct output. > > > > > > Do you think this is a bug? > > > fwiw, I noticed that on the Centos/FCx/RHEL boxes, /bin/csh > > is symlinked > > > to /bin/tcsh. Ah....except that the same is true for SuSE. > > > > > > Any ideas greatly appreciated. > > > > > > Thanks > > > Mark > > > > > > > > > > > > Centos 3.6 > > > [sysadmin at ns02 sysadmin]$ csh > > > [sysadmin at ns02 ~]$ csh -e test > > > [sysadmin at ns02 ~]$ echo $status > > > 1 > > > > > > Fedora Core 3 > > > [root at webhost ~]$ csh > > > [root at webhost ~]$ csh -e test > > > [root at webhost ~]$ echo $status > > > 1 > > > > > > Fedora Core 1 > > > [mark at secure mark]$ csh > > > [mark at secure ~]# csh -e test > > > [mark at secure ~]# echo $status > > > 1 > > > > > > FreeBSD 5.4-STABLE > > >> csh > > > %csh -e test > > > 0 > > > DFK > > > 0 > > > %echo $status > > > 0 > > > > > > Solaris 2.6 (5.6) > > > # csh > > > noo-noo# csh -e test > > > 0 > > > DFK > > > 0 > > > noo-noo# echo $status > > > 0 > > > > > > SuSE Enterprise Server 9 (x86_64) > > > octopus % 24 : csh > > > octopus % 21 : csh -e test > > > 0 > > > DFK > > > 0 > > > octopus % 22 : echo $status > > > 0 > > > > > > > > -- > > This message has been scanned for viruses and dangerous > content by DFK > > Systems Limited, and is believed to be clean. > > To report this message as spam, please click on this link - > > https://secure.dfk-systems.com/quarantine/spam.php?id=k6QBM0OO069635 > > > > -- > > redhat-sysadmin-list mailing list > > redhat-sysadmin-list at redhat.com > > https://www.redhat.com/mailman/listinfo/redhat-sysadmin-list > > > > -- > redhat-sysadmin-list mailing list > redhat-sysadmin-list at redhat.com > https://www.redhat.com/mailman/listinfo/redhat-sysadmin-list > From Carl.Boberg at nrm.se Wed Aug 2 13:11:02 2006 From: Carl.Boberg at nrm.se (Carl Boberg) Date: Wed, 2 Aug 2006 15:11:02 +0200 Subject: Problems with csh In-Reply-To: <521A1817A68E5F4895A67C104512BF5F7FBAD3@GANDALF.nrm.se> Message-ID: <521A1817A68E5F4895A67C104512BF5F7FBAD4@GANDALF.nrm.se> Sorry linebreaks dissapperared.. > Er, > > When run with -e I get no output and when I echo $status I > get null [root at mail ~]# csh -e test [root at mail ~]# echo $status [root at mail ~]# > > Without -e > [root at mail ~]# csh test > 0 > DFK > 0 > [root at mail ~]# > > Hmm... > > / C > > > > > Hi, > > > > I get result 0 on my RH9/FC4/RHEL3/RHEL4 boxes ... > > So I guess it could be local to your install. > > > > / Carl > > > > > -----Original Message----- > > > From: redhat-sysadmin-list-bounces at redhat.com > > > [mailto:redhat-sysadmin-list-bounces at redhat.com] On > Behalf Of Mark > > > Waterhouse > > > Sent: den 26 juli 2006 13:22 > > > To: redhat-sysadmin-list at redhat.com > > > Subject: Re: Problems with csh > > > > > > Has anyone got any thoughts on this problem? > > > > > > ----- Original Message ----- > > > From: "Mark Waterhouse" > > > To: > > > Sent: Wednesday, July 12, 2006 5:09 PM > > > Subject: Problems with csh > > > > > > > > > > Hi all > > > > > > > > A user on our campus has discovered a small bug within csh > > > that I would > > > > like to share with the community; predominately to confirm > > > if this is a > > > > bug and, if it, to see what you all think. > > > > > > > > My user is trying to capture the exit status of csh when > > > running against a > > > > certain internal script. > > > > For the sake of completeness, I've created a very small > > > script which does > > > > nothing but echo a string. > > > > > > > > The script, called 'test', looks like this; > > > > [sysadmin at ns02 ~]$ cat test > > > > echo $status > > > > echo DFK > > > > echo $status > > > > > > > > On each machine that I tested this on (Centos/FC3/FC1), I > > > get an output of > > > > "1". > > > > On the FreeBSD, Solaris and SuSE boxes, I get the > correct output. > > > > > > > > Do you think this is a bug? > > > > fwiw, I noticed that on the Centos/FCx/RHEL boxes, /bin/csh > > > is symlinked > > > > to /bin/tcsh. Ah....except that the same is true for SuSE. > > > > > > > > Any ideas greatly appreciated. > > > > > > > > Thanks > > > > Mark > > > > > > > > > > > > > > > > Centos 3.6 > > > > [sysadmin at ns02 sysadmin]$ csh > > > > [sysadmin at ns02 ~]$ csh -e test > > > > [sysadmin at ns02 ~]$ echo $status > > > > 1 > > > > > > > > Fedora Core 3 > > > > [root at webhost ~]$ csh > > > > [root at webhost ~]$ csh -e test > > > > [root at webhost ~]$ echo $status > > > > 1 > > > > > > > > Fedora Core 1 > > > > [mark at secure mark]$ csh > > > > [mark at secure ~]# csh -e test > > > > [mark at secure ~]# echo $status > > > > 1 > > > > > > > > FreeBSD 5.4-STABLE > > > >> csh > > > > %csh -e test > > > > 0 > > > > DFK > > > > 0 > > > > %echo $status > > > > 0 > > > > > > > > Solaris 2.6 (5.6) > > > > # csh > > > > noo-noo# csh -e test > > > > 0 > > > > DFK > > > > 0 > > > > noo-noo# echo $status > > > > 0 > > > > > > > > SuSE Enterprise Server 9 (x86_64) > > > > octopus % 24 : csh > > > > octopus % 21 : csh -e test > > > > 0 > > > > DFK > > > > 0 > > > > octopus % 22 : echo $status > > > > 0 > > > > > > > > > > > > -- > > > This message has been scanned for viruses and dangerous > > content by DFK > > > Systems Limited, and is believed to be clean. > > > To report this message as spam, please click on this link - > > > > https://secure.dfk-systems.com/quarantine/spam.php?id=k6QBM0OO069635 > > > > > > -- > > > redhat-sysadmin-list mailing list > > > redhat-sysadmin-list at redhat.com > > > https://www.redhat.com/mailman/listinfo/redhat-sysadmin-list > > > > > > > -- > > redhat-sysadmin-list mailing list > > redhat-sysadmin-list at redhat.com > > https://www.redhat.com/mailman/listinfo/redhat-sysadmin-list > > > > -- > redhat-sysadmin-list mailing list > redhat-sysadmin-list at redhat.com > https://www.redhat.com/mailman/listinfo/redhat-sysadmin-list > From CHort at caed.uscourts.gov Wed Aug 2 23:13:25 2006 From: CHort at caed.uscourts.gov (CHort at caed.uscourts.gov) Date: Wed, 2 Aug 2006 16:13:25 -0700 Subject: Cheree Hort/CAED/09/USCOURTS is out of the office. Message-ID: I will be out of the office starting 08/02/2006 and will not return until 08/08/2006. I will respond to your message when I return. ;o> From nanfang.xun at sunnexchina.com Fri Aug 4 00:37:00 2006 From: nanfang.xun at sunnexchina.com (Nanfang.Xun) Date: Fri, 04 Aug 2006 08:37:00 +0800 Subject: redhat-sysadmin-list mailing list submissions Message-ID: <1154651821.3512.18.camel@ns.xunting.net> From knabet at 4j.lane.edu Thu Aug 10 23:42:53 2006 From: knabet at 4j.lane.edu (Troy Knabe) Date: Thu, 10 Aug 2006 16:42:53 -0700 Subject: Red Hat 4.0 U3 LSI Logic Raid Controller Message-ID: <44DBC47D.3070104@4j.lane.edu> I have had problems booting my server (Sun x4100) running Red hat 4.0 U3. It hangs on boot 4x out of 5. Once it boots it runs great. I read the below post and it seemed similar to my issue. But I was wondering if anyone else was experiencing this type of issue, or know if there is an upcoming patch that I should watch for. http://www.vmware.com/community/message.jspa?messageID=441131 Thanks -Troy From mark at dfk-systems.com Thu Aug 31 08:25:58 2006 From: mark at dfk-systems.com (Mark Waterhouse) Date: Thu, 31 Aug 2006 09:25:58 +0100 Subject: Problems with csh References: <521A1817A68E5F4895A67C104512BF5F7FBAD3@GANDALF.nrm.se> Message-ID: <006301c6ccd7$168ad4f0$000a650a@EUROPE.ROOT.PRI> Hi Carl Can you confirm which OS you tried this on (cat /etc/redhat-release or equivalent)? Could you also let me know which csh you are using (rpm -qf /bin/csh). Thanks Mark ----- Original Message ----- From: "Carl Boberg" To: Sent: Wednesday, August 02, 2006 2:09 PM Subject: RE: Problems with csh > Er, > > When run with -e I get no output and when I echo $status I get null > [root at mail ~]# csh -e test > [root at mail ~]# echo $status > > [root at mail ~]# > > Without -e > [root at mail ~]# csh test > 0 > DFK > 0 > [root at mail ~]# > > Hmm... > > / C > >> >> Hi, >> >> I get result 0 on my RH9/FC4/RHEL3/RHEL4 boxes ... >> So I guess it could be local to your install. >> >> / Carl >> >> > -----Original Message----- >> > From: redhat-sysadmin-list-bounces at redhat.com >> > [mailto:redhat-sysadmin-list-bounces at redhat.com] On Behalf Of Mark >> > Waterhouse >> > Sent: den 26 juli 2006 13:22 >> > To: redhat-sysadmin-list at redhat.com >> > Subject: Re: Problems with csh >> > >> > Has anyone got any thoughts on this problem? >> > >> > ----- Original Message ----- >> > From: "Mark Waterhouse" >> > To: >> > Sent: Wednesday, July 12, 2006 5:09 PM >> > Subject: Problems with csh >> > >> > >> > > Hi all >> > > >> > > A user on our campus has discovered a small bug within csh >> > that I would >> > > like to share with the community; predominately to confirm >> > if this is a >> > > bug and, if it, to see what you all think. >> > > >> > > My user is trying to capture the exit status of csh when >> > running against a >> > > certain internal script. >> > > For the sake of completeness, I've created a very small >> > script which does >> > > nothing but echo a string. >> > > >> > > The script, called 'test', looks like this; >> > > [sysadmin at ns02 ~]$ cat test >> > > echo $status >> > > echo DFK >> > > echo $status >> > > >> > > On each machine that I tested this on (Centos/FC3/FC1), I >> > get an output of >> > > "1". >> > > On the FreeBSD, Solaris and SuSE boxes, I get the correct output. >> > > >> > > Do you think this is a bug? >> > > fwiw, I noticed that on the Centos/FCx/RHEL boxes, /bin/csh >> > is symlinked >> > > to /bin/tcsh. Ah....except that the same is true for SuSE. >> > > >> > > Any ideas greatly appreciated. >> > > >> > > Thanks >> > > Mark >> > > >> > > >> > > >> > > Centos 3.6 >> > > [sysadmin at ns02 sysadmin]$ csh >> > > [sysadmin at ns02 ~]$ csh -e test >> > > [sysadmin at ns02 ~]$ echo $status >> > > 1 >> > > >> > > Fedora Core 3 >> > > [root at webhost ~]$ csh >> > > [root at webhost ~]$ csh -e test >> > > [root at webhost ~]$ echo $status >> > > 1 >> > > >> > > Fedora Core 1 >> > > [mark at secure mark]$ csh >> > > [mark at secure ~]# csh -e test >> > > [mark at secure ~]# echo $status >> > > 1 >> > > >> > > FreeBSD 5.4-STABLE >> > >> csh >> > > %csh -e test >> > > 0 >> > > DFK >> > > 0 >> > > %echo $status >> > > 0 >> > > >> > > Solaris 2.6 (5.6) >> > > # csh >> > > noo-noo# csh -e test >> > > 0 >> > > DFK >> > > 0 >> > > noo-noo# echo $status >> > > 0 >> > > >> > > SuSE Enterprise Server 9 (x86_64) >> > > octopus % 24 : csh >> > > octopus % 21 : csh -e test >> > > 0 >> > > DFK >> > > 0 >> > > octopus % 22 : echo $status >> > > 0 >> > >> > >> > >> > -- >> > This message has been scanned for viruses and dangerous >> content by DFK >> > Systems Limited, and is believed to be clean. >> > To report this message as spam, please click on this link - >> > https://secure.dfk-systems.com/quarantine/spam.php?id=k6QBM0OO069635 >> > >> > -- >> > redhat-sysadmin-list mailing list >> > redhat-sysadmin-list at redhat.com >> > https://www.redhat.com/mailman/listinfo/redhat-sysadmin-list >> > >> >> -- >> redhat-sysadmin-list mailing list >> redhat-sysadmin-list at redhat.com >> https://www.redhat.com/mailman/listinfo/redhat-sysadmin-list >> > > -- > redhat-sysadmin-list mailing list > redhat-sysadmin-list at redhat.com > https://www.redhat.com/mailman/listinfo/redhat-sysadmin-list > > > -- > This message has been scanned for viruses and dangerous content by DFK > Systems Limited, and is believed to be clean. > To report this message as spam, please click on this link - > https://secure.dfk-systems.com/quarantine/spam.php?id=k72D9brj050878 > > -- This message has been scanned for viruses and dangerous content by DFK Systems Limited, and is believed to be clean. To report this message as spam, please click on this link - https://secure.dfk-systems.com/quarantine/spam.php?id=k7V8Q1xr027123 From admin.cluster at gmail.com Thu Aug 31 13:53:45 2006 From: admin.cluster at gmail.com (Anthony) Date: Thu, 31 Aug 2006 15:53:45 +0200 Subject: php4-xslt package??? Message-ID: <44F6E9E9.5070703@gmail.com> Hello, i am unable to find the php4-xslt package for Red Hat Enterprise Linux 4 AS. any help? From pc37 at utk.edu Thu Aug 31 13:57:09 2006 From: pc37 at utk.edu (Paul Cummins) Date: Thu, 31 Aug 2006 09:57:09 -0400 Subject: php4-xslt package??? In-Reply-To: <44F6E9E9.5070703@gmail.com> References: <44F6E9E9.5070703@gmail.com> Message-ID: <44F6EAB5.2060400@utk.edu> They are switching from one kind in php4 to another in php5 and it is also different between php4.1 and 4.4 I'll look for it. Paul Anthony wrote: > Hello, > > i am unable to find the php4-xslt package for Red Hat Enterprise Linux 4 > AS. > > any help? > > > -- > redhat-sysadmin-list mailing list > redhat-sysadmin-list at redhat.com > https://www.redhat.com/mailman/listinfo/redhat-sysadmin-list From pc37 at utk.edu Thu Aug 31 14:01:00 2006 From: pc37 at utk.edu (Paul Cummins) Date: Thu, 31 Aug 2006 10:01:00 -0400 Subject: php4-xslt package??? In-Reply-To: <44F6EAB5.2060400@utk.edu> References: <44F6E9E9.5070703@gmail.com> <44F6EAB5.2060400@utk.edu> Message-ID: <44F6EB9C.5000007@utk.edu> I'm sorry, I was racing through my mail and thought this was someone in another dept. I've looked for it before and really am confused about it. We do not compile PHP here as we use the one in RHEL4 and half the references say to use sabletron and half say to use libxslt. So I don't know. (yet!) Paul UTK Library Paul Cummins wrote: > They are switching from one kind in php4 to another in php5 and it is > also different between php4.1 and 4.4 > > I'll look for it. > > Paul > > Anthony wrote: >> Hello, >> >> i am unable to find the php4-xslt package for Red Hat Enterprise Linux >> 4 AS. >> >> any help? >> >> >> -- >> redhat-sysadmin-list mailing list >> redhat-sysadmin-list at redhat.com >> https://www.redhat.com/mailman/listinfo/redhat-sysadmin-list > > From CHort at caed.uscourts.gov Thu Aug 31 20:07:39 2006 From: CHort at caed.uscourts.gov (CHort at caed.uscourts.gov) Date: Thu, 31 Aug 2006 13:07:39 -0700 Subject: Cheree Hort/CAED/09/USCOURTS is out of the office. Message-ID: I will be out of the office starting Thu 08/31/2006 and will not return until Tue 09/05/2006. I will respond to your message when I return. ;o>