[CentOS] fsck.ext4 problem 64bit

2012-10-25 Thread Steve Brooks
Hi All, Trying to run fsck on a local linux raid partition gave the following. [root@... /]# fsck.ext4 /dev/md0 e2fsck 1.41.12 (17-May-2010) /dev/md0 has unsupported feature(s): 64bit e2fsck: Get a newer version of e2fsck! Odd as the server is 64bit running latest kernel and using latest "e2f

Re: [CentOS] fsck.ext4 problem 64bit

2012-10-25 Thread Banyan He
Try this out to find out who complains the arch, strace fsck.ext4 /dev/md5. Post the output here that we can check more if it's from the app or the kernel. Banyan He Blog: http://www.rootong.com Email: ban...@rootong.com On 2012-10-25 5:10 PM, Steve Brooks wrote: > Hi All, > > Tryi

Re: [CentOS] fsck.ext4 problem 64bit

2012-10-25 Thread Banyan He
I think it comes out from the app itself for the verification. The question is if the soft raid supports by anyhow. Trying to build one test box for it. print_unsupp_features: if (features[0] || features[1] || features[2]) { int i, j; __u32 *mask = features, m;

Re: [CentOS] fsck.ext4 problem 64bit [SOLVED]

2012-10-25 Thread Steve Brooks
On Thu, 25 Oct 2012, Banyan He wrote: > I think it comes out from the app itself for the verification. The > question is if the soft raid supports by anyhow. Trying to build one > test box for it. > > print_unsupp_features: > if (features[0] || features[1] || features[2]) { > int i, j;

[CentOS] CentOS-announce Digest, Vol 92, Issue 17

2012-10-25 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] grubby question

2012-10-25 Thread Jerry Geis
I am looking at using grubby. My command is: grubby --grub --title "CentOS (2.6.32.60)" --add-kernel=/boot/vmlinuz-2.6.32.60 --initrd=/boot/initrd-2.6.32.60.img --args="ro root=LABEL=/ noapic" --make-default my etc/grub.conf file after running the command is: title CentOS (2.6.32.60) kerne

[CentOS] Completely automatic yum updating on Centos 6

2012-10-25 Thread Frank Cox
I am about to set up a computer with Centos 6 that I'll probably never see again. I don't want to give out the root password, but I would like to have it automatically and transparently update itself. What is the best way to do this? I have been looking at webpages about yum-cron and yum-updates

Re: [CentOS] grubby question

2012-10-25 Thread Jerry Geis
On 10/25/2012 02:07 PM, Jerry Geis wrote: > I am looking at using grubby. My command is: > > grubby --grub --title "CentOS (2.6.32.60)" > --add-kernel=/boot/vmlinuz-2.6.32.60 > --initrd=/boot/initrd-2.6.32.60.img --args="ro root=LABEL=/ noapic" > --make-default > > my etc/grub.conf file after ru

Re: [CentOS] grubby question

2012-10-25 Thread m . roth
Jerry Geis wrote: > On 10/25/2012 02:07 PM, Jerry Geis wrote: >> I am looking at using grubby. My command is: >> >> grubby --grub --title "CentOS (2.6.32.60)" >> --add-kernel=/boot/vmlinuz-2.6.32.60 >> --initrd=/boot/initrd-2.6.32.60.img --args="ro root=LABEL=/ noapic" >> --make-default >> >> my et

Re: [CentOS] Completely automatic yum updating on Centos 6

2012-10-25 Thread Mike Burger
> I am about to set up a computer with Centos 6 that I'll probably never see > again. I don't want to give out the root password, but I would like to > have it > automatically and transparently update itself. > > What is the best way to do this? I have been looking at webpages about > yum-cron >

Re: [CentOS] Completely automatic yum updating on Centos 6

2012-10-25 Thread Mike Burger
>> I am about to set up a computer with Centos 6 that I'll probably never >> see >> again. I don't want to give out the root password, but I would like to >> have it >> automatically and transparently update itself. >> >> What is the best way to do this? I have been looking at webpages about >>

Re: [CentOS] Completely automatic yum updating on Centos 6

2012-10-25 Thread Keith Roberts
On Thu, 25 Oct 2012, Frank Cox wrote: > To: centos@centos.org > From: Frank Cox > Subject: [CentOS] Completely automatic yum updating on Centos 6 > > I am about to set up a computer with Centos 6 that I'll probably never see > again. I don't want to give out the root password, but I would like

[CentOS] find with -mtime and -print0 = inaccurate results

2012-10-25 Thread Sean Carolan
If I run this: find /path/to/files/ -type f -mtime -2 -name *.xml.gz I get the expected results, files with modify time less than two days old. But, if I run it like this, with the print0 flag: find /path/to/files/ -print0 -type f -mtime -2 -name *.xml.gz I get older files included as well. A

Re: [CentOS] find with -mtime and -print0 = inaccurate results

2012-10-25 Thread Stephen Harris
On Thu, Oct 25, 2012 at 03:41:51PM -0500, Sean Carolan wrote: > If I run this: > find /path/to/files/ -type f -mtime -2 -name *.xml.gz > find /path/to/files/ -print0 -type f -mtime -2 -name *.xml.gz Order of operations find /path/to/files/ -type f -mtime -2 -name *.xml.gz -print0 -- rgds Ste

Re: [CentOS] Completely automatic yum updating on Centos 6

2012-10-25 Thread Michael Simpson
On 25 October 2012 21:19, Keith Roberts wrote: > On Thu, 25 Oct 2012, Frank Cox wrote: > >> To: centos@centos.org >> From: Frank Cox >> Subject: [CentOS] Completely automatic yum updating on Centos 6 >> >> I am about to set up a computer with Centos 6 that I'll probably never see >> again. I don

Re: [CentOS] find with -mtime and -print0 = inaccurate results

2012-10-25 Thread Sean Carolan
> Order of operations > find /path/to/files/ -type f -mtime -2 -name *.xml.gz -print0 Thanks! ___ CentOS mailing list CentOS@centos.org http://lists.centos.org/mailman/listinfo/centos

Re: [CentOS] Completely automatic yum updating on Centos 6

2012-10-25 Thread Frank Cox
On Thu, 25 Oct 2012 21:19:24 +0100 (BST) Keith Roberts wrote: > What about doing a ssh root login to the box from far away, > and then running yum check-update, to see what the > consequences of updating the box could do before > commiting to the update first? As far as I know, while it will h

Re: [CentOS] Completely automatic yum updating on Centos 6

2012-10-25 Thread Les Mikesell
On Thu, Oct 25, 2012 at 5:19 PM, Frank Cox wrote: > > So if I plan to log into it remotely, I'll have to have it report its current > address to me on occasion. > > Which probably wouldn't be a bad thing, anyway. Or, if someone else will be logging in and you just don't want to give them root acc

Re: [CentOS] Completely automatic yum updating on Centos 6

2012-10-25 Thread Frank Cox
On Thu, 25 Oct 2012 17:50:49 -0500 Les Mikesell wrote: > Or, if someone else will be logging in and you just don't want to give > them root access, you could set up sudo access to a script that does a > 'yum -y update' and then asks if they want to reboot. I did consider that, but if it doesn't

Re: [CentOS] Completely automatic yum updating on Centos 6

2012-10-25 Thread Scott Silva
on 10/25/2012 3:54 PM Frank Cox spake the following: > On Thu, 25 Oct 2012 17:50:49 -0500 > Les Mikesell wrote: > >> Or, if someone else will be logging in and you just don't want to give >> them root access, you could set up sudo access to a script that does a >> 'yum -y update' and then asks if