yum: the package manager I love to hate

2009-09-08 Thread Jake Peavy
I'd like to buy a vowel. Can someone tell me what package xxd is in? Here's the progression: 1) yum install xxd 2) yum whatprovides xxd 3) yum whatprovides od (worth a shot?) 4) google: yum install xxd 5) google: yum xxd 6) google: fedora xxd 7) search gmail fedora list archives: xxd 8

Re: yum: the package manager I love to hate

2009-09-08 Thread Bruno Wolff III
On Tue, Sep 08, 2009 at 11:56:54 -0400, Jake Peavy wrote: > I'd like to buy a vowel. > > Can someone tell me what package xxd is in? If it is installed, you can do: yum whatprovides `which xxd` Loaded plugins: allowdowngrade, dellsysidplugin, dellsysidplugin2, keys, list- : data,

Re: yum: the package manager I love to hate

2009-09-08 Thread Mauriat Miranda
On Tue, Sep 8, 2009 at 12:13 PM, Bryn M. Reeves wrote: > On Tue, 2009-09-08 at 11:56 -0400, Jake Peavy wrote: >> I'd like to buy a vowel. > > Yum is not a package manager. Although I know what you mean, a lot of information more or less deems it so. # man yum DESCRIPTION yum is an interac

Re: yum: the package manager I love to hate

2009-09-08 Thread Michael Semcheski
On Tue, Sep 8, 2009 at 11:56 AM, Jake Peavy wrote: > I'd like to buy a vowel. > > Can someone tell me what package xxd is in? > > How about these options: yum search xxd yum whatprovides '*/xxd' yum whatprovides '*/xxd*' -- fedora-list mailing list fedora-list@redhat.com To unsubscr

Re: yum: the package manager I love to hate

2009-09-08 Thread Jake Peavy
On Tue, Sep 8, 2009 at 12:40 PM, Bryn M. Reeves wrote: > On Tue, 2009-09-08 at 12:13 -0400, Jake Peavy wrote: > > On Tue, Sep 8, 2009 at 12:13 PM, Bryn M. Reeves > > wrote: > > On Tue, 2009-09-08 at 11:56 -0400, Jake Peavy wrote: > > > I'd like to buy a vowel. > > > > > >

Re: yum: the package manager I love to hate

2009-09-08 Thread suvayu ali
2009/9/8 Jake Peavy : > On Tue, Sep 8, 2009 at 12:03 PM, Bruno Wolff III wrote: >> >> On Tue, Sep 08, 2009 at 11:56:54 -0400, >>  Jake Peavy wrote: >> > I'd like to buy a vowel. >> > >> > Can someone tell me what package xxd is in? >> >> If it is installed, you can do: >> yum whatprovides `which

Re: yum: the package manager I love to hate

2009-09-08 Thread Bryn M. Reeves
On Tue, 2009-09-08 at 12:50 -0400, Jake Peavy wrote: > haha ok, I guess I feel like it's MORE accurate to say yum is a > package manager because it manages the RPM packages, but I digress. You make a reasonable argument... > Semantics was never my strong suit, thus engineering over law :p We

Re: yum: the package manager I love to hate

2009-09-08 Thread Bryn M. Reeves
On Tue, 2009-09-08 at 11:56 -0400, Jake Peavy wrote: > I'd like to buy a vowel. Yum is not a package manager. > Can someone tell me what package xxd is in? I use this: qwhich () { if [ "$1" == "" ]; then echo "usage: qwhich " ; fi ; rpm -qf `which $1` ;} $ qwhich xxd vim-common-7.2.148-1.fc11.

Re: yum: the package manager I love to hate

2009-09-08 Thread Jake Peavy
On Tue, Sep 8, 2009 at 12:13 PM, Bryn M. Reeves wrote: > On Tue, 2009-09-08 at 11:56 -0400, Jake Peavy wrote: > > I'd like to buy a vowel. > > Yum is not a package manager. > Huh? "The Yellowdog Updater, Modified (*YUM*) is an open-source command-line *package*-*management* utility for RPM-comp

Re: yum: the package manager I love to hate

2009-09-08 Thread Jake Peavy
On Tue, Sep 8, 2009 at 12:03 PM, Bruno Wolff III wrote: > On Tue, Sep 08, 2009 at 11:56:54 -0400, > Jake Peavy wrote: > > I'd like to buy a vowel. > > > > Can someone tell me what package xxd is in? > > If it is installed, you can do: > yum whatprovides `which xxd` This does not appear to be

Re: yum: the package manager I love to hate

2009-09-08 Thread Bryn M. Reeves
On Tue, 2009-09-08 at 12:13 -0400, Jake Peavy wrote: > On Tue, Sep 8, 2009 at 12:13 PM, Bryn M. Reeves > wrote: > On Tue, 2009-09-08 at 11:56 -0400, Jake Peavy wrote: > > I'd like to buy a vowel. > > > Yum is not a package manager. > > Huh? "The Yellowdo

Re: yum: the package manager I love to hate

2009-09-08 Thread Bruno Wolff III
On Tue, Sep 08, 2009 at 12:08:35 -0400, Jake Peavy wrote: > > This does not appear to be useful information. If I had it installed I > wouldn't need to install it?? It wasn't clear from the phrasing in your original question why you needed to find what package it was in. yum whatprovides '/*

Re: yum: the package manager I love to hate

2009-09-08 Thread Michael Semcheski
On Tue, Sep 8, 2009 at 4:08 PM, Aaron Konstam wrote: > try: yum whatprovides */xxd > One thing to note with this: if you have a file that matches */xxd (for example, if you have /home/mike/bin/xxd and the current directory is /home/mike) yum (or maybe its bash) will expand the wildcard. So, ass

Re: yum: the package manager I love to hate

2009-09-08 Thread Aaron Konstam
On Tue, 2009-09-08 at 11:56 -0400, Jake Peavy wrote: > I'd like to buy a vowel. > > Can someone tell me what package xxd is in? > > Here's the progression: > > 1) yum install xxd > 2) yum whatprovides xxd > 3) yum whatprovides od (worth a shot?) > 4) google: yum install xxd > 5) google: yum

Re: yum: the package manager I love to hate

2009-09-09 Thread Aaron Konstam
On Tue, 2009-09-08 at 16:13 -0400, Michael Semcheski wrote: > On Tue, Sep 8, 2009 at 4:08 PM, Aaron Konstam > wrote: > try: yum whatprovides */xxd > > One thing to note with this: if you have a file that matches */xxd > (for example, if you have /home/mike/bin/xxd and the current direct