2

How do I completely remove ekiga via sudo apt-get remove --purge seems to leave some information when i re-install ekiga. can i rm -rvf even tho ekiga is not just in the home file but in the gconf>apps file?

The reason is that I had added two profiles (A & B) but after trying remove --purge the other profile (B) is still there but not visible from computer 1... I installed ekiga on another ubuntu computer 2 with (B) profile. When I try message (B) from computer 1 it goes nowhere because it apparently is sending it to profile (A) on computer 1. However sending from comp 2 with profile (B) to comp 1 and profile (A) it goes through. So it is apparent comp 1 has profiles (A) and (B) even after remove --purge.

Lekensteyn
  • 178,446
Dustin
  • 2,173

1 Answers1

3

apt-get purge won't get rid of local configuration files.
ekiga creates files in your home directory, under ./.gconf/apps/ekiga

You'll have to delete that entire directory with rm -rf ~/.gconf/apps/ekiga

Applications frequently use .gconf, .gnome*, .config and .local for various settings and cache information, so those are good places to check in general.

If you're not finding more pieces of ekiga, try running sudo updatedb and when that finishes, try locate ekiga . You might find something you've missed.

From the additional items, you've added, I don't see any problems. If you really wanted to you could delete some of those items with something like sudo rm /usr/lib/pymodules/python2.7/orca/scripts/apps/ekiga/script.pyc . I wouldn't expect these to make a difference, unless you're using orca.

belacqua
  • 23,540