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

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

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

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

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

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

2021-03-28 Thread Frank Cox
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-the-network actually see that sort of information? I don't know

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

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

2019-05-22 Thread 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 8

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,

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,

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

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 Ma

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

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

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

2019-05-22 Thread Ralf Prengel
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 ___ CentOS mailing list CentOS@centos.org https://lists.centos.org/mailman/listinfo/centos

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

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

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. >> >>

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.

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 ___

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

[CentOS] how to find recently installed font packages

2016-08-22 Thread geo.inbox.ignored
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 adding? tia. -- peace out. CentOS GNU/Linux 6.8 tc,hago. g

[CentOS] how to find RAID card world wide ID?

2013-10-08 Thread mcclnx mcc
we have DELL server with PERC RAID card in it.  O.S is CENTOS 5.5. Can anyone tell me how to find SAS address (World wide ID) on RAID card? Thanks. ___ CentOS mailing list CentOS@centos.org http://lists.centos.org/mailman/listinfo/centos

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 popping up on

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 given

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

2013-05-28 Thread Barry Brimer
hadi motamedi motamed...@gmail.com 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

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

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 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 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 arpwatch

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 assuming a different

[CentOS] how to find unknown ip address?

2013-05-27 Thread hadi motamedi
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 range) ? Thank you

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 of

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

2013-05-27 Thread Barry Brimer
hadi motamedi motamed...@gmail.com 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-27 Thread hadi motamedi
On 5/28/13, Barry Brimer li...@brimer.org wrote: hadi motamedi motamed...@gmail.com 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

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-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 you can use

[CentOS] how to find...

2012-03-04 Thread fred smith
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! -- --- Under no circumstances will I ever purchase anything offered to

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:

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 turned up this:

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 from

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. yum list

Re: [CentOS] how to find...

2012-03-04 Thread Yves Bellefeuille
On Sunday 04 March 2012, fred smith fre...@fcshome.stoneham.ma.us 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.

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 off...@plnet.rs 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 Loaded

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

2011-12-16 Thread John Doe
From: Rudi Ahlers r...@softdux.com 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

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

2011-12-15 Thread Rudi Ahlers
Hi, 2 websites, hosted on 2 different CentOS 5.7 servers (one being very new, about 3 weeks old) keeps loosing data - but it's more like it's corrupted than being deleted. 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

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

2011-12-15 Thread John Doe
From: Rudi Ahlers r...@softdux.com 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

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

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 a...@ayni.com 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

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 jd...@yahoo.com wrote: From: Rudi Ahlers r...@softdux.com 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

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:

[CentOS] how to find out what is causing high mysql cpu load

2011-06-23 Thread Peter Peltonen
Hi all, I have a CentOS 5.6 xen domU that is used for hosting several Apache virtual hosts that use MySQL. Lately, this domU has been having performance issues and I've noticed web pages loaded from this server opening slower than usual. When I run 'top' I see mysqld constantly consuming 10-60%

Re: [CentOS] how to find out promiscuous mode

2010-05-03 Thread Nifty Cluster Mitch
On Thu, Feb 04, 2010 at 09:45:26AM +1100, Les Bell wrote: Vadkan Jozsef jozsi.avad...@gmail.com 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

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

[CentOS] how to find out promiscuous mode

2010-02-03 Thread Vadkan Jozsef
How can I find out that someone is using it's network card in promiscuous mode in a subnet? Thank you! ___ CentOS mailing list CentOS@centos.org http://lists.centos.org/mailman/listinfo/centos

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 out promiscuous mode

2010-02-03 Thread Les Bell
Vadkan Jozsef jozsi.avad...@gmail.com 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

Re: [CentOS] how to find out promiscuous mode

2010-02-03 Thread Les Bell
Les Bell lesb...@lesbell.com.au 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

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

2009-12-07 Thread Paul Johnson
I'm setting up a Rocks Cluster Linux system http://www.rocksclusters.org using Centos 5.3 as the OS. Rocks is an organizing framework for multi node systems, it tries to orchestrate kickstart installs across many systems and interaction among those many systems as a compute cluster. One problem

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 In

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 alan.mc...@gmail.com 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

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

2009-12-07 Thread R P Herrold
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 backups. and 1) as it was partially inconsistent with upstream, and

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

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 try

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 Brian Mathis
On Mon, Dec 7, 2009 at 6:12 PM, John R Pierce pie...@hogranch.com 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

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 herr...@centos.org 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

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 seem

[CentOS] how to find out dependencies

2009-05-03 Thread Jerry Geis
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? Thanks, Jerry ___ CentOS mailing list CentOS@centos.org

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 Loaded

[CentOS] How to find out values from dhcp query

2009-03-12 Thread Robert Moskowitz
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... ___ CentOS mailing list CentOS@centos.org

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 out values from dhcp query

2009-03-12 Thread Tim Verhoeven
On Thu, Mar 12, 2009 at 4:26 PM, Robert Moskowitz r...@htt-consult.com 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

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 to

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 logs by

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? You can see most

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 server to my client?

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: How can I find out what

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 most parts of the

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

2008-04-01 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

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

2008-04-01 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/

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 groupinfo

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 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

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

2008-03-31 Thread Primorec
Hi All, Short description of the problem: - I would like to install the complete 'xfce' desktop on CentOS5.x I've tried: yum groupinstall xfce yum groupinstall xfce4 yum groupinstall xfce* yum groupinstall xfce4* yum groupinstall xfce4.2 yum groupinstall xfce4.1 yum groupinstall xfce4.3 yum

[CentOS] how to find it?

2008-02-17 Thread Sobari Tanuwijaya
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. Thanks. -- Tanu -- ___ CentOS mailing list

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 filename.so ___

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 by bios