Possible Duplicate:
What is the correct way to completely remove an application?
I installed UltraEditor (uex package) from a source I can't remember. Later I purged the installation with:
aptitude purge uex
The application disappeared but its name still appears when I type Alt-F2, as one of the installed applications. Is there a way to prevent this from happening?
Try using the Synaptic Package Manager (install synaptic ).
Right-click on the package you want to purge and click Mark for Complete Removal.
See this answer for more information on what this does.
sudo apt-get purge <application>
orsudo apt-get remove --purge <application>
are typical for normally installed packages.I believe that
purge
deletes sytem-wide configuration, but not user-specific (e.g., home directory config files) for the associated application.There may be config files left in your home directory -- for instance, in
.config
or.local
. You'll probably find it easiest to runsudo updatedb
, then runlocate <packagename>
to list out locations of remaining files. You can grep remaining output and delete what's left.