[SOLVED] Can I selectively erase using YUM (ignore dependencies)?
Linux - NewbieThis Linux forum is for members that are new to Linux.
Just starting out and have a question?
If it is not in the man pages or the how-to's this is the place!
Notices
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
Can I selectively erase using YUM (ignore dependencies)?
Hi,
I was just looking through what I have installed on my VPS (CentOS 5.5), and noticed that PostgreSQL is installed and I do not use it so I ran 'yum erase postgresql' and received the following...
Dependencies Resolved
==================================================================
Package Arch Version
==================================================================
Removing:
postgresql i386 8.1.23-1.el5_6.1
Removing for dependencies:
postfix i386 2:2.3.3-2.3.centos.mysql_pgsql
... I am using postfix with MySQL support for email, so I do not want to remove this 'dependency'... my conundrum is how to remove postgresql without removing postfix (tried -x postifx; did not work).
The question is will postfix mysql-pgsql still run.
Looking on CentOS 6, don't see that package.
Note that using --nodeps can be dangerous and break things. However, you can remove it, then see if postfix works without problems. If it does, then fine, if not, reinstall it.
A handy command is
rpm -q --whatrequires
For example, I see I also have postgresql-libs installed. Not sure what pulled it in.
However, if I run
rpm -q --whatrequires postgresql-libs I get an answer that nothing requires it.
Yet, if I run yum remove postgresql-libs, it wants to remove openoffice and several other packages.
RH is a rather bloated distribution, and tends to throw in the kitchen sink--I remember once, trying to remove wireless-tools and yum wanted to remove a bunch of things that have no connection with it, IIRC, probably everything network connected. While --nodeps can, as I said, be quite dangerous at times, other times it's quite safe to do so.
Thanks for giving us the followup. In that case, don't do the --nodeps, as we see, apparently, anyway, it would have broken things.
One interesting thing that I found after posting was that although whatrequires said nothing needed postgresql-libs (on CentOS 6), when I went to remove it, not by yum, but by rpm -e, I would then get an error message of failed dependencies, that a particular library it supplied was needed by another, completely unrelated program.
This is another thing that RH seems to do more often than others, and another reason why using --nodeps can be dangerous. Program A needs shared object B, which is provided by completely unrelated program C. So, A will pull in C, just because C is the only thing that provides shared object B. I don't know how much of this is due to bad or sloppy packaging and how much is really the best way, but it's another reason one winds up with so many odd dependencies, that have nothing to do with the kitchen sink attitude.
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.