Re: [CentOS] Need to test serial port connection

2009-02-27 Thread Anne Wilson
On Thursday 26 February 2009 20:45, Craig White wrote: > make sure that you've stopped any services and removed any apc software > that might claim the port and lock anything else out. > Yes, I uninstalled apcupsd. I checked system-config-services and made sure that I knew what everything is. I'

Re: [CentOS] Need to test serial port connection

2009-02-27 Thread Anne Wilson
On Thursday 26 February 2009 21:49, nate wrote: > Anne Wilson wrote: > > The docs that come with nut say that you can use either serial or usb. > > I certainly could be wrong but I would not expect the USB driver > to work over a serial port. Though the serial driver could work > over a USB->serial

Re: [CentOS] Easiest way to get samba up and working for Windows users?

2009-02-27 Thread Noob Centos Admin
I'm seriously befuddled by Samba now. I followed the good advice given and got the previous server set up nicely. I did the same thing on another one and it refuses to work. 1. useradd some users 2. gpasswd -a them to a "staff" group nd smbpasswd -a them 3. chmod g+s the staff directory 4. teste

[CentOS] TIME_WAITs...

2009-02-27 Thread John Doe
Hi, I was asked to check some TIME_WAITs "problems" (my boss thinks there should almost never be any) and I bumped into something strange... All of our servers have apparently normal (in my opinion) 60s TIME_WAITs (even if it strangely caps around 14000 in my tests)... But one of them behaves d

Re: [CentOS] Easiest way to get samba up and working for Windows users?

2009-02-27 Thread John Doe
From: Noob Centos Admin > 8. tail -f samba logs but nothing happens, it's like samba never see > the incoming request. Note that it doesn't log anything with smbclient > -L either. Did you try to raise the log level (log level = 3)? > I'm almost certain now that samba coder snuck in a devious r

Re: [CentOS] how can enable in mutltpath?

2009-02-27 Thread Kai Schaetzl
Ralph Angenendt wrote on Fri, 27 Feb 2009 02:10:12 +0100: > How can I use google to find things I am looking for? What is a google? Kai -- Kai Schätzl, Berlin, Germany Get your web at Conactive Internet Services: http://www.conactive.com ___ CentO

Re: [CentOS] how can enable in mutltpath?

2009-02-27 Thread John Doe
From: Kai Schaetzl > What is a google? http://lmgtfy.com/?q=google&l=1 JD ___ CentOS mailing list CentOS@centos.org http://lists.centos.org/mailman/listinfo/centos

Re: [CentOS] iptables rules to limit attack, connlimit

2009-02-27 Thread Sergej Kandyla
Kai Schaetzl пишет: > There are numerous tutorials out there how to use ratelimiting. Just > google. > > Kai > > Does anyone know how to implement some functional provided by patch-o-matic without patching the kernel ? centos5.2 box # iptables -A INPUT -p tcp --syn --dport 80 -m connlimit --

Re: [CentOS] Need to test serial port connection

2009-02-27 Thread Anne Wilson
On Friday 27 February 2009 00:17, Lanny Marcus wrote: > On Thu, Feb 26, 2009 at 5:17 AM, Anne Wilson wrote: > > I recently bought a new UPS, and I'm attempting to use nut to  monitor > > it. Following setup instructions everything seemed to go well until it > > came to testing the connection, whi

[CentOS] simple if statement

2009-02-27 Thread Tom Brown
Hi Below if $remaining is empty i want the if to finish - what is it i need to put in SOMETHING? if [ "$remaining" = "" ] ; then SOMETHING ; else kill -9 $remaining fi thanks? ___ CentOS mailing list CentOS@centos.org h

Re: [CentOS] simple if statement

2009-02-27 Thread John R. Dennison
On Fri, Feb 27, 2009 at 11:14:01AM +, Tom Brown wrote: > > Below if $remaining is empty i want the if to finish - what is it i need > to put in SOMETHING? > > if [ "$remaining" = "" ] ; then > SOMETHING ; > else > kill -9 $remaining > fi if [ "${remai

Re: [CentOS] Is GFS for HPC?

2009-02-27 Thread Karanbir Singh
Joe Barjo wrote: > First GFS test on 6 nodes (with gnbd) were ok, but there had been > unexplained kernel panics (even when not working) that prevented further > tests. Thats interesting to me, I've just recently been working with gfs - and using some of the newer kernels dont seem to have any

Re: [CentOS] simple if statement

2009-02-27 Thread Ralph Angenendt
Tom Brown wrote: > Hi > > Below if $remaining is empty i want the if to finish - what is it i need > to put in SOMETHING? > > if [ "$remaining" = "" ] ; then > SOMETHING ; > else > kill -9 $remaining > fi if [ "x${remaining}" != "x" ] ; then kill -9

Re: [CentOS] HylaFax and Com Ports

2009-02-27 Thread William L. Maltby
On Fri, 2009-02-27 at 02:07 +0100, Ralph Angenendt wrote: > William L. Maltby wrote: > > On Thu, 2009-02-26 at 09:46 -0800, Bill Campbell wrote: > > > We use Multitech modems exclusively, having tried many different > > > manufacturer's modems over the years, they have consistently > > > proved re

Re: [CentOS] simple if statement

2009-02-27 Thread Miguel Ángel MF
You have to put in NOTHING, i.e.: if [ "$remaining" = "" ] ; then ; else kill -9 $remaining fi A: Because it messes up the order in which people normally read text. Q: Why is top-posting such a bad thing? A: Top-posting. Q: What is the most annoying thing in e-mail?

Re: [CentOS] how can enable in mutltpath?

2009-02-27 Thread William L. Maltby
On Fri, 2009-02-27 at 11:31 +0100, Kai Schaetzl wrote: > Ralph Angenendt wrote on Fri, 27 Feb 2009 02:10:12 +0100: > > > How can I use google to find things I am looking for? > > What is a google? To us uninitiated, it _must_ be somewhat like a dongle, no? > > Kai > -- Bill __

Re: [CentOS] Need to test serial port connection

2009-02-27 Thread Radu Radutiu
> ./Setup install > * Checking kernel version (2.4.18 or later required)... > * Checking for glibc... > * Checking glibc version (2.2.4 or later required)... > Uncompressing JRE distribution > ./bin/jvmShell install /tmp/ML ./install/install.cfg > Extracting JVM files to /tmp/ML/jre > /tmp/ML/jre/b

Re: [CentOS] simple if statement

2009-02-27 Thread Per Qvindesland
I normally do it this way: if (length($remaining) == 0) { &do_exit; } Per Hi Below if $remaining is empty i want the if to finish - what is it i need to put in SOMETHING? if [ "$remaining" = "" ] ; then SOMETHING ; else kill -9 $remaining fi ___

[CentOS] Mod Security + CLAMAV -> Problem scan file

2009-02-27 Thread Adriano Frare
Squirrelmail, the module clamav not found files to scan, apache send for clamav NAME FILES differents. LOG AUDTLOG -> MODSECURITY mod_security-message: Access denied with code 500. Error verifying files: File "/tmp/webfiles/20090227-082448-192.168.1.11-" rejected by the approver

Re: [CentOS] simple if statement

2009-02-27 Thread William L. Maltby
On Fri, 2009-02-27 at 11:14 +, Tom Brown wrote: > Hi > > Below if $remaining is empty i want the if to finish - what is it i need > to put in SOMETHING? > > if [ "$remaining" = "" ] ; then > SOMETHING ; > else > kill -9 $remaining > fi if [ -n "$remaining" ]

[CentOS] Kerberos 1.6.3 on centos 4/5??

2009-02-27 Thread Thomas Johansson
Hi My problem is related to clientless authentication for printing. We are evaluating if it's worth the trouble on centos. Uppgrading cups is not a problem That i have already solved. Further research also states that kerberos have to be version 1.6.3. This is a big problem. Neither centos 4 n

Re: [CentOS] simple if statement

2009-02-27 Thread William L. Maltby
> > # Initialize remaing list and then > set "$remaining" # If empty $1 is null > while [ -n "$1" ] ; do >echo "$1" # remove this >kill -9 $ s/\$/$1/ # OOPS! >shift > done > > $ remaining="9997 9998 " > $ while [ -n "$1" ] ; do > >echo "$1" > >shift > > done > 9997 999

Re: [CentOS] Easiest way to get samba up and working for Windows users?

2009-02-27 Thread JohnS
On Fri, 2009-02-27 at 17:59 +0800, Noob Centos Admin wrote: > I'm seriously befuddled by Samba now. > > I followed the good advice given and got the previous server set up nicely. > > I did the same thing on another one and it refuses to work. > > 1. useradd some users > 2. gpasswd -a them to a

Re: [CentOS] how can enable in mutltpath?

2009-02-27 Thread Jim Perrin
On Fri, Feb 27, 2009 at 5:33 AM, John Doe wrote: > > From: Kai Schaetzl >> What is a google? > > http://lmgtfy.com/?q=google&l=1 Oh goodie. You just googled for google? What's next, dividing by zero? Maybe a trip down to the local gas station to play with matches? Don't you know that googling f

Re: [CentOS] how can enable in mutltpath?

2009-02-27 Thread John Thomas
Jim Perrin wrote: > Oh goodie. You just googled for google? What's next, dividing by zero? > Maybe a trip down to the local gas station to play with matches? Don't > you know that googling for google is about as dangerous as playing > around with the LHC, and is likely to cause the universe to impl

[CentOS] any softwares can capture port traffic in graph

2009-02-27 Thread adrian kok
Hi Any softwares can capture traffic in graph? eg: port 80 Thank you Send instant messages to your online friends http://uk.messenger.yahoo.com ___ CentOS mailing list CentOS@centos.org http://lists.centos.org/mailman/listinfo/centos

Re: [CentOS] any softwares can capture port traffic in graph

2009-02-27 Thread Fajar Priyanto
On Fri, Feb 27, 2009 at 9:03 PM, adrian kok wrote: > Any softwares can capture traffic in graph? > > eg: port 80 > MRTG, Cacti, Zabbix, Zenoss, Webalizer, Awstats, etc. ___ CentOS mailing list CentOS@centos.org http://lists.centos.org/mailman/listinfo/c

Re: [CentOS] how can enable in mutltpath?

2009-02-27 Thread Kai Schaetzl
William L. Maltby wrote on Fri, 27 Feb 2009 06:33:02 -0500: > To us uninitiated, it _must_ be somewhat like a dongle, no? I found this one as the nearest: http://en.wikipedia.org/wiki/Koogle Kai -- Kai Schätzl, Berlin, Germany Get your web at Conactive Internet Services: http://www.conactive.

[CentOS] nightly rsync has started to throw errors

2009-02-27 Thread Ray Leventhal
Hi all, I perform a nightly snapshot of /home to a USB attached drive scheduled via cron. The system is CentOS 5.2 and only gets attached to the internet periodically for updates, otherwise serves as a samba server to about 20 Windows clients. The rsync command being used is: rsync -av --delete

Re: [CentOS] simple if statement

2009-02-27 Thread Kevin Krieser
You don't really need to prepend the x if the $remaining is in quotes, do you? If you didn't use quotes, then you could end up with a error if $remaining isn't set. On Feb 27, 2009, at 5:24 AM, Ralph Angenendt wrote: > Tom Brown wrote: >> Hi >> >> Below if $remaining is empty i want the if t

Re: [CentOS] simple if statement

2009-02-27 Thread Stephen Harris
On Fri, Feb 27, 2009 at 11:14:01AM +, Tom Brown wrote: > Hi > > Below if $remaining is empty i want the if to finish - what is it i need > to put in SOMETHING? > > if [ "$remaining" = "" ] ; then > SOMETHING ; > else > kill -9 $remaining > fi A ":" on it's ow

[CentOS] centos 5.2 - latest rpms for mailcanner , clamav and spamassassin

2009-02-27 Thread Linux Advocate
Guys, What repo has rpms for mailscanner, clamav and spamassasin? ___ CentOS mailing list CentOS@centos.org http://lists.centos.org/mailman/listinfo/centos

Re: [CentOS] nightly rsync has started to throw errors

2009-02-27 Thread Fajar Priyanto
On Fri, Feb 27, 2009 at 9:40 PM, Ray Leventhal wrote: > rsync: mkstemp > "/media/bkup320G/cprcvs/c/Projects/WindowApps/DLL/HMRControlDLL/.CMDSettingsDialog.cpp,v.I5QnaM" > failed: Read-only file system (30) > rsync: failed to set times on > "/media/bkup320G/cprcvs/c/Projects/WindowApps/DLL/PSICont

Re: [CentOS] simple if statement

2009-02-27 Thread Ralph Angenendt
Kevin Krieser wrote: > You don't really need to prepend the x if the $remaining is in quotes, > do you? If you didn't use quotes, then you could end up with a error > if $remaining isn't set. Probably. It's just something I'm used to do :) Cheers, Ralph pgp10DbrpyejE.pgp Description: PGP

Re: [CentOS] centos 5.2 - latest rpms for mailcanner , clamav and spamassassin

2009-02-27 Thread Ralph Angenendt
Linux Advocate wrote: > What repo has rpms for mailscanner, clamav and spamassasin? I don't know a repository with mailscanner, clamav and spamassassin are in rpmforge. Cheers, Ralph pgpchZkedcZge.pgp Description: PGP signature ___ CentOS mailing li

Re: [CentOS] centos 5.2 - latest rpms for mailcanner , clamav and spamassassin

2009-02-27 Thread Craig White
On Fri, 2009-02-27 at 06:32 -0800, Linux Advocate wrote: > Guys, > > What repo has rpms for mailscanner, clamav and spamassasin? you can get clam* and newer spamassassin rpms from rpmforge mailscanner afaik, only from mailscanner.info Craig ___

Re: [CentOS] Need to test serial port connection - ALMOST THERE!

2009-02-27 Thread Anne Wilson
On Friday 27 February 2009 11:33:35 Radu Radutiu wrote: > > ./Setup install > > * Checking kernel version (2.4.18 or later required)... > > * Checking for glibc... > > * Checking glibc version (2.2.4 or later required)... > > Uncompressing JRE distribution > > ./bin/jvmShell install /tmp/ML ./insta

[CentOS] (a) WinPower RPM available? (b) where to install if use tar.gz file?

2009-02-27 Thread Lanny Marcus
Two quick and simple questions; I want to install the "WinPower" software for my new UPS. On their web site, they have a tar.gz file available for download. I know the reasons for staying with RPM, if at all possible. I've Googled and Yahood for ""WinPower"+RPM+Linux and get hits, but no obvious RP

Re: [CentOS] Need to test serial port connection

2009-02-27 Thread Anne Wilson
On Thursday 26 February 2009 13:37:00 William L. Maltby wrote: > > Feb 26 12:12:25 borg2 kernel: serial8250: ttyS0 at I/O 0x3f8 (irq = 4) is > > a 16550A > > Feb 26 12:12:25 borg2 kernel: serial8250: ttyS1 at I/O 0x2f8 (irq = 3) is > > a 16550A > > Didn't you say there was only one port? There migh

[CentOS] Repo order - priority plugins

2009-02-27 Thread Linux Advocate
Guys, what is the best way of arranging the repos with regards to their priority? Any ideas, especially for all non base ones? /etc/yum.repos.d/CentOS-Base.repo - priority = 1, 2 /etc/yum.repos.d/atrpms.repo /etc/yum.repos.d/epel.repo /etc/yum.repos.d/kbs-extras.repo /etc/yum.repos.d/kbs-misc

Re: [CentOS] TIME_WAITs...

2009-02-27 Thread Robert Moskowitz
John Doe wrote: > Hi, > > I was asked to check some TIME_WAITs "problems" (my boss thinks there should > almost never be any) and I bumped into something strange... > I SHOULD be able to answer this, I was involved when we solved the PANIX TCP-WAIT attack way back when... But the OS has chan

Re: [CentOS] centos 5.2 - latest rpms for mailcanner , clamav and spamassassin

2009-02-27 Thread Ned Slider
Linux Advocate wrote: > Guys, > > What repo has rpms for mailscanner, clamav and spamassasin? > RPMforge has clamav and spamassassin, but not mailscanner. Mailscanner has RPMs available on their site. ___ CentOS mailing list CentOS@centos.org http:/

Re: [CentOS] simple if statement

2009-02-27 Thread Tom Brown
> A ":" on it's own will do what you want. > > if [ "$remaining" = "" ] > then > : > else > kill -9 $remaining > fi > > But better would be > > if [ -n "$remaining" ] > then > kill -9 $remaining > fi > > thanks to all for the suggestions __

Re: [CentOS] nightly rsync has started to throw errors

2009-02-27 Thread John Thomas
Ray Leventhal wrote: > Any pointers or suggestions would be greatly appreciated. Probably a silly question, but does the user running rsync have write access to the backup directory? -- Sincerely, John Thomas ___ CentOS mailing list CentOS@centos.org

Re: [CentOS] centos 5.2 - latest rpms for mailcanner , clamav and spamassassin

2009-02-27 Thread Daniel Bird
Linux Advocate wrote: > Guys, > > What repo has rpms for mailscanner, clamav and spamassasin? > There is a subscription based repo available from FSL: http://www.fsl.com/index.php/barricademx/mailscanner-repository D ___ CentOS mailing list CentOS

Re: [CentOS] Repo order - priority plugins

2009-02-27 Thread Lanny Marcus
On 2/27/09, Linux Advocate wrote: > Guys, what is the best way of arranging the repos with regards to their > priority? Any ideas, especially for all non base ones? > > /etc/yum.repos.d/CentOS-Base.repo - priority = 1, 2 > > /etc/yum.repos.d/atrpms.repo > > /etc/yum.repos.d/epel.repo > > /etc/yum.

Re: [CentOS] simple if statement

2009-02-27 Thread William L. Maltby
On Fri, 2009-02-27 at 15:42 +0100, Ralph Angenendt wrote: > Kevin Krieser wrote: > > You don't really need to prepend the x if the $remaining is in quotes, > > do you? If you didn't use quotes, then you could end up with a error > > if $remaining isn't set. > > Probably. It's just something

Re: [CentOS] centos 5.2 - latest rpms for mailcanner , clamav and spamassassin

2009-02-27 Thread Linux Advocate
Guys, acording to the quickinstall.txt guide on the mailscanner site, there is an install.sh file which installs the mailscanner rpm, all the other perl rpms. Additionally, the site has also clam av and spamassassin installers too? any experience on these things? could just forego the rpms fr

Re: [CentOS] Need to test serial port connection

2009-02-27 Thread William L. Maltby
On Fri, 2009-02-27 at 14:51 +, Anne Wilson wrote: > On Thursday 26 February 2009 13:37:00 William L. Maltby wrote: > > > Feb 26 12:12:25 borg2 kernel: serial8250: ttyS0 at I/O 0x3f8 (irq = 4) is > > > a 16550A > > > Feb 26 12:12:25 borg2 kernel: serial8250: ttyS1 at I/O 0x2f8 (irq = 3) is > >

Re: [CentOS] Repo order - priority plugins

2009-02-27 Thread Linux Advocate
replies below... > On 2/27/09, Linux Advocate wrote: > > Guys, what is the best way of arranging the repos with regards to their > > priority? Any ideas, especially for all non base ones? > > > > /etc/yum.repos.d/CentOS-Base.repo - priority = 1, 2 > > > > /etc/yum.repos.d/atrpms.repo > > > > /etc

Re: [CentOS] Repo order - priority plugins

2009-02-27 Thread Jeff
On Fri, Feb 27, 2009 at 9:09 AM, Lanny Marcus wrote: > On 2/27/09, Linux Advocate wrote: >> Guys, what is the best way of arranging the repos with regards to their >> priority? Any ideas, especially for all non base ones? >> >> /etc/yum.repos.d/CentOS-Base.repo - priority = 1, 2 >> >> /etc/yum.re

Re: [CentOS] centos 5.2 - latest rpms for mailcanner , clamav and spamassassin

2009-02-27 Thread Dan Carl
Linux Advocate wrote: > Guys, acording to the quickinstall.txt guide on the mailscanner site, there > is an install.sh file which installs the mailscanner rpm, all the other perl > rpms. Additionally, the site has also clam av and spamassassin installers too? > > any experience on these things?

Re: [CentOS] nightly rsync has started to throw errors

2009-02-27 Thread Toby Bluhm
Ray Leventhal wrote: > Hi all, > > I perform a nightly snapshot of /home to a USB attached drive scheduled > via cron. The system is CentOS 5.2 and only gets attached to the > internet periodically for updates, otherwise serves as a samba server to > about 20 Windows clients. > > The rsync comma

Re: [CentOS] Need to test serial port connection

2009-02-27 Thread fred smith
On Fri, Feb 27, 2009 at 10:18:34AM -0500, William L. Maltby wrote: > > On Fri, 2009-02-27 at 14:51 +, Anne Wilson wrote: > > On Thursday 26 February 2009 13:37:00 William L. Maltby wrote: > > > > Feb 26 12:12:25 borg2 kernel: serial8250: ttyS0 at I/O 0x3f8 (irq = 4) > > > > is > > > > a 16550

Re: [CentOS] TIME_WAITs...

2009-02-27 Thread nate
John Doe wrote: > > So, am I correct in thinking that seeing thousands TWs when there was a > burst of thousands connections is normal? yes that is normal > Any idea why so few TWs on this server? Any conf file I should check? I spent a bunch of time researching TIME_WAIT on linux and didn't f

Re: [CentOS] (a) WinPower RPM available? (b) where to install if use tar.gz file?

2009-02-27 Thread Joseph L. Casale
>I tried "yum install winpower" and the >response was "no package winpower available" (rpmforge is one of the >yum repositories I use, so it's not there, with that name). It's not, but that search method could be expanded: # yum list \*winpower\* # yum list \*win\* # yum list \*win\* |grep -i etc

Re: [CentOS] nightly rsync has started to throw errors

2009-02-27 Thread John Doe
From: Ray Leventhal > rsync: mkstemp > "/media/bkup320G/cprcvs/c/Projects/WindowApps/DLL/HMRControlDLL/.CMDSettingsDialog.cpp,v.I5QnaM" > failed: Read-only file system (30) > rsync: failed to set times on > "/media/bkup320G/cprcvs/c/Projects/WindowApps/DLL/PSIControlDLL": > Read-only file system

Re: [CentOS] nightly rsync has started to throw errors [solved, sorta]

2009-02-27 Thread Ray Leventhal
Ray Leventhal wrote: > Hi all, > > I perform a nightly snapshot of /home to a USB attached drive scheduled > via cron. The system is CentOS 5.2 and only gets attached to the > internet periodically for updates, otherwise serves as a samba server to > about 20 Windows clients. > > The rsync comma

Re: [CentOS] any softwares can capture port traffic in graph

2009-02-27 Thread Les Mikesell
Fajar Priyanto wrote: > On Fri, Feb 27, 2009 at 9:03 PM, adrian kok > wrote: >> Any softwares can capture traffic in graph? >> >> eg: port 80 >> > > MRTG, Cacti, Zabbix, Zenoss, Webalizer, Awstats, etc. The snmp based tools won't separate usage by port. Port 80 is a special case since you may

Re: [CentOS] Need to test serial port connection

2009-02-27 Thread John R Pierce
fred smith wrote: > And some of t hose boards have a set of pins/header on the board and a little > "slot fillter" thingy with a 9 pin serial socket on it and a small ribbon > cable > to plug into that header, which will then provide access to the second serial > port. I've seen a lot of ASUS boa

Re: [CentOS] how can enable in mutltpath?

2009-02-27 Thread Scott Silva
on 2-27-2009 3:33 AM William L. Maltby spake the following: > On Fri, 2009-02-27 at 11:31 +0100, Kai Schaetzl wrote: >> Ralph Angenendt wrote on Fri, 27 Feb 2009 02:10:12 +0100: >> >>> How can I use google to find things I am looking for? >> What is a google? > > To us uninitiated, it _must_ be so

Re: [CentOS] how can enable in mutltpath?

2009-02-27 Thread William L. Maltby
On Fri, 2009-02-27 at 09:57 -0800, Scott Silva wrote: > on 2-27-2009 3:33 AM William L. Maltby spake the following: > > On Fri, 2009-02-27 at 11:31 +0100, Kai Schaetzl wrote: > >> Ralph Angenendt wrote on Fri, 27 Feb 2009 02:10:12 +0100: > >> > >>> How can I use google to find things I am looking

Re: [CentOS] simple if statement

2009-02-27 Thread Scott Silva
on 2-27-2009 3:32 AM � spake the following: > You have to put in NOTHING, i.e.: > > if [ "$remaining" = "" ] ; then > �� � � � � ; > � � � �else > � � � � � �kill -9 $remaining > fi > > > A: Because it messes up the order in which people normally read text. > Q: Why is top-posting such a bad thi

Re: [CentOS] (a) WinPower RPM available? (b) where to install if use tar.gz file?

2009-02-27 Thread Lanny Marcus
On 2/27/09, Joseph L. Casale wrote: >>I tried "yum install winpower" and the >>response was "no package winpower available" (rpmforge is one of the >>yum repositories I use, so it's not there, with that name). > > It's not, but that search method could be expanded: > # yum list \*winpower\* > # yu

Re: [CentOS] Repo order - priority plugins

2009-02-27 Thread Kai Schaetzl
Linux Advocate wrote on Fri, 27 Feb 2009 06:52:13 -0800 (PST): > /etc/yum.repos.d/atrpms.repo > > /etc/yum.repos.d/epel.repo > > /etc/yum.repos.d/kbs-extras.repo > /etc/yum.repos.d/kbs-misc.repo > > /etc/yum.repos.d/rpmforge.repo you can put rpmforge at 10 and epel and atrpms somewhere at 20,

Re: [CentOS] (a) WinPower RPM available? (b) where to install if use tar.gz file?

2009-02-27 Thread Joseph L. Casale
>Thank you. I will give apcupsd a shot. We don't have any APC units, >but, possibly, it will work with our UPS. If not, I will try to get >WinPower running properly. I will also try your suggestions for >searching with yum. I forgot to mention Network UPS Tools (NUT). That also works with many. jl

Re: [CentOS] (a) WinPower RPM available? (b) where to install if use tar.gz file?

2009-02-27 Thread Phil Schaffner
Lanny Marcus wrote: ... > (b) If I need to download the tar.gz file and install from that, it > looks from their documentation that they install into > /opt/MonitorSoftware Is it better to install into /usr/local or > into /opt? What is the recommendation for a CentOS box, when > installing non

Re: [CentOS] how can enable in mutltpath?

2009-02-27 Thread Phil Schaffner
Scott Silva wrote: > on 2-27-2009 3:33 AM William L. Maltby spake the following: >> On Fri, 2009-02-27 at 11:31 +0100, Kai Schaetzl wrote: >>> Ralph Angenendt wrote on Fri, 27 Feb 2009 02:10:12 +0100: >>> How can I use google to find things I am looking for? >>> What is a google? >> To us unin

Re: [CentOS] ext3 heavy file fragmentation with NFS write

2009-02-27 Thread Stephen John Smoogen
On Fri, Feb 27, 2009 at 12:31 AM, Andrzej Szymański wrote: > Hello, > > Does anybody know how to avoid the file fragmentation when a file is > created over NFSv3? > > A file created locally is OK: > dd bs=32k if=/dev/zero of=test count=32x1024 conv=fsync > filefrag test > test: 10 extents found, p

Re: [CentOS] any softwares can capture port traffic in graph

2009-02-27 Thread adrian kok
Hi Les You are right That I would like to get more info about it Could you send more info eg: website how to configure Thank you --- Les Mikesell wrote: > Fajar Priyanto wrote: > > On Fri, Feb 27, 2009 at 9:03 PM, adrian kok > wrote: > >> Any softwares can capture traffic in graph? > >> >

Re: [CentOS] Kerberos 1.6.3 on centos 4/5??

2009-02-27 Thread Stephen John Smoogen
On Fri, Feb 27, 2009 at 5:03 AM, Thomas Johansson wrote: > Hi > > My problem is related to clientless authentication for printing. We are > evaluating if it's worth the trouble on centos. Uppgrading cups is not a > problem That i have already solved. Further research also states that > kerberos ha

Re: [CentOS] HylaFax and Com Ports

2009-02-27 Thread James B. Byrne
On Thu, Feb 26, 2009, Joseph L. Casale wrote: > I need to setup HylaFax which leads to my first question, anyone > got an opinion on whether or not to use HylaFax or HylaFax+? We use Hylafax together with Avantfax and are very pleased with the results. I cannot speak to HylaFax+ . We also use Mu

Re: [CentOS] Repo order - priority plugins

2009-02-27 Thread Scott Silva
on 2-27-2009 10:31 AM Kai Schaetzl spake the following: > Linux Advocate wrote on Fri, 27 Feb 2009 06:52:13 -0800 (PST): > >> /etc/yum.repos.d/atrpms.repo >> >> /etc/yum.repos.d/epel.repo >> >> /etc/yum.repos.d/kbs-extras.repo >> /etc/yum.repos.d/kbs-misc.repo >> >> /etc/yum.repos.d/rpmforge.repo

Re: [CentOS] (a) WinPower RPM available? (b) where to install if use tar.gz file?

2009-02-27 Thread Lanny Marcus
On 2/27/09, Joseph L. Casale wrote: >>Thank you. I will give apcupsd a shot. We don't have any APC units, >>but, possibly, it will work with our UPS. If not, I will try to get >>WinPower running properly. I will also try your suggestions for >>searching with yum. > > I forgot to mention Network UP

Re: [CentOS] (a) WinPower RPM available? (b) where to install if use tar.gz file?

2009-02-27 Thread Lanny Marcus
On 2/27/09, Phil Schaffner wrote: > Lanny Marcus wrote: >> (b) If I need to download the tar.gz file and install from that, it >> looks from their documentation that they install into >> /opt/MonitorSoftware Is it better to install into /usr/local or >> into /opt? What is the recommendation fo

Re: [CentOS] Kerberos 1.6.3 on centos 4/5??

2009-02-27 Thread Thomas Johansson
Stephen John Smoogen wrote: > On Fri, Feb 27, 2009 at 5:03 AM, Thomas Johansson wrote: > >> Hi >> >> My problem is related to clientless authentication for printing. We are >> evaluating if it's worth the trouble on centos. Uppgrading cups is not a >> problem That i have already solved. Further

Re: [CentOS] Repo order - priority plugins

2009-02-27 Thread Lanny Marcus
On 2/27/09, Linux Advocate wrote: > Guys, what is the best way of arranging the repos with regards to their > priority? Any ideas, especially for all non base ones? > > /etc/yum.repos.d/CentOS-Base.repo - priority = 1, 2 > > /etc/yum.repos.d/atrpms.repo > > /etc/yum.repos.d/epel.repo > There have

Re: [CentOS] any softwares can capture port traffic in graph

2009-02-27 Thread Les Mikesell
adrian kok wrote: > Hi Les > > You are right > > That I would like to get more info about it > > Could you send more info eg: website how to configure The ntop home site is http://www.ntop.org, but the easiest install would be to add the epel yum repository if you don't have is set up already

Re: [CentOS] (a) WinPower RPM available? (b) where to install if use tar.gz file?

2009-02-27 Thread Lanny Marcus
On 2/27/09, Joseph L. Casale wrote: >>I tried "yum install winpower" and the >>response was "no package winpower available" (rpmforge is one of the >>yum repositories I use, so it's not there, with that name). > > Try Apcupsd, it is a very complete enterprisable package that just runs > well. Ap

Re: [CentOS] (a) WinPower RPM available? (b) where to install if use tar.gz file?

2009-02-27 Thread Lanny Marcus
On 2/27/09, Joseph L. Casale wrote: >>Thank you. I will give apcupsd a shot. We don't have any APC units, >>but, possibly, it will work with our UPS. If not, I will try to get >>WinPower running properly. I will also try your suggestions for >>searching with yum. > > I forgot to mention Network UP

Re: [CentOS] (a) WinPower RPM available? (b) where to install if use tar.gz file?

2009-02-27 Thread nate
Lanny Marcus wrote: > I've got the package below installed now. Is that the right one? Now, > I need to RFM to find out how to configure and run it it's only part of it, typically there are 3 nut packages, one for perl, one for the main nut, and one that contains cgi scripts(sometimes anothe

Re: [CentOS] (a) WinPower RPM available? (b) where to install if use tar.gz file?

2009-02-27 Thread Lanny Marcus
On 2/27/09, Lanny Marcus wrote: > On 2/27/09, Joseph L. Casale wrote: >> I forgot to mention Network UPS Tools (NUT). That also works with many. > > I've got the package below installed now. Is that the right one? Now, > I need to RFM to find out how to configure and run it > > Running Tran

Re: [CentOS] (a) WinPower RPM available? (b) where to install if use tar.gz file?

2009-02-27 Thread Lanny Marcus
On 2/27/09, nate wrote: >> I've got the package below installed now. Is that the right one? Now, >> I need to RFM to find out how to configure and run it > > it's only part of it, typically there are 3 nut packages, one for > perl, one for the main nut, and one that contains cgi scripts(somet

Re: [CentOS] (a) WinPower RPM available? (b) where to install if use tar.gz file?

2009-02-27 Thread Lanny Marcus
On 2/27/09, Lanny Marcus wrote: > On 2/27/09, nate wrote: >> First I would check what version of NUT your installing and try to >> validate whether or not your UPS is supported by checking the homepage: The Nicomar Electronics UPS we bought a few weeks ago (made in Bogota, Colombia) is not on

Re: [CentOS] Kerberos 1.6.3 on centos 4/5??

2009-02-27 Thread Stephen John Smoogen
On Fri, Feb 27, 2009 at 12:27 PM, Thomas Johansson wrote: > Stephen John Smoogen wrote: >> On Fri, Feb 27, 2009 at 5:03 AM, Thomas Johansson wrote: >> >>> Hi >>> >>> My problem is related to clientless authentication for printing. We are >>> evaluating if it's worth the trouble on centos. Uppgrad

Re: [CentOS] (a) WinPower RPM available? (b) where to install if use tar.gz file?

2009-02-27 Thread Joseph L. Casale
>Apcupsd apparently runs with some of the UPS not made by APC, but >looks like it will not work with mine. Here's what's in the Service >data for apcupsd: > >apcupsd (pid 6568) is running... >Error contacting host localhost port 3551: Connection refused That doesn't mean it can't contact your ups,

Re: [CentOS] (a) WinPower RPM available? (b) where to install if use tar.gz file?

2009-02-27 Thread Joseph L. Casale
>I've got the package below installed now. Is that the right one? No >Running Transaction > Installing: perl-UPS-Nut # [1/1] >Installed: perl-UPS-Nut.noarch 0:0.04-1.el5.rf >Complete! Slow down a bit son, anything with a "Perl-" in the front is, well, a p

Re: [CentOS] Repo order - priority plugins

2009-02-27 Thread Linux Advocate
> > On Fri, Feb 27, 2009 at 9:09 AM, Lanny Marcus wrote: > > On 2/27/09, Linux Advocate wrote: > >> Guys, what is the best way of arranging the repos with regards to their > >> priority? Any ideas, especially for all non base ones? > >> > >> /etc/yum.repos.d/CentOS-Base.repo - priority = 1, 2

Re: [CentOS] HylaFax and Com Ports

2009-02-27 Thread Linux Advocate
> > On Thu, Feb 26, 2009, Joseph L. Casale wrote: > > I need to setup HylaFax which leads to my first question, anyone > > got an opinion on whether or not to use HylaFax or HylaFax+? > > We use Hylafax together with Avantfax and are very pleased with the > results. I cannot speak to HylaFax+

Re: [CentOS] Repo order - priority plugins

2009-02-27 Thread Linux Advocate
Thanx kal, and to all who replied. i have understood the issue better. > > > /etc/yum.repos.d/atrpms.repo > > > > /etc/yum.repos.d/epel.repo > > > > /etc/yum.repos.d/kbs-extras.repo > > /etc/yum.repos.d/kbs-misc.repo > > > > /etc/yum.repos.d/rpmforge.repo > > you can put rpmforge at 10 and

Re: [CentOS] (a) WinPower RPM available? (b) where to install if use tar.gz file?

2009-02-27 Thread Filipe Brandenburger
Hi, On Fri, Feb 27, 2009 at 19:39, Joseph L. Casale wrote: > Looks like rpmfind doesn't show any for RHEL :/ You might have to roll your > own. > Let's try and get Apcupsd working first, your config was wrong to start so > its worth > trying again. NUT RPMs seems to be available from EPEL. NUT

Re: [CentOS] how can enable in mutltpath?

2009-02-27 Thread James A. Peltier
On Thu, 26 Feb 2009, chloe K wrote: Hi all   How can I enable CONFIG_IP_ROUTE_MULTIPATH_CACHE  to support multi path   Thank you I am currently using multipath with stock CentOS kernel. I did however have to use the RDAC driver provided by Dell to fully support the md3000 attached to it.