Re: [CentOS] What is writing to my filesystem

2009-04-10 Thread Alexander Georgiev
2009/4/10  :
> I have a CentOS 5.2 box that every few months runs out of drivespace on
> its root filesystem. Last time I manually searched and deleted some big
> files, but don't remember what they were or what wrote to them. The
> applications I'm aware of on the box don't write to /.
>

I have a Centos 3 system, which has its /boot in the / filesystem, and
after several kernel upgrades it gets full, so I have to deinstall old
kernels.
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] What is writing to my filesystem

2009-04-10 Thread Anne Wilson
On Friday 10 April 2009 08:11:32 Alexander Georgiev wrote:
> 2009/4/10  :
> > I have a CentOS 5.2 box that every few months runs out of drivespace on
> > its root filesystem. Last time I manually searched and deleted some big
> > files, but don't remember what they were or what wrote to them. The
> > applications I'm aware of on the box don't write to /.
>
> I have a Centos 3 system, which has its /boot in the / filesystem, and
> after several kernel upgrades it gets full, so I have to deinstall old
> kernels.

Do these systems run 24/7?  If they don't, the housekeeping jobs will be 
missed unless anacron is running them.  Certainly I have been running CentOS 
since 5.1 and have never seen this problem.

Anne
-- 
New to KDE4? - get help from http://userbase.kde.org
Just found a cool new feature?  Add it to UserBase


signature.asc
Description: This is a digitally signed message part.
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] centos 5.3 upgrade and duplicate processes running

2009-04-10 Thread Kai Schaetzl
You have a habit of reasking your questions again and again. Please stop 
this!

Kai

-- 
Kai Schätzl, Berlin, Germany
Get your web at Conactive Internet Services: http://www.conactive.com



___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] truecrypt 6.1a

2009-04-10 Thread Kévin COUSIN
I did it on Fedora 10, and it was OK (I made a tutorial on my website (in 
french) http://www.tuxalafenetre.net/index.php/Installation_de_TrueCrypt):

cd
mkdir Sources
cd Sources
wget 
http://freefr.dl.sourceforge.net/sourceforge/wxwindows/wxWidgets-2.8.9.tar.gz
wget 
http://www.truecrypt.org/downloads/transient/0facc88053/TrueCrypt%206.1a%20Source.tar.gz
sudo tar -zxvf wxWidgets-2.8.9.tar.gz -C /usr/src/
tar -zxvf TrueCrypt\ 6.1a\ Source.tar.gz

cd ~/Sources/truecrypt-6.1a-source/
wget ftp://ftp.rsasecurity.com/pub/pkcs/pkcs-11/v2-20/pkcs11.h
wget ftp://ftp.rsasecurity.com/pub/pkcs/pkcs-11/v2-20/pkcs11t.h
wget ftp://ftp.rsasecurity.com/pub/pkcs/pkcs-11/v2-20/pkcs11f.h
make WX_ROOT=/usr/src/wxWidgets-2.8.9 wxbuild
sudo cp wxrelease/wx-config /usr/bin/
make

The binary is in the Main directory.

Le mercredi 08 avril 2009 21:47:50, Roger Wells a écrit :
> Benjamin Karhan wrote:
> > A little birdy told me that Roger Wells said:
> >
> > ] thanks again.
> > ] I installed wxWidgets 2.8.10 without apparent incident. I'll check
> > ] around to see if there
> > ] is a problem there.
> >
> > i recompiled truecypt again (just to make sure it still works fine...
> >   it did)... anyways, just FYI i pass the following to configure in
> >   my package build of wxWidgets:
> >
> > --enable-unicode --with-motif=no --with-gtk=yes
>
> these arguments to ./configure seem to be key. I had just built it with
> "--with-x11"
> "--with-gtk" like their install-gtk.txt file didn't get it done either.
> Only after pasting your flags (above)
> making, and installing wxWidgets would truecrypt compile & link.
>
> Thank you very much.
>
> > i suppose i should upgrade to 2.8.10... must be getting lazy...
> >   i'll let you know if i run into problems with 2.8.10 itself...
> >
> > B. Karhan
> > si...@pop.psu.edu
> > PRI/SSRI Unix Administrator
> > ___
> > CentOS mailing list
> > CentOS@centos.org
> > http://lists.centos.org/mailman/listinfo/centos

-- 
Regards


COUSIN Kevin
Linux Administrator

Global Service Provider
75017 PARIS
FRANCE
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] powernow-k8 in newer centosplus kernel

2009-04-10 Thread Kai Schaetzl
Mark Pryor wrote on Thu, 9 Apr 2009 22:39:53 -0700 (PDT):

> When I update to the newer xx-128.1.6 centosplus kernel all the throttling
> stops and the box runs at highest speed.

FYI: It works like before with the normal kernels, no problems.

Kai

-- 
Kai Schätzl, Berlin, Germany
Get your web at Conactive Internet Services: http://www.conactive.com



___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] What is writing to my filesystem

2009-04-10 Thread John Doe

From: "jcarriz...@crutchfield.com" 
> I have a CentOS 5.2 box that every few months runs out of drivespace on
> its root filesystem. Last time I manually searched and deleted some big
> files, but don't remember what they were or what wrote to them. The
> applications I'm aware of on the box don't write to /. 
> Is there a way to find the files that get written to the most, or grow
> the most over time? Doing a df gives me a snapshot, but it seems clunky
> to keep track of the diff on that output over time. I can then see what
> processes write to them. Any other ideas on how to investigate this are
> welcome.

Do you use logrotate?
Do you use logrotate's compression?

Maybe use some kind of snapshots, like:

#!/bin/bash
find /var -type f -printf "%k %p\n" > /tmp/usedspace.new
if [ -f /tmp/usedspace.old ]; then
  cat /tmp/usedspace.old | while read LINE
do
  set $LINE
  OLDSIZE=$1
  OLDFILE=$2
  NEWSIZE=`grep "$OLDFILE\$" /tmp/usedspace.new | cut -d " " -f1`
  if [ -n "$NEWSIZE" -a "$OLDSIZE" != "$NEWSIZE" ]; then
echo "$OLDFILE: $OLDSIZE => $NEWSIZE"
  fi
done
fi
mv -f /tmp/usedspace.new /tmp/usedspace.old

JD


  

___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


[CentOS] wifi card shows in device manager , but cant configure wifi

2009-04-10 Thread sumit agarwal
hi ,

i just finished installing Cent OS 5.2 x64 on my thankpad
my hardware list shows the following

Atheros Communications Inc.
AR5212 802.11abg NIC

but when im trying to set up wireless network i cannot find the appropriate
wifi card.. when adding wifi connection
pls help

many thanks,
Sumit.
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] Raid1 on CentOS 5.x 64bit

2009-04-10 Thread Fabian Arrotin
Matt wrote:
> Does anyone know of a howto on setting up raid1 on CentOS 5.x 64 bit?
> 
hmmm, the same way as for i386 ? ...
You can do that during setup (with anaconda)
You can also do that after machine is installed, but that's a bit tricky

-- 
--
Fabian Arrotin
  idea=`grep -i clue /dev/brain`
  test -z "$idea" && echo "sorry, init 6 in progress" || sh ./answer.sh
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] powernow-k8 in newer centosplus kernel

2009-04-10 Thread Karanbir Singh
Mark Pryor wrote:
> Using kernel:
> 2.6.18-92.1.13.el5.centos.plus
> the cpu throttling works as desired (see 2 traces below)
...
> When I update to the newer xx-128.1.6 centosplus kernel all the throttling 
> stops and the box runs at highest speed.

This is an issue that came up in the early 5.2 days, and has been 
recurring since. I lost cpuspeed control on my desktop at home as well ( 
amdx24800/m2n) with the kernel update. Have not started digging into 
this, but the last time I did upstream blamed it on badly done acpi code 
in the system BIOS. It *should* now be possible to blacklist the 
powernow-k8.ko code and let the kernel fallback to using the generic 
acpi layer again. YMMV.

-- 
Karanbir Singh : http://www.karan.org/  : 2522...@icq
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] Segmentation fault using flash-plugin under CentOS 5.3

2009-04-10 Thread carlopmart

carlopmart wrote:

Hi all

 I have a very strange problem on my CentOS 5.3 laptop. I have installed 
latest firefox version from updates repository (3.0.7) with flash-plugin 
downloaded from adobe website. When i open firefox and i need to access 
to some web site with flash content, firefox crash with this message:


 /usr/lib/firefox-3.0.7/run-mozilla.sh: line 131:  9133 Segmentation 
fault  "$prog" ${1+"$@"}


 Problem appears with versions 3.0.5 and 3.0.6 too. On the other hand, I 
have another laptop installed with RHEL 5.3 with firefox and 
flash-plugin (but this flash-plugin is installed from redhat repository 
- rhn) and this problem doesn't appears ...


 Where is the problem?? Maybe is it a bug with firefox under CentOS only??

 Thanks.

Please any hits?? I have attached strace output using this command: "strace 
firefox http://www.nvidia.com";


many thanks.

--
CL Martinez
carlopmart {at} gmail {d0t} com
execve("/usr/bin/firefox", ["firefox", "http://www.nvidia.com";], [/* 33 vars 
*/]) = 0
brk(0)  = 0x8732000
access("/etc/ld.so.preload", R_OK)  = -1 ENOENT (No such file or directory)
open("/etc/ld.so.cache", O_RDONLY)  = 3
fstat64(3, {st_mode=S_IFREG|0644, st_size=36237, ...}) = 0
mmap2(NULL, 36237, PROT_READ, MAP_PRIVATE, 3, 0) = 0xb7fc5000
close(3)= 0
open("/lib/libtermcap.so.2", O_RDONLY)  = 3
read(3, 
"\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0\320\352;\0004\0\0\0"..., 512) 
= 512
fstat64(3, {st_mode=S_IFREG|0755, st_size=13084, ...}) = 0
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 
0xb7fc4000
mmap2(0x3be000, 14568, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 
0x3be000
mmap2(0x3c1000, 4096, PROT_READ|PROT_WRITE, 
MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2) = 0x3c1000
close(3)= 0
open("/lib/libdl.so.2", O_RDONLY)   = 3
read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0P\372:\0004\0\0\0"..., 
512) = 512
fstat64(3, {st_mode=S_IFREG|0755, st_size=16428, ...}) = 0
mmap2(0x3af000, 12408, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 
0x3af000
mmap2(0x3b1000, 8192, PROT_READ|PROT_WRITE, 
MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x1) = 0x3b1000
close(3)= 0
open("/lib/libc.so.6", O_RDONLY)= 3
read(3, 
"\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0\320\357'\0004\0\0\0"..., 512) 
= 512
fstat64(3, {st_mode=S_IFREG|0755, st_size=1606808, ...}) = 0
mmap2(0x269000, 1324452, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) 
= 0x269000
mmap2(0x3a7000, 12288, PROT_READ|PROT_WRITE, 
MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x13e) = 0x3a7000
mmap2(0x3aa000, 9636, PROT_READ|PROT_WRITE, 
MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x3aa000
close(3)= 0
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 
0xb7fc3000
set_thread_area({entry_number:-1 -> 6, base_addr:0xb7fc36c0, limit:1048575, 
seg_32bit:1, contents:0, read_exec_only:0, limit_in_pages:1, seg_not_present:0, 
useable:1}) = 0
mprotect(0x3b1000, 4096, PROT_READ) = 0
mprotect(0x3a7000, 8192, PROT_READ) = 0
mprotect(0x265000, 4096, PROT_READ) = 0
munmap(0xb7fc5000, 36237)   = 0
rt_sigprocmask(SIG_BLOCK, NULL, [], 8)  = 0
open("/dev/tty", O_RDWR|O_NONBLOCK|O_LARGEFILE) = 3
close(3)= 0
brk(0)  = 0x8732000
brk(0x8753000)  = 0x8753000
open("/usr/lib/locale/locale-archive", O_RDONLY|O_LARGEFILE) = 3
fstat64(3, {st_mode=S_IFREG|0644, st_size=56455296, ...}) = 0
mmap2(NULL, 2097152, PROT_READ, MAP_PRIVATE, 3, 0) = 0xb7dc3000
close(3)= 0
getuid32()  = 1000
getgid32()  = 10
geteuid32() = 1000
getegid32() = 10
rt_sigprocmask(SIG_BLOCK, NULL, [], 8)  = 0
time(NULL)  = 1239362175
open("/proc/meminfo", O_RDONLY) = 3
fstat64(3, {st_mode=S_IFREG|0444, st_size=0, ...}) = 0
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 
0xb7fcd000
read(3, "MemTotal:  3098440 kB\nMemFre"..., 4096) = 771
close(3)= 0
munmap(0xb7fcd000, 4096)= 0
rt_sigaction(SIGCHLD, {SIG_DFL, [], 0}, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGCHLD, {SIG_DFL, [], 0}, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGINT, {SIG_DFL, [], 0}, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGINT, {SIG_DFL, [], 0}, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGQUIT, {SIG_DFL, [], 0}, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGQUIT, {SIG_DFL, [], 0}, {SIG_DFL, [], 0}, 8) = 0
rt_sigprocmask(SIG_BLOCK, NULL, [], 8)  = 0
rt_sigaction(SIGQUIT, {SIG_IGN, [], 0}, {SIG_DFL, [], 0}, 8) = 0
uname({sys="Linux", node="silmaril.hpulabs.org", ...}) = 0
stat64("/home/carlos", {st_mode=S_IFDIR|0700, st_size=4096, ...

Re: [CentOS] mock %post(pam) failure

2009-04-10 Thread Fabian Arrotin
Stuart Jansen wrote:
> On Thu, 2009-04-09 at 16:54 -0700, Bill Campbell wrote:
>> On Thu, Apr 09, 2009, Stuart Jansen wrote:
>>> I recently upgraded an internal build server from C5.2 to C5.3 and now
>>> I'm experiencing problems initializing the mock buildroot. Specifically,
>>> I'm getting the following error:
>>>
>>> --
>>> /var/tmp/rpm-tmp.77062: line 6: cat: command not found
>>> /var/tmp/rpm-tmp.77062: line 7: rm: command not found
>>> /var/tmp/rpm-tmp.77062: line 22: install: command not found
>>> /var/tmp/rpm-tmp.77062: line 25: install: command not found
>>> error: %post(pam-0.99.6.2-4.el5.i386) scriptlet failed, exit status 127
>> This looks like the PATH environment variable is not set properly
>> in the RPM build script (or your /bin/ directory is missing which
>> would cause severe heartburn :-).
> 
> Except that isn't _my_ RPM. I'm trying to build a python package. This
> is happening during the initial phase when mock creates a build chroot
> by yum installing required build RPMs.
> 

*ack*

Same thing here when trying to initialize the buildroot with `mock init 
-r centos-5-i386.cfg --debug`

/var/tmp/rpm-tmp.15029: line 6: cat: command not found
/var/tmp/rpm-tmp.15029: line 7: rm: command not found
/var/tmp/rpm-tmp.15029: line 22: install: command not found
/var/tmp/rpm-tmp.15029: line 25: install: command not found
error: %post(pam-0.99.6.2-4.el5.i386) scriptlet failed, exit status 127

But that doesn't happen with x86_64 though .. To be investigated


-- 
--
Fabian Arrotin
  idea=`grep -i clue /dev/brain`
  test -z "$idea" && echo "sorry, init 6 in progress" || sh ./answer.sh
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] truecrypt 6.1a

2009-04-10 Thread Roger Wells


Kévin COUSIN wrote:
> I did it on Fedora 10, and it was OK (I made a tutorial on my website (in 
> french) http://www.tuxalafenetre.net/index.php/Installation_de_TrueCrypt):
>
> cd
> mkdir Sources
> cd Sources
> wget 
> http://freefr.dl.sourceforge.net/sourceforge/wxwindows/wxWidgets-2.8.9.tar.gz
> wget 
> http://www.truecrypt.org/downloads/transient/0facc88053/TrueCrypt%206.1a%20Source.tar.gz
> sudo tar -zxvf wxWidgets-2.8.9.tar.gz -C /usr/src/
> tar -zxvf TrueCrypt\ 6.1a\ Source.tar.gz
>
> cd ~/Sources/truecrypt-6.1a-source/
> wget ftp://ftp.rsasecurity.com/pub/pkcs/pkcs-11/v2-20/pkcs11.h
> wget ftp://ftp.rsasecurity.com/pub/pkcs/pkcs-11/v2-20/pkcs11t.h
> wget ftp://ftp.rsasecurity.com/pub/pkcs/pkcs-11/v2-20/pkcs11f.h
> make WX_ROOT=/usr/src/wxWidgets-2.8.9 wxbuild
> sudo cp wxrelease/wx-config /usr/bin/
> make
>
> The binary is in the Main directory.
>
> Le mercredi 08 avril 2009 21:47:50, Roger Wells a écrit :
>   

Kévin ,
Thanks for responding.  I have succeeded with Benjamin's help.  After 
having  gotten here I have concluded
that static linking wxWidgets (like your very clear steps show) may be 
the way to go because of the non-standard
flags required to build wxWidgets to work with TrueCrypt that might lead 
to a single/restricted use wxWidgets
library.  I might just redo it your way some day.

roger wells
 
>> Benjamin Karhan wrote:
>> 
>>> A little birdy told me that Roger Wells said:
>>>
>>> ] thanks again.
>>> ] I installed wxWidgets 2.8.10 without apparent incident. I'll check
>>> ] around to see if there
>>> ] is a problem there.
>>>
>>> i recompiled truecypt again (just to make sure it still works fine...
>>>   it did)... anyways, just FYI i pass the following to configure in
>>>   my package build of wxWidgets:
>>>
>>> --enable-unicode --with-motif=no --with-gtk=yes
>>>   
>> these arguments to ./configure seem to be key. I had just built it with
>> "--with-x11"
>> "--with-gtk" like their install-gtk.txt file didn't get it done either.
>> Only after pasting your flags (above)
>> making, and installing wxWidgets would truecrypt compile & link.
>>
>> Thank you very much.
>>
>> 
>>> i suppose i should upgrade to 2.8.10... must be getting lazy...
>>>   i'll let you know if i run into problems with 2.8.10 itself...
>>>
>>> B. Karhan
>>> si...@pop.psu.edu
>>> PRI/SSRI Unix Administrator
>>> ___
>>> CentOS mailing list
>>> CentOS@centos.org
>>> http://lists.centos.org/mailman/listinfo/centos
>>>   
>
>   

-- 
Roger Wells, P.E.
SAIC
221 Third St
Newport, RI 02840
401-847-4210 (voice)
401-849-1585 (fax)
roger.k.we...@saic.com

___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


[CentOS] Fwd: wifi card shows in device manager , but cant configure wifi

2009-04-10 Thread sumit agarwal
-- Forwarded message --
From: sumit agarwal 
Date: Fri, Apr 10, 2009 at 3:00 AM
Subject: wifi card shows in device manager , but cant configure wifi
To: centos@centos.org


hi ,

i just finished installing Cent OS 5.2 x64 on my thankpad
my hardware list shows the following

Atheros Communications Inc.
AR5212 802.11abg NIC

but when im trying to set up wireless network i cannot find the appropriate
wifi card.. when adding wifi connection
pls help

many thanks,
Sumit.



-- 
Software Engineer,
Product Dev.
Lifetree Convergence Ltd,
Indiranagar,
Bangalore
Mob : +91 9900952046
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] Raid1 on CentOS 5.x 64bit

2009-04-10 Thread Robert


Matt wrote:
> Does anyone know of a howto on setting up raid1 on CentOS 5.x 64 bit?
>   
There's at tutorial for RAID 1 on FC-8 here: 
http://www.howtoforge.com/software-raid1-grub-boot-fedora-8
The adjustments for CentOS are minimal but since you are presumably not 
yet on a first-name basis with md, I suggest that you make a "dry run" 
first, determining at each step if the command specified exists in 
CentOS, if the devices match your hardware, etc.
Most of all, you should back up your data before proceeding.

___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] Raid1 on CentOS 5.x 64bit

2009-04-10 Thread Matt
>> Does anyone know of a howto on setting up raid1 on CentOS 5.x 64 bit?
>
> At install-time or after the machine is already running?

I was trying at install time.  Although, how difficult is it to make a
.386 CentOS 4.x box raid that currently is not raid?

Matt
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] mock %post(pam) failure

2009-04-10 Thread Matthew Hyclak
On 04/09/09 16:46, Stuart Jansen enlightened us:
> I recently upgraded an internal build server from C5.2 to C5.3 and now
> I'm experiencing problems initializing the mock buildroot. Specifically,
> I'm getting the following error:
> 
> --
> /var/tmp/rpm-tmp.77062: line 6: cat: command not found
> /var/tmp/rpm-tmp.77062: line 7: rm: command not found
> /var/tmp/rpm-tmp.77062: line 22: install: command not found
> /var/tmp/rpm-tmp.77062: line 25: install: command not found
> error: %post(pam-0.99.6.2-4.el5.i386) scriptlet failed, exit status 127
> --
> 
> Googling has revealed that Fedora had a similar problem about a year
> ago, but doesn't reveal what to do about it. Apparently there is a
> circular dependency between pam and coreutils. For some reason yum has
> recently decided to install pam before coreutils.
> 
> Has anyone else seen this? More importantly, does anyone have any tips
> how to resolve or work around the issue?
> 

I just started seeing this in the last week as well. I hadn't had time to
start digging into it, though. 

Matt

-- 
Matt Hyclak
Systems and Operations 
Office of Information Technology
Ohio University
(740) 593-1222


pgp46lgmpRG7D.pgp
Description: PGP signature
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] What is writing to my filesystem

2009-04-10 Thread David Lemcoe
Very odd. I know I got it from somewhere. I may have built it from an
older version. I have no idea exactly though.

On 4/9/09, D Tucny  wrote:
> Odd... I did check rpmforge and that only had a buildlog of a failed build
> from 2007... fedora epel had a number of bugzilla requests closed with the
> requirements being restated...
>
> Are you sure it came from rpmforge?
>
> d
>
>
> 2009/4/10 David Lemcoe 
>
>> True, but I got mine from rpmforge. Yum install iotop.i386 I believe.
>>
>> On 4/9/09, D Tucny  wrote:
>> > >From the iotop site at http://guichaz.free.fr/iotop/ - Iotop is a
>> Python
>> > program with a top like UI used to show of behalf of which process is
>> > the
>> > I/O going on. It requires Python ≥ 2.5 and a Linux kernel ≥ 2.6.20.
>> >
>> > Neither of which are standard in CentOS...
>> >
>> > d
>> >
>> > 2009/4/10 David Lemcoe 
>> >
>> >> Oh my. I apologize so much. It's iotop I was looking to refer to. They
>> >> both operate so similarly.
>> >>
>> >> Sorry again,
>> >> David
>> >>
>> >> On 4/9/09, John R. Dennison  wrote:
>> >> > On Thu, Apr 09, 2009 at 08:12:47PM -0400, David Lemcoe wrote:
>> >> >> The only thing I know that will give you a instant snapshot of
>> >> >> what's
>> >> >> happening is "mtop". It shows you whayt apps are using your
>> >> >> harddrive
>> >> >> very similar to top with processes.
>> >> >
>> >> >   "mtop" is MySQL-Top; how will that help the original poster?
>> >> >
>> >> >
>> >> >
>> >> >   John
>> >> > --
>> >> > "I'm sorry but our engineers do not have phones."
>> >> > As stated by a Network Solutions Customer Service representative when
>> >> asked
>> >> > to
>> >> > be put through to an engineer.
>> >> >
>> >> > "My other computer is your windows box."
>> >> >  Ralf Hildebrandt
>> >> >  trying to play sturgeon while it's under attack is apparently
>> not
>> >> > fun.
>> >> >
>> >> ___
>> >> 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 mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] Segmentation fault using flash-plugin under CentOS 5.3 (SOLVED)

2009-04-10 Thread carlopmart
carlopmart wrote:
> carlopmart wrote:
>> Hi all
>>
>>  I have a very strange problem on my CentOS 5.3 laptop. I have 
>> installed latest firefox version from updates repository (3.0.7) with 
>> flash-plugin downloaded from adobe website. When i open firefox and i 
>> need to access to some web site with flash content, firefox crash with 
>> this message:
>>
>>  /usr/lib/firefox-3.0.7/run-mozilla.sh: line 131:  9133 Segmentation 
>> fault  "$prog" ${1+"$@"}
>>
>>  Problem appears with versions 3.0.5 and 3.0.6 too. On the other hand, 
>> I have another laptop installed with RHEL 5.3 with firefox and 
>> flash-plugin (but this flash-plugin is installed from redhat 
>> repository - rhn) and this problem doesn't appears ...
>>
>>  Where is the problem?? Maybe is it a bug with firefox under CentOS 
>> only??
>>
>>  Thanks.
>>
> Please any hits?? I have attached strace output using this command: 
> "strace firefox http://www.nvidia.com";
> 
> many thanks.

Ok I have found th solution to this problem. I need to install curl package 
like 
  says in http://macromedia.mplug.org/.

Many thanks to all for your help.
> 


-- 
CL Martinez
carlopmart {at} gmail {d0t} com
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] What is writing to my filesystem

2009-04-10 Thread Tony Mountifield
In article <49de80cc.4040...@gmail.com>,
Les Mikesell  wrote:
> jcarriz...@crutchfield.com wrote:
> > I have a CentOS 5.2 box that every few months runs out of drivespace on
> > its root filesystem. Last time I manually searched and deleted some big
> > files, but don't remember what they were or what wrote to them. The
> > applications I'm aware of on the box don't write to /. 
> > 
> > Is there a way to find the files that get written to the most, or grow
> > the most over time? Doing a df gives me a snapshot, but it seems clunky
> > to keep track of the diff on that output over time. I can then see what
> > processes write to them. Any other ideas on how to investigate this are
> > welcome.
> 
> find / -mount -ctime -1  #files that changed today

ITYM -mtime

Cheers
Tony

-- 
Tony Mountifield
Work: t...@softins.co.uk - http://www.softins.co.uk
Play: t...@mountifield.org - http://tony.mountifield.org
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] centos-release-5-3.el5.centos.1.src.rpm

2009-04-10 Thread Tom Diehl
On Wed, 8 Apr 2009, Jeff Fisher wrote:

> Hi,
>
> I'm just wondering when centos-release-5-3.el5.centos.1.src.rpm will be
> pushed out to the mirrors as it is currently missing.

I just looked and it is at 
http://mirrors.kernel.org/centos/5.3/os/SRPMS/centos-release-5-3.el5.centos.1.src.rpm

Regards,

-- 
Tom Diehl   tdi...@rogueind.com Spamtrap address 
mtd...@rogueind.com

___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] powernow-k8 in newer centosplus kernel

2009-04-10 Thread JohnS

On Fri, 2009-04-10 at 12:16 +0100, Karanbir Singh wrote:
> Mark Pryor wrote:
> > Using kernel:
> > 2.6.18-92.1.13.el5.centos.plus
> > the cpu throttling works as desired (see 2 traces below)
> ...
> > When I update to the newer xx-128.1.6 centosplus kernel all the throttling 
> > stops and the box runs at highest speed.
> 
> This is an issue that came up in the early 5.2 days, and has been 
> recurring since. I lost cpuspeed control on my desktop at home as well ( 
> amdx24800/m2n) with the kernel update. Have not started digging into 
> this, but the last time I did upstream blamed it on badly done acpi code 
> in the system BIOS. It *should* now be possible to blacklist the 
> powernow-k8.ko code and let the kernel fallback to using the generic 
> acpi layer again. YMMV.
---
Good thing to know it's just not happening to me also. I also have
client machines this has affected and my own personal machines. This was
with the p4-clockmod driver. Motherbords all were Asus. Also affected
one Celeron machine on an Asus board.

JohnStanley

___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] What is writing to my filesystem

2009-04-10 Thread Les Mikesell
Tony Mountifield wrote:
> In article <49de80cc.4040...@gmail.com>,
> Les Mikesell  wrote:
>> jcarriz...@crutchfield.com wrote:
>>> I have a CentOS 5.2 box that every few months runs out of drivespace on
>>> its root filesystem. Last time I manually searched and deleted some big
>>> files, but don't remember what they were or what wrote to them. The
>>> applications I'm aware of on the box don't write to /. 
>>>
>>> Is there a way to find the files that get written to the most, or grow
>>> the most over time? Doing a df gives me a snapshot, but it seems clunky
>>> to keep track of the diff on that output over time. I can then see what
>>> processes write to them. Any other ideas on how to investigate this are
>>> welcome.
>> find / -mount -ctime -1  #files that changed today
> 
> ITYM -mtime
> 

In this case it doesn't matter but ctime can never be earlier than mtime 
and catches some other types of changes like renames, ownership, etc. 
Ctime is the time of the last change of the inode, and updating mtime 
would be an inode change.

-- 
   Les Mikesell
lesmikes...@gmail.com
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] Raid1 on CentOS 5.x 64bit

2009-04-10 Thread Paul Heinlein
On Fri, 10 Apr 2009, Matt wrote:

>>> Does anyone know of a howto on setting up raid1 on CentOS 5.x 64 bit?
>>
>> At install-time or after the machine is already running?
>
> I was trying at install time.

At install time, kickstart is the cleanest way to set up RAID. If 
you've got the time, do one install (sans RAID setup), making sure 
that you correctly specify your network, packages, etc.

After the installation, you'll have a /root/anaconda-ks.cfg that can 
be used as a blueprint for your kickstart installation. It will 
include a comment to the effect of

# The following is the partition information you requested
# Note that any partitions you deleted are not expressed
# here so unless you clear all partitions first, this is
# not guaranteed to work

followed by the disk layout section. That's the section to massage a 
bit. Here's my kickstart directives for RAID1 layout of three 
partitions( "/", "/boot", and swap):

- %< -
bootloader --location=partition --driveorder=sda,sdb
clearpart --all --initlabel
part raid.01 --size=300  --ondisk=sda --asprimary
part raid.02 --size=300  --ondisk=sdb --asprimary
part raid.11 --size=1024 --ondisk=sda --asprimary
part raid.12 --size=1024 --ondisk=sdb --asprimary
part raid.21 --size=1--ondisk=sda --asprimary --grow
part raid.22 --size=1--ondisk=sdb --asprimary --grow
raid /boot --fstype ext3 --level=RAID1 --device=md0 raid.01 raid.02
raid swap  --fstype swap --level=RAID1 --device=md1 raid.11 raid.12
raid / --fstype ext3 --level=RAID1 --device=md2 raid.21 raid.22
- %< -

> Although, how difficult is it to make a .386 CentOS 4.x box raid 
> that currently is not raid?

I've never retrofitted a box for RAID, but I suspect it'd be tricky 
unless you're just creating/moving non-system partitions like /home, 
/opt, /srv, and the like.

-- 
Paul Heinlein <> heinl...@madboa.com <> http://www.madboa.com/
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


[CentOS] Netinstall/kickstart issue

2009-04-10 Thread Joseph L. Casale
When booting the 5.3 i386 netinstall iso and performing a
ks install, the server pauses for a very long time at the
"Retrieving images/stage2.img" screen and the apache log
where the http served tree exists shows it looking for:
...File does not exist: /var/www/html/CentOS/images/product.img
...File does not exist: /var/www/html/CentOS/disc1
multiple times until finally it gets going. This tree was a
dvd copied to a directory being served out.

Any ideas?

Thanks!
jlc
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


[CentOS] CentOS-announce Digest, Vol 50, Issue 8

2009-04-10 Thread centos-announce-request
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:0046 Moderate CentOS 5 x86_64 ntp Update
  (Karanbir Singh)
   2. CESA-2009:0046 Moderate CentOS 5 i386 ntp Update (Karanbir Singh)
   3. CESA-2009:0397 Critical CentOS 5 i386 firefox Update
  (Karanbir Singh)
   4. CESA-2009:0397 Critical CentOS 5 x86_64 firefox   Update
  (Karanbir Singh)
   5. CEBA-2009:0381  CentOS 5 i386 conga Update (Karanbir Singh)
   6. CEBA-2009:0381  CentOS 5 x86_64 conga Update (Karanbir Singh)


--

Message: 1
Date: Thu, 9 Apr 2009 17:43:49 +
From: Karanbir Singh 
Subject: [CentOS-announce] CESA-2009:0046 Moderate CentOS 5 x86_64 ntp
Update
To: centos-annou...@centos.org
Message-ID: <20090409174349.ga24...@tantra.karan.org>
Content-Type: text/plain; charset=us-ascii


CentOS Errata and Security Advisory 2009:0046 Moderate

Upstream details at : https://rhn.redhat.com/errata/RHSA-2009-0046.html

The following updated files have been uploaded and are currently 
syncing to the mirrors: ( md5sum Filename ) 

x86_64:
72641946ab7e345f60f56ba9e8f4076d  ntp-4.2.2p1-9.el5.centos.1.x86_64.rpm

Source:
cacb9fa2995f5f7d300fe70c20cc55c5  ntp-4.2.2p1-9.el5.centos.1.src.rpm


-- 
Karanbir Singh
CentOS Project { http://www.centos.org/ }
irc: z00dax, #cen...@irc.freenode.net



--

Message: 2
Date: Thu, 9 Apr 2009 17:43:48 +
From: Karanbir Singh 
Subject: [CentOS-announce] CESA-2009:0046 Moderate CentOS 5 i386 ntp
Update
To: centos-annou...@centos.org
Message-ID: <20090409174348.ga24...@tantra.karan.org>
Content-Type: text/plain; charset=us-ascii


CentOS Errata and Security Advisory 2009:0046 Moderate

Upstream details at : https://rhn.redhat.com/errata/RHSA-2009-0046.html

The following updated files have been uploaded and are currently 
syncing to the mirrors: ( md5sum Filename ) 

i386:
caac219c9a891f52f5afbc84c7028077  ntp-4.2.2p1-9.el5.centos.1.i386.rpm

Source:
cacb9fa2995f5f7d300fe70c20cc55c5  ntp-4.2.2p1-9.el5.centos.1.src.rpm


-- 
Karanbir Singh
CentOS Project { http://www.centos.org/ }
irc: z00dax, #cen...@irc.freenode.net



--

Message: 3
Date: Thu, 9 Apr 2009 17:48:16 +
From: Karanbir Singh 
Subject: [CentOS-announce] CESA-2009:0397 Critical CentOS 5 i386
firefox Update
To: centos-annou...@centos.org
Message-ID: <20090409174816.ga24...@tantra.karan.org>
Content-Type: text/plain; charset=us-ascii


CentOS Errata and Security Advisory 2009:0397 Critical

Upstream details at : https://rhn.redhat.com/errata/RHSA-2009-0397.html

The following updated files have been uploaded and are currently 
syncing to the mirrors: ( md5sum Filename ) 

i386:
9aed3da8160d481536b6b6fd2ca7feef  xulrunner-1.9.0.7-3.el5.i386.rpm
062652ee9f37279ec323c26033d48860  xulrunner-devel-1.9.0.7-3.el5.i386.rpm
032e5ccd659294fb4f9672152c32e70d  
xulrunner-devel-unstable-1.9.0.7-3.el5.i386.rpm

Source:
ae2ef94bb1f812fdb48e77da33efa46e  xulrunner-1.9.0.7-3.el5.src.rpm


-- 
Karanbir Singh
CentOS Project { http://www.centos.org/ }
irc: z00dax, #cen...@irc.freenode.net



--

Message: 4
Date: Thu, 9 Apr 2009 17:48:16 +
From: Karanbir Singh 
Subject: [CentOS-announce] CESA-2009:0397 Critical CentOS 5 x86_64
firefox Update
To: centos-annou...@centos.org
Message-ID: <20090409174816.ga24...@tantra.karan.org>
Content-Type: text/plain; charset=us-ascii


CentOS Errata and Security Advisory 2009:0397 Critical

Upstream details at : https://rhn.redhat.com/errata/RHSA-2009-0397.html

The following updated files have been uploaded and are currently 
syncing to the mirrors: ( md5sum Filename ) 

x86_64:
9e8333531967b5ceed012aab821378d6  xulrunner-1.9.0.7-3.el5.i386.rpm
4ad37d41bbf926b660f2828ae1ddee69  xulrunner-1.9.0.7-3.el5.x86_64.rpm
654c5535a9f180184701db972bc93d9d  xulrunner-devel-1.9.0.7-3.el5.i386.rpm
58b1365aec3bffd710aa1c08f52c1aa1  xulrunner-devel-1.9.0.7-3.el5.x86_64.rpm
6587ce0479ebfbff6cf45f4d6184e9ca  
xulrunner-devel-unstable-1.9.0.7-3.el5.x86_64.rpm

Source:
ae2ef94bb1f812fdb48e77da33efa46e  xulrunner-1.9.0.7-3.el5.src.rpm


-- 
Karanbir Singh
CentOS Project { http://www.centos.org/ }
irc: z00dax, #cen...@irc.freenode.net



--

Message: 5
Date: Thu, 9 Apr 2009 23:25:52 +
From: Karanbir Singh 
Subject: [CentOS-announce] CEBA-2009:0381  CentOS 5 i386 conga Update
To: centos-annou...@centos.org
Message-ID: <20090409232552.ga24...

[CentOS] question on compiling a driver early on at boot

2009-04-10 Thread Jerry Geis
I have noticed in /etc/inittab it calls /etc/rc.d/rc.sysinit and in 
there ANYTHING with a .modules
name in the /etc/sysconfig/modules directory is executed.

Would this be a place to put a driver.modules file and recompile my 
driver BEFORE entering the next run level?

Is that how this is done or is there a "prefered" way?

My goal is to detect a kernel change after a yum update and recompile my 
driver before its needed.

Thanks,

Jerry
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


[CentOS] madwifi not working for 5.2 x64

2009-04-10 Thread sumit agarwal
hi .
i installed madwifi on 5.2 x64 but it dosent seem to be working
any clues?
pls help

:)



--
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] What is writing to my filesystem

2009-04-10 Thread JCARRIZOSA
> -Original Message-
> You have /var and/or /tmp on separate filesystems?  If not, that is
> where things are being written to.  Specificly, look in /tmp,
> /var/log/, and under /var/spool.  Is /var/tmp separate from /tmp?
What
> about /usr/tmp?  If you don't run the machine 24/7, logrotate might
not
> be run, this would mean your log files (under /var/log) will grow and
> grow and grow ...  If you don't have an email alias for root (I assume
> you don't login as root!), then /var/spool/mail/root will grow and
grow
> and grow ... as well (all sorts of silly messages sent to root).  It
is
> also possible that stuff is accumulating under /var/spool/lpd as well,
> although this will be small files.

The machine is up 24/7. The different var, tmps and spool folders didn't
look too bad, but did find some large files I had copied a couple of
months ago and forgotten. I have cricket monitoring drive space and
email if it's above 75% usage. It didn't complain back then, so I'm
thinking it's been just below the threshold for a while, and went over
the hump just this week with recent smaller files.

Thanks!
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


[CentOS] installing updates in post kickstart

2009-04-10 Thread Jerry Geis
I can do a yum update in my post kickstart (which is what I am doing now 
actually).

However, I want to save network time at installations.
If I copy down the files from centos/5.3/updates/x86_64/RPMS
and place them in a directory local on my network,
can I just "rpm -U /mnt/directory/updates/x86_64/RPMS*"
in my post section?

Assuming I have nfs mounted the directory of course...

Thanks,

Jerry
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] question on compiling a driver early on at boot

2009-04-10 Thread Phil Schaffner
Jerry Geis wrote:
> I have noticed in /etc/inittab it calls /etc/rc.d/rc.sysinit and in 
> there ANYTHING with a .modules
> name in the /etc/sysconfig/modules directory is executed.
> 
> Would this be a place to put a driver.modules file and recompile my 
> driver BEFORE entering the next run level?
> 
> Is that how this is done or is there a "prefered" way?
> 
> My goal is to detect a kernel change after a yum update and recompile my 
> driver before its needed.

My preferred way is to use dkms, but have not tried to roll my own. 
Have not tried your suggested approach, but don't see why it would not work.

Phil
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] installing updates in post kickstart

2009-04-10 Thread Jim Perrin
On Fri, Apr 10, 2009 at 2:17 PM, Jerry Geis  wrote:
> I can do a yum update in my post kickstart (which is what I am doing now
> actually).
>
> However, I want to save network time at installations.
> If I copy down the files from centos/5.3/updates/x86_64/RPMS
> and place them in a directory local on my network,
> can I just "rpm -U /mnt/directory/updates/x86_64/RPMS*"
> in my post section?

If there are kernel updates, that would be bad. Since CentOS5 can have
additional repositories specified in kickstarts, why not add a local
update repository to the kickstart. Then there's no need for %post
updates.

-- 
During times of universal deceit, telling the truth becomes a revolutionary act.
George Orwell
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] installing updates in post kickstart

2009-04-10 Thread Warren, Eucke
Jerry Geis wrote:

> I can do a yum update in my post kickstart (which is what I am doing
now actually).

> However, I want to save network time at installations.
> If I copy down the files from centos/5.3/updates/x86_64/RPMS and place
them in a directory local on my network, can I just "rpm -U 
> /mnt/directory/updates/x86_64/RPMS*"
> in my post section?

> Assuming I have nfs mounted the directory of course...

You can always replace the updated RPMS in the CentOS directory and run
createrepo to rebuild the comps.xml and header info so that you do your
initial build with the newer files without running yum at all.  Ymmv


Eucke
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] installing updates in post kickstart

2009-04-10 Thread Joseph L. Casale
>I can do a yum update in my post kickstart (which is what I am doing now 
>actually).

Maybe a better way to do this...

>However, I want to save network time at installations.
>If I copy down the files from centos/5.3/updates/x86_64/RPMS
>and place them in a directory local on my network,
>can I just "rpm -U /mnt/directory/updates/x86_64/RPMS*"
>in my post section?

If that is the case, then add a repo line in your kickstart, sync
an updates repo as you do, it will pull anything it needs that is
newer from this repo line.

repo --name=Updates 
--baseurl=http://foo.example.com/pub/centos/5.3/updates/i386/

Works for me (tm).
jlc
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] powernow-k8 in newer centosplus kernel

2009-04-10 Thread Nataraj
On Fri, 2009-04-10 at 11:37 -0400, JohnS wrote:
> On Fri, 2009-04-10 at 12:16 +0100, Karanbir Singh wrote:
> > Mark Pryor wrote:
> > > Using kernel:
> > > 2.6.18-92.1.13.el5.centos.plus
> > > the cpu throttling works as desired (see 2 traces below)
> > ...
> > > When I update to the newer xx-128.1.6 centosplus kernel all the 
> > > throttling stops and the box runs at highest speed.
> > 
> > This is an issue that came up in the early 5.2 days, and has been 
> > recurring since. I lost cpuspeed control on my desktop at home as well ( 
> > amdx24800/m2n) with the kernel update. Have not started digging into 
> > this, but the last time I did upstream blamed it on badly done acpi code 
> > in the system BIOS. It *should* now be possible to blacklist the 
> > powernow-k8.ko code and let the kernel fallback to using the generic 
> > acpi layer again. YMMV.
> ---
> Good thing to know it's just not happening to me also. I also have
> client machines this has affected and my own personal machines. This was
> with the p4-clockmod driver. Motherbords all were Asus. Also affected
> one Celeron machine on an Asus board.
> 
> JohnStanley

I have some older socket 604 533 FSB Xeon's with supermicro x5da8
motherboards and I've never gotten any of the power management, or even
the poweroff or suspend command to work with any linux kernel on these
boards.  The bios code could be blamed, but I've booted other OSes that
are capable of doing power management on this board.

In any case, are there particular motherboards, i.e. Intel, Tyan, Asus,
Supermicro and/or brands of systems, i.e. Dell, HP that are known to
work well with CentOS and support power management properly?

Nataraj

> 
> ___
> 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


Re: [CentOS] installing updates in post kickstart

2009-04-10 Thread nate
Jerry Geis wrote:
> I can do a yum update in my post kickstart (which is what I am doing now
> actually).
>
> However, I want to save network time at installations.
> If I copy down the files from centos/5.3/updates/x86_64/RPMS
> and place them in a directory local on my network,
> can I just "rpm -U /mnt/directory/updates/x86_64/RPMS*"
> in my post section?
>
> Assuming I have nfs mounted the directory of course...

I do this, but not over NFS, over HTTP.

I create a repository that has all of the packages I
want to update from and have something like this in my
%post

(This is for CentOS 5.2, I may go to 5.3 later in the year)
cat 

Re: [CentOS] Raid1 on CentOS 5.x 64bit

2009-04-10 Thread Rob Kampen


Paul Heinlein wrote:

On Fri, 10 Apr 2009, Matt wrote:

  

Does anyone know of a howto on setting up raid1 on CentOS 5.x 64 bit?


At install-time or after the machine is already running?
  

I was trying at install time.




Although, how difficult is it to make a .386 CentOS 4.x box raid 
that currently is not raid?



I've never retrofitted a box for RAID, but I suspect it'd be tricky 
unless you're just creating/moving non-system partitions like /home, 
/opt, /srv, and the like.


  
I have used this site and successfully retro fitted raid 1 to existing 
install (5.x only)

http://linux-raid.osdl.org/index.php/Linux_Raid
YMMV - HTH
begin:vcard
fn:Rob Kampen
n:Kampen;Rob
email;internet:r...@kampensonline.net
tel;cell:407-341-3815
version:2.1
end:vcard

___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


[CentOS] Error: dev_set_mac_address of dev

2009-04-10 Thread Chris Black
Hello,

I am trying to bond two ethernet cards together, they are listed as  
e1000e in the modprobe.conf file. However I keep getting this error:
bonding: bond1: Error: dev_set_mac_address of dev eth2 failed! ALB  
mode requires that the base driver support setting the hw address also  
when the network device's interface is open

Does anyone know how to correctly bond them in CentOs 5.2?

Thanks!
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] when to reboot after updates

2009-04-10 Thread Lanny Marcus
On Thu, Apr 9, 2009 at 10:55 PM, D Tucny  wrote:
> 2009/4/10 Mike A. Harris 
>> Jerry Geis wrote:
>> > What is the rule of thumb for reboots after updates...
>>
>> I'd say the rule of thumb is to do whatever works best for you, and that
>> you'll likely get quite the variety of different responses.  ;o)
>>
>> > Certainly if I update from 5.2 to 5.3 I reboot.
>> >
>> > But if you update something like krb5 or pam
>> > does that require a reboot? Does the "fix" get automatically loaded and
>> > used
>> > or do you just do a reboot always?
>>
>> So, I would say "reboot" is the simplest, safest, foolproof way to
>> ensure you're running updates even if some people will balk at the idea
>> that you have to reboot a Linux system.  You don't have to of course,
>> but life is short and rebooting is fast.  ;o)
>
> Another good reason to do a controlled reboot every now and again is to make
> sure that everything you expect to come back up does come back up, which can
> save you being woken up in the middle of the night if an uncontrolled reboot
> happens :)

And if one does a scheduled reboot, best to be there, so you can touch
the box and best to do it when there is very low traffic. I remember
advising that updates were available for IPCop last year. Scott Silva
wrote that he would do it on a Sunday, when the big bosses weren't
there. Sure enough, his IPCop box failed to reboot.I'm doing
the first update, from CentOS 5.2 (32 bit) to 5.3 now.
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] Fwd: wifi card shows in device manager , but cant configure wifi

2009-04-10 Thread Pulido F.
On Fri, 2009-04-10 at 05:58 -0700, sumit agarwal wrote:
> 
> 
> -- Forwarded message --
> From: sumit agarwal 
> Date: Fri, Apr 10, 2009 at 3:00 AM
> Subject: wifi card shows in device manager , but cant configure wifi
> To: centos@centos.org
> 
> 
> hi ,
> 
> i just finished installing Cent OS 5.2 x64 on my thankpad
> my hardware list shows the following
> 
> Atheros Communications Inc. 
> AR5212 802.11abg NIC
> 
> but when im trying to set up wireless network i cannot find the
> appropriate wifi card.. when adding wifi connection
> pls help 
> 
> many thanks,
> Sumit.
> 
Hi!

What does google say about centos wireless? or centos ar5212?

Regards.

___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


[CentOS] Desktop update (32 bit) from 5.2 to 5.3 - fuse & ntfs-3g-mount

2009-04-10 Thread Lanny Marcus
I just finished updating my Desktop, from CentOS 5.2 to 5.3 (32 bit).
There were a lot of error messages (from sbin/ldconfig ?) about 2
files, in usr/lib/lib ending in .so "is not an ELF file - It has the
wrong magic bytes at the start."  There were also a lot of messages I
believe have to do with SELinux.  I'd read the Release Notes and
thought I was OK, since this box is dual boot with M$ Windows XP,
thinking I had the latest and greatest way to access the NTFS
partition. However, when I rebooted the box, I saw warning messages:
"modprobe fuse as root" and here is the result of that:
[r...@dell2400 ~]# modprobe fuse
[r...@dell2400 ~]# exit
logout
[la...@dell2400 ~]$
and another message "ntfs-3g-mount fuse device is missing"
As expected, after viewing the above messages; I can't see what's on
the NTFS partition. I will read the Release Notes, again, in the
morning.  This box has GNOME and KDE on it and I was getting messages
from PUP that 185 packages were available. The update, after updating
glibc, was 268 packages.  A big thank you, to everyone who spent so
much of their valuable and very limited time working on this update!
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos