1

Possible Duplicate:
How to prevent updating of a specific package?
Keep the Ubuntu package version I'm using now
Exclude packages from apt-get upgrade

As of today (8/5/12), I tried both suggestions, and it does not seem to work. I have even tried re-starting my computer, and it doesn't seem to work.

I originally asked a question about how to un-install Rhythmbox... In that question, I also asked how do I turn off updates for Rhythmbox... That never got answered.

When I updated from Ubuntu 11.10 to Ubuntu 12.04, you guy's replaced Banshee with Rhythmbox... Well, I like Banshee better, so when I uninstalled it, next time Update Manager opens, it gives me a bunch of "updates" for Rhythmbox... which includes re-installing it... how do I stop this?

Thanks!

pgrytdal
  • 794

2 Answers2

4

You are getting updates because configuration files are still in system. You should also remove Rhythmbox Configuration files. For that type in terminal

sudo dpkg -P rhythmbox 

or

sudo dpkg --purge rhythmbox

It removes your Package with configuration files perfectly.

KK Patel
  • 19,753
2

Have you ever tried this steps?

In short:

sudo apt-mark hold <package>

or

echo <package> hold | sudo dpkg --set-selections

Answered by Zoke.

linuxk
  • 629