Re: [CentOS] Kickstart help
>I have sort of an odd request for you today in regards to Kickstart >configuration. I have recently created a kickstart configuration file to >better standardize the configuration aspect of my server installations. Just a suggestion, but there's no point in doing a yum update in your script, just add a repo line and install anything newer than what's on the inhouse repo while doing the install. jlc ___ CentOS mailing list CentOS@centos.org http://lists.centos.org/mailman/listinfo/centos
Re: [CentOS] caching pipe?
On 2009-09-05, at 2:32 AM, Florin Andrei wrote: > Is it possible to add caching to a pipe? > > cat blah | in_RAM_cache_here -s SIZE | something else I beleive dd does what you want. > (*) - it's actually tccat, part of the transcode package, but the idea > is the same. Here's the actual command: > > n=14 > for i in `seq -w 1 ${n}`; do >echo "${i} out of ${n}" >tccat -i /dev/dvd -T 1,${i} > ch${i}.mpeg > done > sync > ls -lh tccat -i /dev/dvd -T 1,${i} | dd of=ch${i}.mpeg bs=1M will read 1 MiB blocks, one at a time from tccat then write it to the file. I'm fairly certain that it doesn't write any data until either there is no more data to read or it has read a complete block. Michael ___ CentOS mailing list CentOS@centos.org http://lists.centos.org/mailman/listinfo/centos
Re: [CentOS] localhost/PING is CRITICAL
> I've recently switched to the latest rt kernel > available from http://people.centos.org/hughesjr/kernel-rt > And one of the two problems I'm having with this new kernel > is that the logs have been flooded with nagios alerts > which indicate high percentage (50-60) of packet loss > when pinging localhost. The problem shows up several hours > after the system reboot. The problem also shows up with the latest kernel-rt-2.6.24.7-132 and seems to be triggered by scheduled cron jobs. That's probably the only time when this system might be under any significant load. Below are the relevant excerpts from /var/log/messages indicating when the system booted into which kernel and the first 10 ping alerts after system reboot. Aug 28 20:03:40 angara kernel: Linux version 2.6.24.7-65.el5rt.centos Aug 29 02:12:54 PING CRITICAL - Packet loss = 60%, RTA = 0.13 ms Aug 29 02:13:44 PING WARNING - Packet loss = 44%, RTA = 0.09 ms Aug 29 02:14:54 PING WARNING - Packet loss = 54%, RTA = 0.08 ms Aug 29 02:15:45 PING WARNING - Packet loss = 44%, RTA = 0.09 ms Aug 29 03:10:54 PING CRITICAL - Packet loss = 70%, RTA = 0.11 ms Aug 29 03:20:46 PING WARNING - Packet loss = 44%, RTA = 0.09 ms Aug 29 03:30:56 PING CRITICAL - Packet loss = 72%, RTA = 0.09 ms Aug 29 03:35:45 PING WARNING - Packet loss = 44%, RTA = 0.12 ms Aug 29 03:40:44 PING OK - Packet loss = 16%, RTA = 0.10 ms Aug 29 03:45:44 PING WARNING - Packet loss = 50%, RTA = 0.09 ms ... Aug 29 11:30:56 angara kernel: Linux version 2.6.24.7-65.el5rt.centos Aug 31 03:43:13 PING WARNING - Packet loss = 28%, RTA = 0.10 ms Aug 31 03:44:13 PING WARNING - Packet loss = 37%, RTA = 0.10 ms Aug 31 03:45:23 PING WARNING - Packet loss = 54%, RTA = 0.08 ms Aug 31 03:46:23 PING CRITICAL - Packet loss = 60%, RTA = 0.12 ms Aug 31 03:51:13 PING WARNING - Packet loss = 44%, RTA = 0.10 ms Aug 31 04:31:23 PING CRITICAL - Packet loss = 60%, RTA = 0.09 ms Aug 31 04:41:14 PING WARNING - Packet loss = 50%, RTA = 0.11 ms Aug 31 06:16:13 PING OK - Packet loss = 16%, RTA = 0.11 ms Aug 31 06:21:13 PING WARNING - Packet loss = 44%, RTA = 0.10 ms Aug 31 06:22:13 PING WARNING - Packet loss = 50%, RTA = 0.10 ms ... Sep 3 23:44:20 angara kernel: Linux version 2.6.24.7-132.el5.local Sep 5 04:19:53 PING WARNING - Packet loss = 50%, RTA = 0.14 ms Sep 5 04:21:01 PING CRITICAL - Packet loss = 60%, RTA = 0.10 ms Sep 5 04:21:51 PING WARNING - Packet loss = 28%, RTA = 0.12 ms Sep 5 04:22:56 PING WARNING - Packet loss = 50%, RTA = 0.11 ms Sep 5 04:28:01 PING CRITICAL - Packet loss = 80%, RTA = 0.11 ms Sep 5 04:32:53 PING WARNING - Packet loss = 44%, RTA = 0.10 ms Sep 5 04:37:51 PING OK - Packet loss = 16%, RTA = 0.12 ms Sep 5 04:42:51 PING WARNING - Packet loss = 50%, RTA = 0.11 ms Sep 5 04:44:02 PING CRITICAL - Packet loss = 60%, RTA = 0.09 ms Sep 5 04:45:01 PING CRITICAL - Packet loss = 70%, RTA = 0.10 ms ... When it happens the pattern of ping failures remains basically the same until the system reboots. # ping -n -c10 localhost PING localhost.localdomain (127.0.0.1) 56(84) bytes of data. 64 bytes from 127.0.0.1: icmp_seq=2 ttl=64 time=0.074 ms 64 bytes from 127.0.0.1: icmp_seq=4 ttl=64 time=0.075 ms 64 bytes from 127.0.0.1: icmp_seq=6 ttl=64 time=0.074 ms 64 bytes from 127.0.0.1: icmp_seq=8 ttl=64 time=0.097 ms 64 bytes from 127.0.0.1: icmp_seq=10 ttl=64 time=0.067 ms --- localhost.localdomain ping statistics --- 10 packets transmitted, 5 received, 50% packet loss, time 9004ms rtt min/avg/max/mdev = 0.067/0.077/0.097/0.012 ms Interestingly enough flood pings yeild much better results. # ping -nf -c1 localhost PING localhost.localdomain (127.0.0.1) 56(84) bytes of data. ... --- localhost.localdomain ping statistics --- 1 packets transmitted, 9993 received, 0% packet loss, time 646ms rtt min/avg/max/mdev = 0.019/0.025/0.119/0.010 ms, ipg/ewma 0.064/0.020 ms Any ideas or suggestions welcome. Thanks, Sasha ___ CentOS mailing list CentOS@centos.org http://lists.centos.org/mailman/listinfo/centos
[CentOS] Request for hpacucli output from people running HP Smart Array controllers
Hello all I'm gathering the output of the hpacucli program from as much configurations as possible. If you can find some free time for me, can you send me the output of: hpacucli ctrl all show detail hpacucli ctrl slot=1 show config hpacucli ctrl slot=1 array all show hpacucli ctrl slot=1 array A show hpacucli ctrl slot=1 physicaldrive all show hpacucli ctrl slot=1 physicaldrive 2I:1:1 show hpacucli ctrl slot=1 logicaldrive all show hpacucli ctrl slot=1 logicaldrive 1 show Replace the slot=, array, physicaldrive and logicaldrive entries with what matches your specific setups (if possible, for all slots, arrays, physical and logical drives). I need as much as possible, normal working configurations and exotic setups like failed drives, arrays in rebuilding or failed state, hot-spares, etc... Much appreciated! Thanks, Best regards, Glenn ___ CentOS mailing list CentOS@centos.org http://lists.centos.org/mailman/listinfo/centos
[CentOS] OT: Forum or mailing list for Bash-related questions?
Hi, The subject says it all. After a few years of writing scripts the quick and dirty way, I've decided to take the plunge and learn Bash correctly, using the O'Reilly Bash Cookbook. I'm currently looking for the right place to ask questions, but curiously enough, Google searches about "bash forum" result in nothing conclusive. I took a peek in the corresponding USENET newsgroup, but there seems to be close to no activity. Any suggestions for that? Cheers, Niki ___ CentOS mailing list CentOS@centos.org http://lists.centos.org/mailman/listinfo/centos
Re: [CentOS] OT: Forum or mailing list for Bash-related questions?
On 09/05/2009 08:43 AM, Niki Kovacs wrote: > Hi, > > The subject says it all. After a few years of writing scripts the quick > and dirty way, I've decided to take the plunge and learn Bash correctly, > using the O'Reilly Bash Cookbook. I'm currently looking for the right > place to ask questions, but curiously enough, Google searches about > "bash forum" result in nothing conclusive. I took a peek in the > corresponding USENET newsgroup, but there seems to be close to no activity. > > Any suggestions for that? Not sure about a mailing list or group ... but I thought I would post this resource. It is where I go when I want to find bash info: http://tldp.org/LDP/abs/html/ signature.asc Description: OpenPGP digital signature ___ CentOS mailing list CentOS@centos.org http://lists.centos.org/mailman/listinfo/centos
Re: [CentOS] OT: Forum or mailing list for Bash-related questions?
Johnny Hughes a écrit : > > Not sure about a mailing list or group ... but I thought I would post > this resource. It is where I go when I want to find bash info: > > http://tldp.org/LDP/abs/html/ This is the other resource I'm using besides the book. But I'm specifically looking for a place to ask questions when there's something I can't figure out with the documentation. ___ CentOS mailing list CentOS@centos.org http://lists.centos.org/mailman/listinfo/centos
[CentOS] CentOS-announce Digest, Vol 55, Issue 2
Send CentOS-announce mailing list submissions to centos-annou...@centos.org To subscribe or unsubscribe via the World Wide Web, visit http://lists.centos.org/mailman/listinfo/centos-announce or, via email, send a message with subject or body 'help' to centos-announce-requ...@centos.org You can reach the person managing the list at centos-announce-ow...@centos.org When replying, please edit your Subject line so it is more specific than "Re: Contents of CentOS-announce digest..." Today's Topics: 1. CESA-2009:1426 Important CentOS 3 i386openoffice.org - security update (Tru Huynh) 2. CESA-2009:1426 Important CentOS 3 x86_64 openoffice.org - security update (Tru Huynh) -- Message: 1 Date: Fri, 4 Sep 2009 18:48:04 +0200 From: Tru Huynh Subject: [CentOS-announce] CESA-2009:1426 Important CentOS 3 i386 openoffice.org - security update To: centos-annou...@centos.org Message-ID: <20090904164804.ga23...@sillage.bis.pasteur.fr> Content-Type: text/plain; charset="us-ascii" CentOS Errata and Security Advisory CESA-2009:1426 openoffice.org security update for CentOS 3 i386: https://rhn.redhat.com/errata/RHSA-2009-1426.html The following updated file has been uploaded and is currently syncing to the mirrors: i386: updates/i386/RPMS/openoffice.org-1.1.2-44.2.0.EL3.i386.rpm updates/i386/RPMS/openoffice.org-i18n-1.1.2-44.2.0.EL3.i386.rpm updates/i386/RPMS/openoffice.org-libs-1.1.2-44.2.0.EL3.i386.rpm source: updates/SRPMS/openoffice.org-1.1.2-44.2.0.EL3.src.rpm You may update your CentOS-3 i386 installations by running the command: yum update openoffice.org\* Tru -- Tru Huynh (mirrors, CentOS-3 i386/x86_64 Package Maintenance) http://pgp.mit.edu:11371/pks/lookup?op=get&search=0xBEFA581B -- next part -- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 189 bytes Desc: not available Url : http://lists.centos.org/pipermail/centos-announce/attachments/20090904/f6f9cf09/attachment-0001.bin -- Message: 2 Date: Fri, 4 Sep 2009 18:48:39 +0200 From: Tru Huynh Subject: [CentOS-announce] CESA-2009:1426 Important CentOS 3 x86_64 openoffice.org - security update To: centos-annou...@centos.org Message-ID: <20090904164839.gb23...@sillage.bis.pasteur.fr> Content-Type: text/plain; charset="us-ascii" CentOS Errata and Security Advisory CESA-2009:1426 openoffice.org security update for CentOS 3 x86_64: https://rhn.redhat.com/errata/RHSA-2009-1426.html The following updated file has been uploaded and is currently syncing to the mirrors: x86_64: updates/x86_64/RPMS/openoffice.org-1.1.2-44.2.0.EL3.i386.rpm updates/x86_64/RPMS/openoffice.org-i18n-1.1.2-44.2.0.EL3.i386.rpm updates/x86_64/RPMS/openoffice.org-libs-1.1.2-44.2.0.EL3.i386.rpm source: updates/SRPMS/openoffice.org-1.1.2-44.2.0.EL3.src.rpm You may update your CentOS-3 x86_64 installations by running the command: yum update openoffice.org\* Tru -- Tru Huynh (mirrors, CentOS-3 i386/x86_64 Package Maintenance) http://pgp.mit.edu:11371/pks/lookup?op=get&search=0xBEFA581B -- next part -- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 189 bytes Desc: not available Url : http://lists.centos.org/pipermail/centos-announce/attachments/20090904/310e0db1/attachment-0001.bin -- ___ CentOS-announce mailing list centos-annou...@centos.org http://lists.centos.org/mailman/listinfo/centos-announce End of CentOS-announce Digest, Vol 55, Issue 2 ** ___ CentOS mailing list CentOS@centos.org http://lists.centos.org/mailman/listinfo/centos
Re: [CentOS] OT: Forum or mailing list for Bash-related questions?
On Sat, Sep 05, 2009 at 03:43:11PM +0200, Niki Kovacs wrote: > > The subject says it all. After a few years of writing scripts the quick > and dirty way, I've decided to take the plunge and learn Bash correctly, > using the O'Reilly Bash Cookbook. I'm currently looking for the right > place to ask questions, but curiously enough, Google searches about > "bash forum" result in nothing conclusive. I took a peek in the > corresponding USENET newsgroup, but there seems to be close to no activity. I often see bash-specific questions in comp.unix.shell. --keith -- kkel...@speakeasy.net ___ CentOS mailing list CentOS@centos.org http://lists.centos.org/mailman/listinfo/centos
Re: [CentOS] OT: Forum or mailing list for Bash-related questions?
Hi, On Sat, Sep 5, 2009 at 09:43, Niki Kovacs wrote: > The subject says it all. After a few years of writing scripts the quick > and dirty way, I've decided to take the plunge and learn Bash correctly, > using the O'Reilly Bash Cookbook. I'm currently looking for the right > place to ask questions, but curiously enough, Google searches about > "bash forum" result in nothing conclusive. I took a peek in the > corresponding USENET newsgroup, but there seems to be close to no activity. > > Any suggestions for that? I would say I think this list is quite appropriate for that. In fact, we've seen far more off-topic discussion here than that... Not that I think bash is off-topic here, actually I would say most or at least a large part of users in this list are sysadmins and bash is an intrinsic part of our daily interactions with Linux, in this case, with CentOS... Cheers, Filipe ___ CentOS mailing list CentOS@centos.org http://lists.centos.org/mailman/listinfo/centos
Re: [CentOS] OT: Forum or mailing list for Bash-related questions?
Niki Kovacs wrote: > >> Not sure about a mailing list or group ... but I thought I would post >> this resource. It is where I go when I want to find bash info: >> >> http://tldp.org/LDP/abs/html/ > > This is the other resource I'm using besides the book. But I'm > specifically looking for a place to ask questions when there's something > I can't figure out with the documentation. I'm not quite sure I see the point of using esoteric bash features. There's a place for widely portable bourne-shell syntax, and a place for simple things that you can do with text substitutions and i/o redirection, but if you need more than that, why not just switch to perl or another more capable (and perhaps even more portable) language? -- Les Mikesell lesmikes...@gmail.com ___ CentOS mailing list CentOS@centos.org http://lists.centos.org/mailman/listinfo/centos
Re: [CentOS] drivers for 3G card
On Thu, Sep 3, 2009 at 11:29 PM, MOKRANI Rachid wrote: > > Hi, > > I'm looking drivers or some build rpms for use à 3G pcmcia card on my > laptop. > > OS : CentOS 5.3 with 2.6.18-128 kernel x86_64 > > My card is a Vodaphone model E3730 > > A wiki or any informations will be very appreciated. The kernel driver package for your device is now available from ELRepo ( http://elrepo.org ) in the testing repository (thanks to Alan Bartlett): http://elrepo.org/tiki/kmod-hso It would be great if you give it a try and report back with the result. Akemi ___ CentOS mailing list CentOS@centos.org http://lists.centos.org/mailman/listinfo/centos
[CentOS] wordpress on centos, rpm or source?
Hello, I'm looking for opinions here. Do people generally use wordpress via an rpm package, 2.8.3 which always informs me to upgrade, or via a source install? I'm looking to get it going for multiple domains, each having a separate blog. Thanks. Dave. ___ CentOS mailing list CentOS@centos.org http://lists.centos.org/mailman/listinfo/centos
Re: [CentOS] wordpress on centos, rpm or source?
Personally I always download the source. 1) I prefer to put it where I please. This will be especially true for you if your running multiple blogs and want to share the code as I do. 2) Updates sometimes require special handling. You don't want to drop an new version in automatically and have it require database updates that need to be done manually or via a script or control panel. 3) some updates of wordpress are not as stable as some would think. Tom Dave wrote: > Hello, > I'm looking for opinions here. Do people generally use wordpress via > an rpm package, 2.8.3 which always informs me to upgrade, or via a source > install? I'm looking to get it going for multiple domains, each having a > separate blog. > Thanks. > Dave. > > ___ > CentOS mailing list > CentOS@centos.org > http://lists.centos.org/mailman/listinfo/centos > ___ CentOS mailing list CentOS@centos.org http://lists.centos.org/mailman/listinfo/centos
[CentOS] libdirect - ok for two versions
For the latest update for xine, it requires: /usr/lib64/libdirect-1.0.so.0 I have /usr/lib64/libdirect-1.2.so.0.4.0 Can I have both sitting in the lib directory, just manually place the file there, without installing an older version of directfb (provides the lib)? Thank you, Ed ___ CentOS mailing list CentOS@centos.org http://lists.centos.org/mailman/listinfo/centos
Re: [CentOS] caching pipe?
Good suggestions, thanks. -- Florin Andrei http://florin.myip.org/ ___ CentOS mailing list CentOS@centos.org http://lists.centos.org/mailman/listinfo/centos