Matt Posted February 23, 2008 Report Share Posted February 23, 2008 I'm trying to uninstall Songbird from Ubuntu 7.10. I went through search and deleted all files/folders with 'songbird' in the name, but that doesn't appear to have done it all. When I right-click on a media file, "Open with Songbird" still shows up.What is a better way to go about completely uninstalling applications?How can I remove that from the menu? Quote Link to post Share on other sites
Matt Posted February 23, 2008 Author Report Share Posted February 23, 2008 Ok, I fixed my right-click issue with the following:matt@ubuntu:~/.local/share/applications$ rm songbird.desktopBut I'd still like a rundown on a better way to uninstall programs I don't get from the repositories. Quote Link to post Share on other sites
flashh4 Posted February 23, 2008 Report Share Posted February 23, 2008 (edited) Howdy Matt, see if theres any thing here: http://ubuntuguide.org/wiki/Ubuntu:Feisty#...ltimedia_PlayerChuckThink you already got it fixed ...sorry !!! Edited February 23, 2008 by flashh4 Quote Link to post Share on other sites
hitest Posted February 23, 2008 Report Share Posted February 23, 2008 Ok, I fixed my right-click issue with the following:matt@ubuntu:~/.local/share/applications$ rm songbird.desktopBut I'd still like a rundown on a better way to uninstall programs I don't get from the repositories.This should worksudo apt-get remove package Quote Link to post Share on other sites
Matt Posted February 23, 2008 Author Report Share Posted February 23, 2008 Ok, I fixed my right-click issue with the following:matt@ubuntu:~/.local/share/applications$ rm songbird.desktopBut I'd still like a rundown on a better way to uninstall programs I don't get from the repositories.This should worksudo apt-get remove packageI tried that before I did anything else, but it didn't work. I think that's because I got songbird from a .deb on their site, not through apt-get. Quote Link to post Share on other sites
hitest Posted February 23, 2008 Report Share Posted February 23, 2008 I tried that before I did anything else, but it didn't work. I think that's because I got songbird from a .deb on their site, not through apt-get.If it is a .deb file it should be listed in Synaptic. Fire-up Synaptic and type in Songbird into the search window. Synaptic should be able to find the package then you can select it for removal. I just tried to use Synaptic to locate an e-mail client that I use called First Class which is not an app from the repos, but, is a .deb file. Synaptic found it. Quote Link to post Share on other sites
jcl Posted February 24, 2008 Report Share Posted February 24, 2008 (edited) # dpkg -r $PACKAGEremoves $PACKAGE. Replace -r with -P to remove config files as well.If you don't know the exact name of the package,$ dpkg-query -l $PATTERNprints a list of packages whose names match $PATTERN and$ dpkg-query -S $FILEprints the package that owns $FILE.If you use bash, installing the bash-completion package should give you tab completion on the package utilities. If you had a package named "songbird" installed, "dpkg -r song<TAB>" should expand to "dpkg -r songbird" (or give you a list of packages matching "song*" if there's more than one). Edited February 24, 2008 by jcl Quote Link to post Share on other sites
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.