Bowie Bailey
2008-Jul-16 16:21 UTC
[CentOS] yum remove <old kernel pkgs> -- wants to remove a to n of stuff
Johnny Hughes wrote:> > You are trying to remove kernel-utils ...you don't want to do that. > That might cut back the deps a bit. Also, i never remove packages with > yum, but with: > > rpm -e `cat list` > > But, that is just my advise.I didn't think there was any functional difference between: rpm -e package-name and yum remove package-name Isn't yum just a front-end for the rpm system? -- Bowie
Joshua Baker-LePain
2008-Jul-16 16:42 UTC
[CentOS] yum remove <old kernel pkgs> -- wants to remove a to n of stuff
On Wed, 16 Jul 2008 at 12:21pm, Bowie Bailey wrote> I didn't think there was any functional difference between: > > rpm -e package-name > > and > > yum remove package-name > > Isn't yum just a front-end for the rpm system?yum also does dependency checking/resolution. -- Joshua Baker-LePain QB3 Shared Cluster Sysadmin UCSF
Johnny Hughes
2008-Jul-16 16:44 UTC
[CentOS] yum remove <old kernel pkgs> -- wants to remove a to n of stuff
Bowie Bailey wrote:> Johnny Hughes wrote: >> You are trying to remove kernel-utils ...you don't want to do that. >> That might cut back the deps a bit. Also, i never remove packages with >> yum, but with: >> >> rpm -e `cat list` >> >> But, that is just my advise. > > I didn't think there was any functional difference between: > > rpm -e package-name > > and > > yum remove package-name > > Isn't yum just a front-end for the rpm system? >There is a huge difference. rpm -e will tell you that you package foo (that you want to install) is required by package bar, so don't install it. Yum will resolve all the dependancies and try to remove foo and bar and anything else that is required to be removed if bar is removed, etc. If you are not careful, you can get things like glibc removed with "yum remove". I normally want to resolve my own deps if I remove something. I once DID remove glibc from a machine with "yum remove" ... and that is NOT pretty to recover from :D -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 251 bytes Desc: OpenPGP digital signature URL: <http://lists.centos.org/pipermail/centos/attachments/20080716/4d7e2147/attachment-0001.sig>
MHR
2008-Jul-16 17:53 UTC
[CentOS] yum remove <old kernel pkgs> -- wants to remove a to n of stuff
On Wed, Jul 16, 2008 at 9:21 AM, Bowie Bailey <Bowie_Bailey at buc.com> wrote:> > I didn't think there was any functional difference between: > > rpm -e package-name > > and > > yum remove package-name > > Isn't yum just a front-end for the rpm system? >Even if that were completely true, it's not a good idea to mix different commands, especially for installing or removing packages. If you use rpm to find what you want to remove, remove it with rpm. And - ditto to what everyone else already said. mhr
Bowie Bailey
2008-Jul-16 18:22 UTC
[CentOS] yum remove <old kernel pkgs> -- wants to remove a to n of stuff
Johnny Hughes wrote:> Bowie Bailey wrote: > > Johnny Hughes wrote: > >> You are trying to remove kernel-utils ...you don't want to do that. > >> That might cut back the deps a bit. Also, i never remove packages with> >> yum, but with: > >> > >> rpm -e `cat list` > >> > >> But, that is just my advise. > > > > I didn't think there was any functional difference between: > > > > rpm -e package-name > > > > and > > > > yum remove package-name > > > > Isn't yum just a front-end for the rpm system? > > > There is a huge difference. > > rpm -e will tell you that you package foo (that you want to install) is > required by package bar, so don't install it. > > Yum will resolve all the dependancies and try to remove foo and bar and > anything else that is required to be removed if bar is removed, etc. > > If you are not careful, you can get things like glibc removed with "yum > remove". > > I normally want to resolve my own deps if I remove something. I once > DID remove glibc from a machine with "yum remove" ... and that is NOT > pretty to recover from :DThat makes sense. I am always very careful about reviewing the dependency list when using yum for installing or removing packages, but I can see how you might accidentally remove something you didn't intend to. -- Bowie