Tell me more ×
Ask Ubuntu is a question and answer site for Ubuntu users and developers. It's 100% free, no registration required.

In my previous version, in Natty I think, I installed MS Office and some other windows software via wine. They have cluttered a lot of places including the Open with and other mime related operations. Is there a way to purge them and remove all wine based entries that now I have no wine program installed?

I want, if possible to purge all entries that have to do with wine. I installed/uninstalled them using wine. Purging wine does not help

TIA

You can see the MS Access

share|improve this question

1 Answer

up vote 6 down vote accepted

How do I uninstall all Windows applications?

To remove all programs installed under Wine, remove the wineprefix (usually the ~/.wine directory) by carefully pasting the following commands into a terminal:

cd $HOME
rm -rf .wine

But that doesn't remove them from the system menu. To clean out the menus, carefully paste the following commands into a terminal:

rm -f $HOME/.config/menus/applications-merged/wine*
rm -rf $HOME/.local/share/applications/wine
rm -f $HOME/.local/share/desktop-directories/wine*
rm -f $HOME/.local/share/icons/????_.{xpm,png}
rm -f $HOME/.local/share/icons/
-x-wine-*.{xpm,png}


After all that right click on the top panel asd select edit menus
enter image description here
then go to the others tab and delete all the microsoft office launchers
(Or they might be in some other location, just search)

share|improve this answer
I did just that but The entries are still there in open with dialog. Any idea why? – Stefano May 19 '12 at 13:18
1  
edited my answer, just check if it works – Ashu May 19 '12 at 18:51
Wow, that did it! For those using unity, the program to do that is called alacarte and can be searched in dash Thank you gazillion Ashu! – Stefano May 20 '12 at 20:51

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.