Re: [CentOS] Intel SATA controller (cmiiw) not recognized by Centos 5.1 installation?

2008-03-17 Thread Yu-Hui Jin
Hi, Jason, Thanks and I tried the first method to start with the parameter, but it was extremely slow loading each screen. one time I got to the testing media page and i chose Test. and it seemed stuck there for ever so I forced shutdown my box. I also tried to download and install the AHCI drive

Re: [CentOS] CentOS 5.1 single (server) CD ??

2008-03-17 Thread Niki Kovacs
Chas a écrit : Hi, Any chance of a CentOS 5.1 single server CD similiar to the one for 4.4? That CD wa very useful for 90% of the instals that I've been doing and whatever extras were needed were eaily added through Yum. I'm doing all my installs, be it server or desktop, starting from a stri

Re: [CentOS] Should I update to DRBD 82?

2008-03-17 Thread Amos Shapira
On Tue, Mar 18, 2008 at 10:50 AM, Joseph L. Casale < [EMAIL PROTECTED]> wrote: > >So now - more of a "yum" question - what can I put in some file to > prevent yum from trying to upgrade drbd8 to drbd82 for now? > > Edit your /etc/yum.conf and add the following: > exclude=drbd* kmod-drbd* Thanks.

RE: [CentOS] remote command execution

2008-03-17 Thread Joseph L. Casale
> Rsh uses only the source IP for authentication - which might be OK on > well firewalled internal networks but it generally is not used these > days. The same concept will work from ssh too, where you can use keys > for passwordless access. Just > ssh host 'nohup command &' > > On the other hand

RE: [CentOS] Should I update to DRBD 82?

2008-03-17 Thread Joseph L. Casale
>So now - more of a "yum" question - what can I put in some file to prevent yum >from trying to upgrade drbd8 to drbd82 for now? Edit your /etc/yum.conf and add the following: exclude=drbd* kmod-drbd* jlc ___ CentOS mailing list CentOS@centos.org http:

Re: [CentOS] remote command execution

2008-03-17 Thread Les Mikesell
Kenneth Wolcott wrote: I won't allow rsh to contact my CentOS machines. ssh, ssl, http, but no rsh. Too insecure, especially from a Windows machine. Rsh uses only the source IP for authentication - which might be OK on well firewalled internal networks but it generally is not used these d

Re: [CentOS] remote command execution

2008-03-17 Thread Devin Henderson
nohup will allow you to run a command that is not connected to the shell: nohup command >> nohup.log & On Mon, Mar 17, 2008 at 5:24 PM, Joseph L. Casale <[EMAIL PROTECTED]> wrote: > >I'm wrong! Uh! Take that mister know-it-all. > > > >Check out: > > > >http://www.faqs.org/faqs/unix-faq/faq/p

Re: [CentOS] remote command execution

2008-03-17 Thread Kenneth Wolcott
I won't allow rsh to contact my CentOS machines. ssh, ssl, http, but no rsh. Too insecure, especially from a Windows machine. Ken Wolcott On Mon, Mar 17, 2008 at 4:24 PM, Joseph L. Casale <[EMAIL PROTECTED]> wrote: > >I'm wrong! Uh! Take that mister know-it-all. > > > >Check out: > > > >http:/

RE: [CentOS] remote command execution

2008-03-17 Thread Joseph L. Casale
>I'm wrong! Uh! Take that mister know-it-all. > >Check out: > >http://www.faqs.org/faqs/unix-faq/faq/part3/section-2.html > >(God I've got some issues) > >-Ross Heh, I see the example for sh and I am note to sure exactly what it's doing but I will give it a try! That looks most promising as Win2k

Re: [CentOS] remote command execution

2008-03-17 Thread Ross S. W. Walker
I'm wrong! Uh! Take that mister know-it-all. Check out: http://www.faqs.org/faqs/unix-faq/faq/part3/section-2.html (God I've got some issues) -Ross - Original Message - From: [EMAIL PROTECTED] <[EMAIL PROTECTED]> To: centos@centos.org Sent: Mon Mar 17 18:39:07 2008 Subject: Re: [Cen

Re: [CentOS] CentOS 4.5 - Apache 2.0.52

2008-03-17 Thread Tom Brown
Look at the init script: # Set HTTPD=/usr/sbin/httpd.worker in /etc/sysconfig/httpd to use a # server with the thread-based "worker" MPM; BE WARNED that some modules # may not work correctly with a thread-based MPM; notably PHP will # refuse to start. excellent thanks ___

Re: [CentOS] remote command execution

2008-03-17 Thread Ross S. W. Walker
I got the BSD and negate forms mixed up and forgot the &. C:\rsh host "stty -hup; command&" -Ross - Original Message - From: [EMAIL PROTECTED] <[EMAIL PROTECTED]> To: centos@centos.org Sent: Mon Mar 17 18:27:58 2008 Subject: Re: [CentOS] remote command execution Use rsh and in the r

Re: [CentOS] remote command execution

2008-03-17 Thread Ross S. W. Walker
Use rsh and in the remote command preface it with stty -nohup, like such: C:\rsh "stty -nohup;" This will tell the command to disassociate from the shell. -Ross - Original Message - From: [EMAIL PROTECTED] <[EMAIL PROTECTED]> To: 'centos@centos.org' Sent: Mon Mar 17 18:13:48 2008 Su

Re: [CentOS] Should I update to DRBD 82?

2008-03-17 Thread Amos Shapira
On Mon, Mar 17, 2008 at 11:04 AM, Johnny Hughes <[EMAIL PROTECTED]> wrote: > Amos Shapira wrote: > > > As far as I'm aware DRBD works fine for me. Is there a way I can find > out > > about the new release and weather I should upgrade? > > Basically, see the details here: > > http://www.drbd.org/re

Re: [CentOS] remote command execution

2008-03-17 Thread Kari Salovaara
Joseph L. Casale wrote: I need to launch a job remotely from a Windows machine on a CentOS box, the caveat is that I can't maintain a connection once I have initiated the job. Anyone got an idea how I can accomplish this? Thanks! jlc winscp http://winscp.net -- Kari Salovaara Hanko, Finla

RE: [CentOS] remote command execution

2008-03-17 Thread Mike Kercher
Try using screen? > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On Behalf Of Joseph L. Casale > Sent: Monday, March 17, 2008 5:14 PM > To: 'centos@centos.org' > Subject: [CentOS] remote command execution > > I need to launch a job remotely from a Windows mac

[CentOS] remote command execution

2008-03-17 Thread Joseph L. Casale
I need to launch a job remotely from a Windows machine on a CentOS box, the caveat is that I can't maintain a connection once I have initiated the job. Anyone got an idea how I can accomplish this? Thanks! jlc ___ CentOS mailing list CentOS@centos.org

[CentOS] Boot from FC SAN CentOS 5.1 x86-64

2008-03-17 Thread nate
Anything special needed to boot from a SAN in CentOS 5.1 x86-64 ? We have a new system running a QLA2342 FC HBA connected to a SAN, have a volume exported to it and would like to boot from it. We PXEboot kickstart and that works, the installer sees the disk, installs to it, and reboots. When GRUB

Re: [CentOS] DRBD question.

2008-03-17 Thread Fabian Arrotin
On Mon, 2008-03-17 at 16:40 -0400, Steve Campbell wrote: > I'm going to have to be a little vague on this one, but hope I provide > enough to make the question clear. I'm not doing the work on this > server, a co-worker is, but I said I would ask for him. > > He is trying to get DRBD installed.

Re: [CentOS] DRBD question.

2008-03-17 Thread Gary Richardson
I think the last time I did it, I got the tarball. I either did an rpmbuild -ta on it, or there was an rpm target in the makefile. Regardless, I ended up with two RPM's -- a kernel module and the tools. On any systems that had different kernels, I had to recompile to get the kernel module. On Mon

Re: [CentOS] Running CentOS 4.6 domUs on CentOS 5.1 dom0 and domUs crash

2008-03-17 Thread Tim Verhoeven
On Mon, Mar 17, 2008 at 8:05 PM, Nathan Grennan <[EMAIL PROTECTED]> wrote: > I have a CentOS 5.1 dom0 running on a machine with two cores and 4gb > of memory. It runs three 4.6 domUs and one 5.1 domU. Just out of the > blue the other night all the 4.6 domUs crashed, but the dom0 stayed up. > I

[CentOS] DRBD question.

2008-03-17 Thread Steve Campbell
I'm going to have to be a little vague on this one, but hope I provide enough to make the question clear. I'm not doing the work on this server, a co-worker is, but I said I would ask for him. He is trying to get DRBD installed. He's using Centos 5.1 and the yum repos, but is getting problems

Re: [CentOS] CentOS 4.5 - Apache 2.0.52

2008-03-17 Thread Ralph Angenendt
Tom Brown wrote: > does the stock apache in CentOS 4.5 - ie 2.0.52 come compiled in 'Pre-Fork' > mode? I ask as we have an app that needs to run against apache and this > needs to run in 'Worker Mode' as opposed to 'Pre Fork' > > If this is the case then i guess i will need to rebuild it from the

[CentOS] CentOS 4.5 - Apache 2.0.52

2008-03-17 Thread Tom Brown
Hi does the stock apache in CentOS 4.5 - ie 2.0.52 come compiled in 'Pre-Fork' mode? I ask as we have an app that needs to run against apache and this needs to run in 'Worker Mode' as opposed to 'Pre Fork' If this is the case then i guess i will need to rebuild it from the .src.rpm but can

[CentOS] Running CentOS 4.6 domUs on CentOS 5.1 dom0 and domUs crash

2008-03-17 Thread Nathan Grennan
I have a CentOS 5.1 dom0 running on a machine with two cores and 4gb of memory. It runs three 4.6 domUs and one 5.1 domU. Just out of the blue the other night all the 4.6 domUs crashed, but the dom0 stayed up. I ran xm console (domU-name) and got the Oops information below. I didn't get anythi

[CentOS] CDRW-DVD Mount Problem, Centos 5.1, Intel board...

2008-03-17 Thread Pam Astor
I'm having a problem mounting my new CDRW DVD in my new machine I just built. The motherboard is an Intel DP35DP, and I connected the CDRW DVD via ribbon cable into the motherboard IDE slot. Centos 5.1 is installed and functioning fine so far (ot

Re: [CentOS] Intel SATA controller (cmiiw) not recognized by Centos 5.1 installation?

2008-03-17 Thread Jason
boot with linux all-generic-ide or try to change your bios sata emulation to ahci Yu-Hui Jin wrote: > Hi, there, > > I tried to install Centos 5.1 on a Dell Inspiron 530 box I just bought, > but failed due to invalid drive. The installation did not recognize > either the DVD nor the hard disk.

[CentOS] Intel SATA controller (cmiiw) not recognized by Centos 5.1 installation?

2008-03-17 Thread Yu-Hui Jin
Hi, there, I tried to install Centos 5.1 on a Dell Inspiron 530 box I just bought, but failed due to invalid drive. The installation did not recognize either the DVD nor the hard disk. Joseph from the community said it is likely that Centos can't recognize the controller -- Intel SATA controller

Re: [CentOS] Centos 5.1 installation problems -- couldn't find devices

2008-03-17 Thread Yu-Hui Jin
Thanks. Joseph, my box actually has Windows XP pre-installed (instead of Vista). So I'll check that option in my BIOS when I get back home, although I don't recall I've seen one. I'll also send out an email to this list to ask if someone else has solved similar problem. Let me know if there's o

[CentOS] radius WPA

2008-03-17 Thread David Hláčik
Hi , will be someone so kind and will provide mi howto, or working configuration of Acess Point WPA authentification using Radius Server . I have followed a lot of howtos, unfortunatelly no one works for me. Using Centos 5.1 . Thanks, Regards D.

Re: [CentOS] Re: 10Gbit ethernet

2008-03-17 Thread Richard Bellamy
Jake Grimmett wrote: On Friday 14 March 2008 10:43, Kay Diederichs wrote: Jake Grimmett schrieb: If I could ask question about 10Gbit ethernet We have a 70 node cluster built on Centos 5.1, using NFS to mount user home areas. At the moment the network is a bottleneck, and it's goin

Re: [CentOS] clarifications

2008-03-17 Thread Paul Heinlein
On Mon, 17 Mar 2008, James B. Byrne wrote: Reply-To: <[EMAIL PROTECTED]> Sam Drinkard wrote: Hello all, I've been trying to get spamassassin and clamav working, but got really confused when I realized there are various incarnations of the software. Originally, I started out with just sp

Re: [CentOS] clarifications

2008-03-17 Thread James B. Byrne
Reply-To: <[EMAIL PROTECTED]> Sam Drinkard wrote: > Hello all, > >I've been trying to get spamassassin and clamav working, but got > really confused when I realized there are various incarnations of the > software. Originally, I started out with just spamassassin, but > learned there is also

Re: [CentOS] internal messages problem with postfix

2008-03-17 Thread Mufit Eribol
Brian wrote: Mufit Eribol wrote: Hello, After a server crash, I re-installed postfix, cyrus-imapd, amavisd-new, spamassassin on a Centos 5.1 box. But, now mail system behaves somewhat different. There is no problem with mail receiving/sending from/to internet. Before the crash, mail system

Re: [CentOS] MySQL 4.1 on Centos 5 ?

2008-03-17 Thread Sergej Kandyla
Sergej Kandyla wrote: Hi All, Could anyone tell me, how to correctly install MySQL4.1 on Centos 5 ? Thanks, all! The problem is solved. Also I've tried to run our application on default centos mysql5, but have some errors with sql queries. In our application used very big, long and diffi

Re: [CentOS] which open source wiki CMS?

2008-03-17 Thread Simon Jolle
2008/3/17, Karanbir Singh <[EMAIL PROTECTED]>: > While I am sure there are lists and forums out there which would be good > places to ask that question, the centos list is not that place. If your > question isnt centos specific - which in this case it isnt. please look > for a more appropriate p

Re: [CentOS] internal messages problem with postfix

2008-03-17 Thread Brian
Mufit Eribol wrote: Hello, After a server crash, I re-installed postfix, cyrus-imapd, amavisd-new, spamassassin on a Centos 5.1 box. But, now mail system behaves somewhat different. There is no problem with mail receiving/sending from/to internet. Before the crash, mail system used to sent

Re: [CentOS] CentOS 5.1 single (server) CD ??

2008-03-17 Thread Karanbir Singh
Chas wrote: > Hi, > Any chance of a CentOS 5.1 single server CD similiar to the one for 4.4? > That CD wa very useful for 90% of the instals that I've been doing and > whatever extras were needed were eaily added through Yum. yes, the chances are good :D -- Karanbir Singh : http://www.karan.o

Re: [CentOS] which open source wiki CMS?

2008-03-17 Thread Karanbir Singh
Simon Jolle wrote: > What are the most popular and wide-spread Open Source Wiki projects > based on PHP/MySQL? Criteria are good community support, a lot of > third-party modules and good documentation. > > The most famous named MediaWiki I don't wish to use. Anybody is running > Pmwiki? While I

[CentOS] internal messages problem with postfix

2008-03-17 Thread Mufit Eribol
Hello, After a server crash, I re-installed postfix, cyrus-imapd, amavisd-new, spamassassin on a Centos 5.1 box. But, now mail system behaves somewhat different. There is no problem with mail receiving/sending from/to internet. Before the crash, mail system used to sent internal messages to

Re: [CentOS] which open source wiki CMS?

2008-03-17 Thread Simon Jolle
2008/3/17, Craig White <[EMAIL PROTECTED]>: > there are hundreds and hundreds of CMS systems that meet your criteria > (PHP/MySQL) > > http://www.cmsmatrix.org/ > > Which has much more authoritative comparisons > > unless you are going to lay out more specific needs, there's little > point fo

RE: [CentOS] Centos 5.1 installation problems -- couldn't find devices

2008-03-17 Thread Joseph L. Casale
>It seemed both attempts failed due to the installation program couldn't find >either the SATA DVD drive or the SATA hard disk. However, it's hard to >believe Centos 5.1 installation couldn't recognize >these two SATA devices. > >I'm now stuck. Any suggestion or advice is much appreciated. Ce