>-Original Message-
>From: centos-boun...@centos.org [mailto:centos-boun...@centos.org] On
Behalf
>Of Les Mikesell
>Sent: Friday, February 26, 2010 5:53 PM
>To: centos@centos.org
>Subject: Re: [CentOS] Backuppc-updates on CentOS
>
>All repositories are hard to use with other repositories.
Benjamin Donnachie a écrit :
> On 28 Feb 2010, at 16:51, Alan McKay wrote:
>
>
>> I'm at colocaiton in the middle of a big rebuild and it seems I have a
>> faulty CD rom in the server that I need to put Centos on via
>> Kickstart.
>>
>
> Had a similar problem and easiest solution in the en
2010/3/1 Georghy :
> Benjamin Donnachie a écrit :
>> On 28 Feb 2010, at 16:51, Alan McKay wrote:
>>
>>
>>> I'm at colocaiton in the middle of a big rebuild and it seems I have a
>>> faulty CD rom in the server that I need to put Centos on via
>>> Kickstart.
>>>
>>
>> Had a similar problem and easi
Eero Volotinen a écrit :
> 2010/3/1 Georghy :
>
>> Benjamin Donnachie a écrit :
>>
>>> On 28 Feb 2010, at 16:51, Alan McKay wrote:
>>>
>>>
>>>
I'm at colocaiton in the middle of a big rebuild and it seems I have a
faulty CD rom in the server that I need to put Centos on vi
Been getting this for the past few days:
/etc/cron.daily/yum:
Not using downloaded repomd.xml because it is older than what we have:
Current : Fri Feb 26 18:03:06 2010
Downloaded: Thu Nov 5 20:40:44 2009
Then I ran yum clean all ; yum -d0 check-update and got
ftp://ftp.free.fr/mirrors
From: Ron Young
>Alternatively, can someone point me to a reference that
>shows actual examples of how to use PDO and SQLite?
http://tinyurl.com/yanb4o4 ^_^
JD
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listi
Hi,
Does anyone know how to turn on TOE ( TCP offload engine ) and RSS (
Receive-Side Scaling)?
Thanks,
pete
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos
On 28 February 2010 06:54, John R Pierce wrote:
> atexit.py should be part of the base python RPM in EL5
>
> # rpm -qf /usr/lib/python2.4/atexit.py
> python-2.4.3-27.el5
Did this get solved in the end?
Ben
___
CentOS mailing list
CentOS@centos.or
On Sun, 2010-02-28 at 14:37 -0800, John R Pierce wrote:
> Clint Dilks wrote:
> > SWAP inside LVM is fine in my experience. Personally I consider this a
> > benign error and generally ignore it unless the mismatch count is very high
>
> And how do I know all these mirror data mismatches are Swap
Pete Kay sent a missive on 2010-03-01:
> Hi,
>
> Does anyone know how to turn on TOE ( TCP offload engine ) and RSS (
> Receive-Side Scaling)?
>
> Thanks, pete ___ CentOS
> mailing list CentOS@centos.org
> http://lists.centos.org/mailman/listinfo/cent
From: Timothy Murphy
> The scripts in /etc/cron.d/ all run fine,
> but those in /etc/cron.hourly, etc, seem to be ignored.
Tried:
printf "#"'!'"/bin/bash\ntouch /tmp/cron.test\n" >
/etc/cron.hourly/cront.test; chmod 755 /etc/cron.hourly/cront.test
Next hour:
$ ll /tmp/cron.test
-rw-r--r--
>Did this get solved in the end?
>
>Ben
Nope:)
I started writing a Perl script to accomplish what I need yesterday.
Given I have zero experience with python, it was the easier solution
although I would have loved to stick with a provided solution in the
event I end up overlooking something.
Thank
Hi,
I'm currently writing an install script for an application, and my
already limited Bash skills are a bit rusty.
I want to check if a group exists, and if it doesn't, then create it.
Only thing I found is:
if [ grep medintux /etc/group ]; then
continue
else
groupadd medintux
On Mon, 2010-03-01 at 17:03 +0100, Niki Kovacs wrote:
> Hi,
>
> I'm currently writing an install script for an application, and my
> already limited Bash skills are a bit rusty.
>
> I want to check if a group exists, and if it doesn't, then create it.
>
> Only thing I found is:
>
> if [ grep
2010/3/1 Niki Kovacs :
> Hi,
>
> I'm currently writing an install script for an application, and my
> already limited Bash skills are a bit rusty.
>
> I want to check if a group exists, and if it doesn't, then create it.
>
> Only thing I found is:
>
> if [ grep medintux /etc/group ]; then
>
grep medintux /etc/group || groupadd medintux
or in a if operation:
if [[ ! grep medintux /etc/group ]]
then
groupadd medintux
fi
Regards,
Frank.
Niki Kovacs schrieb am 01.03.2010 17:03:46:
> Hi,
>
> I'm currently writing an install script for an application, and my
> already limited B
> Apparently I can't seem to "negate" the test, e. g. something like
>
> if !(grep medintux /etc/group)
>
> Any suggestions for the correct syntax here ?
>
I'd do it like this:
grep medintux /etc/group
if [ $? != 0 ]; then
echo "Group not found"
fi
-
Geoff
On Mon, Mar 1, 2010 at 11:08 AM, Laurent Wandrebeck
wrote:
>> Niki
> Why don't you use groupadd -f ? It will not override the group if it
> already exists, and shortens the code :)
>
That gets my vote :)
I have seen code that creates a temp file then does a chgrp on the
file. If it fails then t
On Mon, Mar 01, 2010 at 05:12:15PM +0100, Geoff Galitz wrote:
> I'd do it like this:
>
> grep medintux /etc/group
> if [ $? != 0 ]; then
> echo "Group not found"
> fi
Or allow for naming services (NIS, LDAP, whatever)
if [ -z "$(getent group medintux)" ]
then
groupadd
fi
--
Niki wrote:
>
> I'm currently writing an install script for an application, and my
> already limited Bash skills are a bit rusty.
>
> I want to check if a group exists, and if it doesn't, then create it.
>
> Only thing I found is:
>
> if [ grep medintux /etc/group ]; then
> continue
> else
>
i'm reading the lowdown on 3rd party repos with respect to centos
here:
http://wiki.centos.org/AdditionalResources/Repositories
and i have a couple questions and observations. first, the entry for
centosplus reads:
"Popular packages from this repository include: postfix with database
suppo
On 02/28/2010 05:25 PM Michael Klinosky wrote:
> Eero Volotinen wrote:
>> On 1/4/10 10:57 PM, Scot P. Floess wrote:
>>> ... When I had Fedora 11 and 12 on
>>> it, I could issue a poweroff command and the machine would power itself off.
>>> However, under CentOS it doesn't turn the machine off what
On Mon, Mar 1, 2010 at 8:54 AM, Robert P. J. Day wrote:
> http://wiki.centos.org/AdditionalResources/Repositories
>
> and i have a couple questions and observations. first, the entry for
> centosplus reads:
>
> "Popular packages from this repository include: postfix with database
> support, a r
(sorry, i'm not *trying* to be a pain, i am merely succeeding.)
once again, here:
http://wiki.centos.org/AdditionalResources/Repositories
there's a reference to "The SerNet Samba 3 Repository" -- that link is
broken, the directory structure over at
http://ftp.sernet.de/pub/samba/ has change
Hi,
The title says it all. My GNOME desktop is in French, so here's what my
standard Applications (same word in french) menu looks like :
Applications > Accessoires (Utilities)
> Bureautique (Office)
> Graphisme (Graphics)
> Internet (Internet)
On 3/1/2010 10:54 AM, Robert P. J. Day wrote:
>
>next, regarding remi collet's repo:
>
> "Has been recommended on the mailing list and forum for mysql 5.1 and
> php5.2.9."
>
> however, if you check over there (say, under x86_64):
>
> http://rpms.famillecollet.com/enterprise/5/remi/x86_64/repovi
On Mon, 2010-03-01 at 18:50 +0100, Niki Kovacs wrote:
> Hi,
>
> The title says it all. My GNOME desktop is in French, so here's what my
> standard Applications (same word in french) menu looks like :
>
> Applications > Accessoires (Utilities)
> > Bureautique (Office)
>
Robert P. J. Day wrote on Mon, 1 Mar 2010 11:54:53 -0500 (EST):
> finally, all i want is to install PHP 5.3.x (and, obviously,
> dependent packages) on a stock centos 5.4 system. is remi collet's
> repo a good choice for that? the centos wiki recommends "extreme
> caution" for that repo, which m
JohnS a écrit :
> ---
> That should be the right way /usr/share/apps then update it...
1) *What* should be the right way ?
2) then update it... update what ?
Sorry, but this wasn't very helpful.
I want to create a new *main* menu category Applications > Medintux.
Just how should I go about t
Hi all,
I've had a project to upload customer codes and some data to members inside
a webfarm, the upload work will be done almost daily for quite a while.
Customer needs the upload status be confirmed everytime and data will be
verified later easily when in need.
Is there one or more popula
At Mon, 1 Mar 2010 11:54:53 -0500 (EST) CentOS mailing list
wrote:
>
>
> i'm reading the lowdown on 3rd party repos with respect to centos
> here:
>
> http://wiki.centos.org/AdditionalResources/Repositories
>
> and i have a couple questions and observations. first, the entry for
> cento
Just wanted to share some success I had moving some Xen guests from
one server to another.
Problem Recap
We had Xen host on a single core 32-bit CentOS 5.4 installation on an
AMD Athlon 2.1 GhZ system that was giving hard drive errors and needed
to move the LVM-backed Xen images to another server.
On Mon, 2010-03-01 at 19:47 +0100, Niki Kovacs wrote:
> JohnS a écrit :
>
> > ---
> > That should be the right way /usr/share/apps then update it...
>
> 1) *What* should be the right way ?
>
> 2) then update it... update what ?
>
> Sorry, but this wasn't very helpful.
>
> I want to create a
On 02/03/10 00:41, Pete Kay wrote:
> Hi,
>
> Does anyone know how to turn on TOE ( TCP offload engine ) and RSS (
> Receive-Side Scaling)?
>
> Thanks,
> pete
> ___
> CentOS mailing list
> CentOS@centos.org
> http://lists.centos.org/mailman/listinfo/cento
JohnS wrote:
> Then any reason to not run the PERC in the 2850? Non of my DB machines
> run SWAP period. My thoughts on Linux swap is if I were to use it, it
> can't keep up the sync pace, been there.
>
>
these 2850 have only JBOD SCSI. PERC was an option, i didn't buy these,
I inherited th
JohnS a écrit :
> 1. Ok what I said was you are on the right way to doing it
>
> 2. Heres the easy way.
> Right Click on the Applications Menu Click on Edit Menus. I think you
> can figure the rest out it's pretty easy.
>
> OK manually you can put the *.desktop entry into /YourHomeDir/.gnom
On 3/1/2010 1:18 PM, Robinson Tiemuqinke wrote:
> Hi all,
> I've had a project to upload customer codes and some data to members
> inside a webfarm, the upload work will be done almost daily for quite a
> while. Customer needs the upload status be confirmed everytime and data
> will be verified lat
On Mon, 2010-03-01 at 22:15 +0100, Niki Kovacs wrote:
> That's on a per-user basis. I need the new menu entry for *all*
> users.
> Any idea how I could achieve that ?
Do the users already exist? If not, put your custom setup
into /etc/skel.
--
MELVILLE THEATRE ~ Melville Sask ~ http://www.me
On Mon, 2010-03-01 at 15:30 -0600, Frank Cox wrote:
> On Mon, 2010-03-01 at 22:15 +0100, Niki Kovacs wrote:
> > That's on a per-user basis. I need the new menu entry for *all*
> > users.
> > Any idea how I could achieve that ?
>
> Do the users already exist? If not, put your custom setup
> into
On Mon, 2010-03-01 at 13:02 -0800, John R Pierce wrote:
> JohnS wrote:
> > Then any reason to not run the PERC in the 2850? Non of my DB machines
> > run SWAP period. My thoughts on Linux swap is if I were to use it, it
> > can't keep up the sync pace, been there.
> >
> >
>
> these 2850 have
Hi All,
I have a server that is running nicely, except I have hit the maximum RAM (4gb)
and I wish to add more.
It is an ASUS board, AMD X64 dual core, nvidia nic.
What I want going to move to is a dell board, Intel Pentium M dual code, which
supports 8gb of RAM.
Can I just unplug the HD and
has anyone heard of UnRaid at: http://lime-technology.com/
Seems interesting, runs from USB.
What I like is that you can add drives to your array without having to destroy
it. And it lets you add any size drive that you want. You can mix, say 1tb and
2tb drives.
What other ways can I do this w
On Monday, March 01, 2010 1:14 PMLes Mikesell Wrote
>> Hi all,
>> I've had a project to upload customer codes and some data to members
>> inside a webfarm, the upload work will be done almost daily for quite
>> a while. Customer needs the upload status be confirmed everytime and
>> data will be
On Mon, Mar 1, 2010 at 5:27 PM, Slack-Moehrle
wrote:
> Hi All,
>
> I have a server that is running nicely, except I have hit the maximum RAM
> (4gb) and I wish to add more.
>
> It is an ASUS board, AMD X64 dual core, nvidia nic.
>
> What I want going to move to is a dell board, Intel Pentium M du
On Mon, 2010-03-01 at 14:27 -0800, Slack-Moehrle wrote:
> Hi All,
>
> I have a server that is running nicely, except I have hit the maximum RAM
> (4gb) and I wish to add more.
>
> It is an ASUS board, AMD X64 dual core, nvidia nic.
>
> What I want going to move to is a dell board, Intel Pentiu
On 3/1/2010 4:31 PM, Robinson Tiemuqinke wrote:
>
>
>> > I've had a project to upload customer codes and some data to members
>
>> > inside a webfarm, the upload work will be done almost daily for quite
>
>> > a while. Customer needs the upload status be confirmed everytime and
>
>> > data will be
ken wrote:
>> No, I'm not the OP. But, I found a solution for my system.
>>
>> During boot, I noticed an error line --
>> "BIOS fails cutoff age - ACPI might not work. Use acpi=force to fix."
>>
>> So I did; the machine now actually turns off after shutdown.
>
> Great work, Michael! Where did you
Slack-Moehrle wrote:
> Hi All,
>
> I have a server that is running nicely, except I have hit the maximum RAM
> (4gb) and I wish to add more.
>
> It is an ASUS board, AMD X64 dual core, nvidia nic.
>
> What I want going to move to is a dell board, Intel Pentium M dual code,
> which supports 8gb of
At Mon, 1 Mar 2010 14:27:36 -0800 (PST) CentOS mailing list
wrote:
>
> Hi All,
>
> I have a server that is running nicely, except I have hit the maximum RAM
> (4gb) and I wish to add more.
>
> It is an ASUS board, AMD X64 dual core, nvidia nic.
>
> What I want going to move to is a dell boa
On Mon, Mar 1, 2010 at 5:27 PM, Slack-Moehrle
wrote:
> Hi All,
>
> I have a server that is running nicely, except I have hit the maximum RAM
> (4gb) and I wish to add more.
>
> It is an ASUS board, AMD X64 dual core, nvidia nic.
>
> What I want going to move to is a dell board, Intel Pentium M du
Kwan,
>BTW, prior to reading your email I'd posted another message about
>moving Xen systems from one system to another. The Xen infrastructure
>can hide a lot of the system specific internals so you may consider
>virtualizing if you think this may be a regular occurence.
Very good point and I
Current release(5.4) comes with Perl 5.8 but I was wondering if next release
has Perl 5.10 as default.
Thanks
Arvind
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos
> Next, we copied the /etc/xen/xm_c32_001 configuration file to the
> replacement server. We generated a new UUID using the "uuidgen"
> utility. We also created a new MAC address. Finally, we started the
> instance:
Since you moved your virtual machine, you wouldn´t have to create a new
UUID and
53 matches
Mail list logo