Re: [CentOS] How to find out what's eating the bandwidth

2021-04-14 Thread hw
On 3/28/21 7:36 PM, Frank Cox wrote: On Sun, 28 Mar 2021 13:14:16 -0400 Matthew Miller wrote: Is this a home network or a business one? It's a really basic setup "routers from Staples" (dlink and tplink brands I think) plugged into the ISP's modems. You're right that you generally can't se

Re: [CentOS] How to find out what's eating the bandwidth

2021-03-29 Thread Matthew Miller
On Sun, Mar 28, 2021 at 11:36:00AM -0600, Frank Cox wrote: > It's a really basic setup "routers from Staples" (dlink and tplink brands I > think) plugged into the ISP's modems. > > You're right that you generally can't see everything from just any computer > > on a network, at least if it's switch

Re: [CentOS] How to find out what's eating the bandwidth

2021-03-28 Thread Thomas Stephen Lee
On Sun, Mar 28, 2021 at 11:06 PM Frank Cox wrote: > > On Sun, 28 Mar 2021 13:14:16 -0400 > Matthew Miller wrote: > > > Is this a home network or a business one? > > It's a really basic setup "routers from Staples" (dlink and tplink brands I > think) plugged into the ISP's modems. > > > You're rig

Re: [CentOS] How to find out what's eating the bandwidth

2021-03-28 Thread Frank Cox
On Sun, 28 Mar 2021 13:14:16 -0400 Matthew Miller wrote: > Is this a home network or a business one? It's a really basic setup "routers from Staples" (dlink and tplink brands I think) plugged into the ISP's modems. > You're right that you generally can't see everything from just any computer >

Re: [CentOS] How to find out what's eating the bandwidth

2021-03-28 Thread Matthew Miller
On Sun, Mar 28, 2021 at 10:53:49AM -0600, Frank Cox wrote: > Is there a program that will tell me what's eating the bandwidth on a lan? > I'm thinking of something that would tell me that a.b.c.d is using so many > mbps and a.b.c.e is using this many and so on. Is this a home network or a busines

Re: [CentOS] How to find out what's eating the bandwidth

2021-03-28 Thread Bob Marcan
On Sun, 28 Mar 2021 10:53:49 -0600 Frank Cox wrote: > Is there a program that will tell me what's eating the bandwidth on a lan? > > I'm thinking of something that would tell me that a.b.c.d is using so many > mbps and a.b.c.e is using this many and so on. > > Or can just-another-computer-on-t

Re: [CentOS] how to find out the number of updates for a system

2019-05-22 Thread mark
Chris Adams wrote: > Once upon a time, mark said: > >> Ralf Prengel wrote: >> >>> Hallo, >>> I need the information how many updates are available for a system. >>> What is the best way to find it out in a one line bash script. >>> >>> >> yum check-update, perhaps? > > Note that "yum check-update"

Re: [CentOS] how to find out the number of updates for a system

2019-05-22 Thread Nux!
w.nux.ro - Original Message - > From: "SternData" > To: "CentOS mailing list" > Sent: Wednesday, 22 May, 2019 16:03:39 > Subject: Re: [CentOS] how to find out the number of updates for a system > maybe > yum -q check-update | wc -l > > On 5/22/19

Re: [CentOS] how to find out the number of updates for a system

2019-05-22 Thread SternData
maybe yum -q check-update | wc -l On 5/22/19 8:42 AM, Ralf Prengel wrote: > Hallo, > I need the information how many updates are available for a system. > What is the best way to find it out in a one line bash script. > > Von meinem iPad gesendet > __

Re: [CentOS] how to find out the number of updates for a system

2019-05-22 Thread Chris Adams
Once upon a time, John Pierce said: > otoh, its pretty rare that an update has a new dependency...if the > package is installed, its existing dependencies are also installed, and if > they have updates, check-update would show them all, would it not? It's not as rare as you might think, espec

Re: [CentOS] how to find out the number of updates for a system

2019-05-22 Thread John Pierce
On Wed, May 22, 2019 at 7:49 AM Chris Adams wrote: > Once upon a time, mark said: > > Ralf Prengel wrote: > > > Hallo, > > > I need the information how many updates are available for a system. > > > What is the best way to find it out in a one line bash script. > > > > > yum check-update, perhap

Re: [CentOS] how to find out the number of updates for a system

2019-05-22 Thread Nux!
, 2019 15:48:00 > Subject: Re: [CentOS] how to find out the number of updates for a system > yum check-updates 2>/dev/null|grep -A1000 "^$"|grep -vc "^$" > > -- > Sent from the Delta quadrant using Borg technology! > > Nux! > www.nux.ro > >

Re: [CentOS] how to find out the number of updates for a system

2019-05-22 Thread Chris Adams
Once upon a time, mark said: > Ralf Prengel wrote: > > Hallo, > > I need the information how many updates are available for a system. > > What is the best way to find it out in a one line bash script. > > > yum check-update, perhaps? Note that "yum check-update" or "yum list updates" won't tell y

Re: [CentOS] how to find out the number of updates for a system

2019-05-22 Thread Nux!
yum check-updates 2>/dev/null|grep -A1000 "^$"|grep -vc "^$" -- Sent from the Delta quadrant using Borg technology! Nux! www.nux.ro - Original Message - > From: "Ralf Prengel" > To: "CentOS mailing list" > Sent: Wednesday, 22 May, 2019 14:42:53 > Subject: [CentOS] how to find out the n

Re: [CentOS] how to find out the number of updates for a system

2019-05-22 Thread Steffen Kröger
Hey Mark, one quick and dirty possibility: a=`yum check-updates | awk '{ print $2 }' |grep -v ":" |grep -v mirror |wc -l` ; echo $(($a - 1)) Best regards Steffen ___ CentOS mailing list CentOS@centos.org https://lists.centos.org/mailman/listinfo/cent

Re: [CentOS] how to find out the number of updates for a system

2019-05-22 Thread mark
Ralf Prengel wrote: > Hallo, > I need the information how many updates are available for a system. > What is the best way to find it out in a one line bash script. > yum check-update, perhaps? mark ___ CentOS mailing list CentOS@centos.org https:

Re: [CentOS] how to find recently installed font packages

2016-08-25 Thread ken
On 08/25/2016 01:00 PM, Kay Schenk wrote: On 08/22/2016 08:47 PM, geo.inbox.ignored wrote: greetings. in an attempt to display correct fonts in firefox instead of squares with binary values, i installed wrong fonts and made things worse. how do i find out what fonts are, as i did not think to

Re: [CentOS] how to find recently installed font packages

2016-08-25 Thread Kay Schenk
On 08/22/2016 08:47 PM, geo.inbox.ignored wrote: > > greetings. > > in an attempt to display correct fonts in firefox instead of squares > with binary values, i installed wrong fonts and made things worse. > > how do i find out what fonts are, as i did not think to make note > of what i was add

Re: [CentOS] how to find recently installed font packages

2016-08-23 Thread Jon LaBadie
On Tue, Aug 23, 2016 at 08:28:35AM -0500, geo.inbox.ignored wrote: > > > besides versatility of yum, vastness of arguments is, for me, an > enjoyable learning process. > > when i found yumex wanting to also remove libreoffice files, i > dropped back to yum. when yum also wanted to remove libreof

Re: [CentOS] how to find recently installed font packages

2016-08-23 Thread geo.inbox.ignored
hello Scott. On 08/23/2016 04:40 AM, Scott Robbins wrote: > On Mon, Aug 22, 2016 at 10:47:06PM -0500, geo.inbox.ignored wrote: >> >> greetings. >> >> in an attempt to display correct fonts in firefox instead of squares >> with binary values, i installed wrong fonts and made things worse. >> >> ho

Re: [CentOS] how to find recently installed font packages

2016-08-23 Thread Scott Robbins
On Mon, Aug 22, 2016 at 10:47:06PM -0500, geo.inbox.ignored wrote: > > greetings. > > in an attempt to display correct fonts in firefox instead of squares > with binary values, i installed wrong fonts and made things worse. > > how do i find out what fonts are, as i did not think to make note >

Re: [CentOS] how to find recently installed font packages

2016-08-22 Thread geo.inbox.ignored
On 08/22/2016 11:17 PM, geo.inbox.ignored wrote: <<>> > should i use 'rpm -e --nodeps [package-name]' instead of yum? > > ria, i want to be sure i do not screw worse. > ===> decided to go ahead with using 'rpm' and that did the trick. now to figure out hth to get correct fonts installed. tha

Re: [CentOS] how to find recently installed font packages

2016-08-22 Thread geo.inbox.ignored
thank you for replying, John, Frank. On 08/22/2016 10:56 PM, John R Pierce wrote: > On 8/22/2016 8:47 PM, geo.inbox.ignored wrote: >> in an attempt to display correct fonts in firefox instead of squares >> with binary values, i installed wrong fonts and made things worse. >> >> how do i find out

Re: [CentOS] how to find recently installed font packages

2016-08-22 Thread Frank Cox
On Mon, 22 Aug 2016 22:47:06 -0500 geo.inbox.ignored wrote: > how do i find out what fonts are, as i did not think to make note > of what i was adding? /var/log/yum.log -- MELVILLE THEATRE ~ Real D 3D Digital Cinema ~ www.melvilletheatre.com ___ CentO

Re: [CentOS] how to find recently installed font packages

2016-08-22 Thread John R Pierce
On 8/22/2016 8:47 PM, geo.inbox.ignored wrote: in an attempt to display correct fonts in firefox instead of squares with binary values, i installed wrong fonts and made things worse. how do i find out what fonts are, as i did not think to make note of what i was adding? did you install these v

Re: [CentOS] how to find unknown ip address?

2013-05-31 Thread Ted Miller
On 05/28/2013 10:04 PM, Fred Smith wrote: > On Tue, May 28, 2013 at 08:54:03PM -0400, SilverTip257 wrote: >> On Tue, May 28, 2013 at 6:38 PM, Kahlil Hodgson < >> kahlil.hodg...@dealmax.com.au> wrote: >> >>> Also the arpwatch program might help if you are trying to track down >>> mysterious devices

Re: [CentOS] how to find unknown ip address?

2013-05-28 Thread James Hogarth
> > > > > Also the arpwatch program might help if you are trying to track down > > > mysterious devices popping up on your network. > > > > > > > +1 for arpwatch > > > > You beat me to mentioning it. ;) > > Arpwatch is nice and in the syslog the unusual system would be called out as a bogon assumi

Re: [CentOS] how to find unknown ip address?

2013-05-28 Thread Fred Smith
On Tue, May 28, 2013 at 08:54:03PM -0400, SilverTip257 wrote: > On Tue, May 28, 2013 at 6:38 PM, Kahlil Hodgson < > kahlil.hodg...@dealmax.com.au> wrote: > > > Also the arpwatch program might help if you are trying to track down > > mysterious devices popping up on your network. > > > > +1 for ar

Re: [CentOS] how to find unknown ip address?

2013-05-28 Thread SilverTip257
On Tue, May 28, 2013 at 6:38 PM, Kahlil Hodgson < kahlil.hodg...@dealmax.com.au> wrote: > Also the arpwatch program might help if you are trying to track down > mysterious devices popping up on your network. > +1 for arpwatch You beat me to mentioning it. ;) > > K > > Kahlil (Kal) Hodgson

Re: [CentOS] how to find unknown ip address?

2013-05-28 Thread Kahlil Hodgson
Also the arpwatch program might help if you are trying to track down mysterious devices popping up on your network. K Kahlil (Kal) Hodgson GPG: C9A02289 Head of Technology (m) +61 (0) 4 2573 0382 DealMax Pty Ltd(w) +61 (0)

Re: [CentOS] how to find unknown ip address?

2013-05-28 Thread Kahlil Hodgson
Running 'arp -n' on a machine that you think might receive packets from the unknown host might also do the job. K Kahlil (Kal) Hodgson GPG: C9A02289 Head of Technology (m) +61 (0) 4 2573 0382 DealMax Pty Ltd(w) +61 (0) 3 90

Re: [CentOS] how to find unknown ip address?

2013-05-28 Thread Barry Brimer
>> hadi motamedi wrote: >> >>> Dear All >>> On my network, there is a node with unknown ip address so I do not >>> know about its range and it can be any of the range xx.xx.xx.xx . Is >>> there any tool on my centos server to find this unknown ip address >>> (irrespective of the range of my centos

Re: [CentOS] how to find unknown ip address?

2013-05-28 Thread James Hogarth
Thank you for your reply. So you mean it is independent of my centos > server ip address range or it just shows the ip addresses in the range > of my centos self ip address? (as I don't have a priori information > about that remote node unknown ip address) > As much as I'm reluctant to respond gi

Re: [CentOS] how to find unknown ip address?

2013-05-27 Thread hadi motamedi
On 5/28/13, Barry Brimer wrote: > > > hadi motamedi wrote: > >>Dear All >>On my network, there is a node with unknown ip address so I do not >>know about its range and it can be any of the range xx.xx.xx.xx . Is >>there any tool on my centos server to find this unknown ip address >>(irrespective

Re: [CentOS] how to find unknown ip address?

2013-05-27 Thread Barry Brimer
hadi motamedi wrote: >Dear All >On my network, there is a node with unknown ip address so I do not >know about its range and it can be any of the range xx.xx.xx.xx . Is >there any tool on my centos server to find this unknown ip address >(irrespective of the range of my centos server self ip ra

Re: [CentOS] how to find unknown ip address?

2013-05-27 Thread anax
tcpdump On 2013-05-28 07:03, hadi motamedi wrote: > Dear All > On my network, there is a node with unknown ip address so I do not > know about its range and it can be any of the range xx.xx.xx.xx . Is > there any tool on my centos server to find this unknown ip address > (irrespective of the range

Re: [CentOS] how to find...

2012-03-05 Thread fred smith
On Mon, Mar 05, 2012 at 01:27:01PM +0100, Peter Kjellström wrote: > On Sunday 04 March 2012 21.15.03 fred smith wrote: > > I'm trying to find out from which repo I got xiphos and its matching > > sword libraries from, and somehow am not finding it. hints, anyone? > > > > thanks! > > On CentOS-6 y

Re: [CentOS] how to find...

2012-03-05 Thread Peter Kjellström
On Sunday 04 March 2012 21.15.03 fred smith wrote: > I'm trying to find out from which repo I got xiphos and its matching > sword libraries from, and somehow am not finding it. hints, anyone? > > thanks! On CentOS-6 you can use yumdb to get real data (saved explicitly when a pkg is installed):

Re: [CentOS] how to find...

2012-03-04 Thread Yves Bellefeuille
On Sunday 04 March 2012, fred smith wrote: > but since yum knows which repos have it available, when it isn't > currently installed, I'd think it would also know where it came > from after it was installed, more directly than it appears from > this sort of evidence. Then try "yum info xiphos".

Re: [CentOS] how to find...

2012-03-04 Thread fred smith
On Sun, Mar 04, 2012 at 10:12:17PM -0500, Alfred von Campe wrote: > On Mar 4, 2012, at 21:55, fred smith wrote: > > > it's already installed (via "yum install xiphos") and I need to know > > which repository it actually came from. I think it came from Centos, > > but dont' know how to be sure. "yu

Re: [CentOS] how to find...

2012-03-04 Thread Alfred von Campe
On Mar 4, 2012, at 21:55, fred smith wrote: > it's already installed (via "yum install xiphos") and I need to know > which repository it actually came from. I think it came from Centos, > but dont' know how to be sure. "yum list installed" merely shows it > as installed,but doesn't list the repo f

Re: [CentOS] how to find...

2012-03-04 Thread fred smith
On Sun, Mar 04, 2012 at 09:37:42PM -0500, Phil Savoie wrote: > On 03/04/2012 09:15 PM, fred smith wrote: > > I'm trying to find out from which repo I got xiphos and its matching > > sword libraries from, and somehow am not finding it. hints, anyone? > > > > thanks! > > A quick google search turne

Re: [CentOS] how to find...

2012-03-04 Thread Phil Savoie
On 03/04/2012 09:15 PM, fred smith wrote: > I'm trying to find out from which repo I got xiphos and its matching > sword libraries from, and somehow am not finding it. hints, anyone? > > thanks! A quick google search turned up this: http://www.crosswire.org/wiki/Module_Repositories#Other_Reposit

Re: [CentOS] how to find source of data loss / corruption

2011-12-18 Thread Rudi Ahlers
Cool, thanx :) On Fri, Dec 16, 2011 at 2:16 AM, Ljubomir Ljubojevic wrote: > Vreme: 12/16/2011 12:22 AM, Rudi Ahlers piše: >> John, >> >> Where do I get inotifywait ? >> >> >> yum what provides "*/inotifywait" didn't return anything >> >> >> root@mars:[/]$ yum whatprovides "*/inotifywait" >> Load

Re: [CentOS] how to find source of data loss / corruption

2011-12-16 Thread John Doe
From: Rudi Ahlers > Where do I get inotifywait ? > yum what provides "*/inotifywait" didn't return anything Got inotify-tools from repoforge. JD ___ CentOS mailing list CentOS@centos.org http://lists.centos.org/mailman/listinfo/centos

Re: [CentOS] how to find source of data loss / corruption

2011-12-15 Thread Ljubomir Ljubojevic
Vreme: 12/16/2011 12:22 AM, Rudi Ahlers piše: > John, > > Where do I get inotifywait ? > > > yum what provides "*/inotifywait" didn't return anything > > > root@mars:[/]$ yum whatprovides "*/inotifywait" > Loaded plugins: fastestmirror > Loading mirror speeds from cached hostfile > * base: mirror

Re: [CentOS] how to find source of data loss / corruption

2011-12-15 Thread Rudi Ahlers
On Thu, Dec 15, 2011 at 1:29 PM, John Doe wrote: > From: Rudi Ahlers > >> For example, a photo would be uploaded last night and today when we >> checked it, it doesn't show on the website. So we check if the file is >> on the server, and exists but is 0KB in size. Last night it still >> worked fi

Re: [CentOS] how to find source of data loss / corruption

2011-12-15 Thread Rudi Ahlers
On Thu, Dec 15, 2011 at 1:48 PM, anax wrote: > Hi Rudi > we once had a similar problem on a Web: > > This Web had this in particular that its home-page needed to be deleted > daily and of course reinstalled immediately. > Then, in a new version of the Web it did not need this delete/reinstall > cy

Re: [CentOS] how to find source of data loss / corruption

2011-12-15 Thread anax
Hi Rudi we once had a similar problem on a Web: This Web had this in particular that its home-page needed to be deleted daily and of course reinstalled immediately. Then, in a new version of the Web it did not need this delete/reinstall cycle any more, so the webadmin just removed the link to th

Re: [CentOS] how to find source of data loss / corruption

2011-12-15 Thread John Doe
From: Rudi Ahlers > For example, a photo would be uploaded last night and today when we > checked it, it doesn't show on the website. So we check if the file is > on the server, and exists but is 0KB in size. Last night it still > worked fine. The photo is 482Kb in size. Only the size changed to

Re: [CentOS] how to find out promiscuous mode

2010-05-02 Thread Nifty Cluster Mitch
On Thu, Feb 04, 2010 at 09:45:26AM +1100, Les Bell wrote: > Vadkan Jozsef wrote: > > >> > How can I find out that someone is using it's network card in > promiscuous mode in a subnet? > << > > http://sourceforge.net/projects/prodetect/ > Strictly you cannot tell if a remote card is in promiscu

Re: [CentOS] how to find out promiscuous mode

2010-02-06 Thread Markus Falb
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 03/02/2010 23:28, Bill Campbell wrote: > On Wed, Feb 03, 2010, Vadkan Jozsef wrote: >> How can I find out that someone is using it's network card in >> promiscuous mode in a subnet? > > We use the swatch log watcher, to detect lines like this in >

Re: [CentOS] how to find out promiscuous mode

2010-02-03 Thread Les Bell
"Les Bell" wrote: >> http://sourceforge.net/projects/prodetect/ << Sorry - just remembered that's a Windows program. The classic tool for monitoring IP/Ethernet address pairings is arpwatch, but unlike prodetect, it will only report an ARP cache poisoning attack, not someone silently sniffing (

Re: [CentOS] how to find out promiscuous mode

2010-02-03 Thread Les Bell
Vadkan Jozsef wrote: >> How can I find out that someone is using it's network card in promiscuous mode in a subnet? << http://sourceforge.net/projects/prodetect/ Best, --- Les Bell [http://www.lesbell.com.au] Tel: +61 2 9451 1144 ___ CentOS mailin

Re: [CentOS] how to find out promiscuous mode

2010-02-03 Thread Bill Campbell
On Wed, Feb 03, 2010, Vadkan Jozsef wrote: >How can I find out that someone is using it's network card in >promiscuous mode in a subnet? We use the swatch log watcher, to detect lines like this in /var/log/messages (this is from a system running VMware virtual machines in bridging mode so this is

Re: [CentOS] how to find last updates for Centos 5.3?

2009-12-09 Thread Brian Mathis
On Mon, Dec 7, 2009 at 6:25 PM, Karanbir Singh wrote: > On 07/12/09 23:19, Brian Mathis wrote: >> Not true, and it's the thing that's most irritating about this policy. >>   The RPMs are still there, just not the sqlite repodata files that yum >> needs.  So if you got to a mirror, you can see all

Re: [CentOS] how to find last updates for Centos 5.3?

2009-12-07 Thread Karanbir Singh
On 07/12/09 23:19, Brian Mathis wrote: > Not true, and it's the thing that's most irritating about this policy. > The RPMs are still there, just not the sqlite repodata files that yum > needs. So if you got to a mirror, you can see all of the files, but > yum doesn't work. well, Brian - you se

Re: [CentOS] how to find last updates for Centos 5.3?

2009-12-07 Thread Brian Mathis
On Mon, Dec 7, 2009 at 6:03 PM, R P Herrold wrote: > On Mon, 7 Dec 2009, Alan McKay wrote: > >>> I wish I had access to a Centos update folder AS IT EXISTED before >>> Centos 5.4 was released.  The last update set that applied to 5.3,in >>> other words. >> >> Crap, I just removed one with no backu

Re: [CentOS] how to find last updates for Centos 5.3?

2009-12-07 Thread Brian Mathis
On Mon, Dec 7, 2009 at 6:12 PM, John R Pierce wrote: > Lars Hecking wrote: >>> Any ideas about how to go back in time and get the last 5.3 update batch?? >>> >> >>  Grab a copy of centos/5.3/updates along with centos/5.3/os from your >>  nearest CentOS mirror and set up your own local repository.

Re: [CentOS] how to find last updates for Centos 5.3?

2009-12-07 Thread John R Pierce
Lars Hecking wrote: >> Any ideas about how to go back in time and get the last 5.3 update batch?? >> > > Grab a copy of centos/5.3/updates along with centos/5.3/os from your > nearest CentOS mirror and set up your own local repository. > thats been purged from the mirrors.

Re: [CentOS] how to find last updates for Centos 5.3?

2009-12-07 Thread Greg Bailey
Paul Johnson wrote: > I wish I had access to a Centos update folder AS IT EXISTED before > Centos 5.4 was released. The last update set that applied to 5.3,in > other words. But I can't figure how to get that, because Centos > servers just have the current updates under a folder marked 5. If I >

Re: [CentOS] how to find last updates for Centos 5.3?

2009-12-07 Thread Lars Hecking
> Any ideas about how to go back in time and get the last 5.3 update batch?? Grab a copy of centos/5.3/updates along with centos/5.3/os from your nearest CentOS mirror and set up your own local repository. ___ CentOS mailing list CentOS@centos.org h

Re: [CentOS] how to find last updates for Centos 5.3?

2009-12-07 Thread Alan McKay
On Mon, Dec 7, 2009 at 6:00 PM, Alan McKay wrote: >> I wish I had access to a Centos update folder AS IT EXISTED before >> Centos 5.4 was released.  The last update set that applied to 5.3,in >> other words. > > Crap, I just removed one with no backups. Actually, nope, I still have a copy.All

Re: [CentOS] how to find last updates for Centos 5.3?

2009-12-07 Thread Alan McKay
> I wish I had access to a Centos update folder AS IT EXISTED before > Centos 5.4 was released.  The last update set that applied to 5.3,in > other words. Crap, I just removed one with no backups. -- “Don't eat anything you've ever seen advertised on TV” - Michael Pollan, author of "I

Re: [CentOS] how to find out dependencies

2009-05-03 Thread Ned Slider
Jerry Geis wrote: > At install I had Gnome and Not KDE. > > doing rpm -qa | grep qt results in > qt-3.3.6-23.el5 > qt4-4.2.1-1 > > How can I find out what package loaded the qt4 and qt? > Easy way... 'yum erase qt4' and see what deps yum would like to remove. For example: # yum erase qt4 Load

Re: [CentOS] how to find out dependencies

2009-05-03 Thread Duncan Hutty
Jerry Geis wrote: > At install I had Gnome and Not KDE. > > doing rpm -qa | grep qt results in > qt-3.3.6-23.el5 > qt4-4.2.1-1 rpm -q --whatrequires qt{,4} -- Duncan Hutty ___ CentOS mailing list CentOS@centos.org http://lists.centos.org/mailman/listin

Re: [CentOS] How to find out values from dhcp query

2009-03-12 Thread Scott Silva
on 3-12-2009 12:29 PM Robert Moskowitz spake the following: > Kai Schaetzl wrote: >> Robert Moskowitz wrote on Thu, 12 Mar 2009 11:26:49 -0400: >> >> >>> How can I find out what variables and their values were provided by a >>> dhcpd server to my client? >>> >> what values? You can see mos

Re: [CentOS] How to find out values from dhcp query

2009-03-12 Thread Ray Van Dolson
On Thu, Mar 12, 2009 at 04:59:13PM -0400, Robert Moskowitz wrote: > Ray Van Dolson wrote: > > On Thu, Mar 12, 2009 at 03:29:09PM -0400, Robert Moskowitz wrote: > > > >> Kai Schaetzl wrote: > >> > >>> Robert Moskowitz wrote on Thu, 12 Mar 2009 11:26:49 -0400: > >>> > >>> > >>> > >>

Re: [CentOS] How to find out values from dhcp query

2009-03-12 Thread Robert Moskowitz
Ray Van Dolson wrote: > On Thu, Mar 12, 2009 at 03:29:09PM -0400, Robert Moskowitz wrote: > >> Kai Schaetzl wrote: >> >>> Robert Moskowitz wrote on Thu, 12 Mar 2009 11:26:49 -0400: >>> >>> >>> How can I find out what variables and their values were provided by a dhcpd s

Re: [CentOS] How to find out values from dhcp query

2009-03-12 Thread Ray Van Dolson
On Thu, Mar 12, 2009 at 03:29:09PM -0400, Robert Moskowitz wrote: > Kai Schaetzl wrote: > > Robert Moskowitz wrote on Thu, 12 Mar 2009 11:26:49 -0400: > > > > > >> How can I find out what variables and their values were provided by a > >> dhcpd server to my client? > >> > > > > what values

Re: [CentOS] How to find out values from dhcp query

2009-03-12 Thread Robert Moskowitz
Kai Schaetzl wrote: > Robert Moskowitz wrote on Thu, 12 Mar 2009 11:26:49 -0400: > > >> How can I find out what variables and their values were provided by a >> dhcpd server to my client? >> > > what values? You can see most parts of the negotiation on the server in > real time. dhcpd log

Re: [CentOS] How to find out values from dhcp query

2009-03-12 Thread Kai Schaetzl
Robert Moskowitz wrote on Thu, 12 Mar 2009 11:26:49 -0400: > How can I find out what variables and their values were provided by a > dhcpd server to my client? what values? You can see most parts of the negotiation on the server in real time. dhcpd logs by default all requests and the answers t

Re: [CentOS] How to find out values from dhcp query

2009-03-12 Thread Tim Verhoeven
On Thu, Mar 12, 2009 at 4:26 PM, Robert Moskowitz wrote: > How can I find out what variables and their values were provided by a > dhcpd server to my client? > > I thought perhaps /etc/dhclient-eth1.conf, but that is not the place... > Check the lease file in /var/lib/dhclient Regards, Tim --

Re: [CentOS] How to find out values from dhcp query

2009-03-12 Thread Ray Van Dolson
On Thu, Mar 12, 2009 at 11:26:49AM -0400, Robert Moskowitz wrote: > How can I find out what variables and their values were provided by a > dhcpd server to my client? > > I thought perhaps /etc/dhclient-eth1.conf, but that is not the place... Try /var/lib/dhclient/*.leases. Ray

Re: [CentOS] How to find available groups for installation via yum ?

2008-04-01 Thread D Steward
> then I've started googling the net and finally I found > the magic combination. One very merciful soul posted the golden > combination. > > yum groupinstall "XFCE-4.4" > It's unfortunate, but I've been tripped up by yum when doing searches. I feel that especially when doing the '

Re: [CentOS] How to find available groups for installation via yum ?

2008-04-01 Thread Niki Kovacs
Primorec a écrit : question: Is there a way to check which packages are available for the installation as a 'group' using yum ? # yum grouplist ;o) ___ CentOS mailing list CentOS@centos.org http://lists.centos.org/mailman/listinfo/centos

Re: [CentOS] How to find available groups for installation via yum ?

2008-04-01 Thread Primorec
Thank you John R Pierce and Robert fot your prompt reply Igor Primorec wrote: > Is there a way to check which packages are available for the > installation as a 'group' using yum ? John wrote: yum grouplist yum groupinfo "some group name" Robert wrote: yum grouplist yum groupi

RE: [CentOS] How to find available groups for installation via yum ?

2008-03-31 Thread Robert - elists
question: Is there a way to check which packages are available for the installation as a 'group' using yum ? TIA Igor igor try yum grouplist yum groupinfo "whatever group name" for full info maybe try man yum or http://www.centos.org/docs/5/html/yum/ http

Re: [CentOS] How to find available groups for installation via yum ?

2008-03-31 Thread John R Pierce
Primorec wrote: Is there a way to check which packages are available for the installation as a 'group' using yum ? yum grouplist also, see... yum groupinfo "some group name" ___ CentOS mailing list CentOS@centos.org http://lists.centos.org/ma

Re: [CentOS] how to find it?

2008-02-17 Thread John R Pierce
Sobari Tanuwijaya wrote: Dear All, How to find out that a certain lib place on which package? I prompted that a certain library is not exists on my system, but I don't know which package should I look for to install. yum provides ___ CentOS maili

RE: [CentOS] how to find out which is the system disk by bios?

2007-08-06 Thread Ross S. W. Walker
> -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On Behalf Of Farkas Levente > Sent: Monday, August 06, 2007 11:14 AM > To: CentOS mailing list > Subject: [CentOS] how to find out which is the system disk by bios? > > hi, > how can i know which is the system disk