Tell me more ×
Super User is a question and answer site for computer enthusiasts and power users. It's 100% free, no registration required.

I uninstalled Little Snitch months ago. Or so, I thought.

When opening Console.app, I see something like this:

A lot of LittleSnitchUIAgent entries!

Here’s a textual log:

21/11/09 22:05:31   com.apple.launchd[1]    (at.obdev.littlesnitchd[10045]) Exited with exit code: 1
21/11/09 22:05:31   com.apple.launchd[1]    (at.obdev.littlesnitchd) Throttling respawn: Will start in 10 seconds
21/11/09 22:05:33   Little Snitch UIAgent[10046]    2.0.4.385: m65968c1c
21/11/09 22:05:33   Little Snitch UIAgent[10046]    2.0.4.385: m579328b9
21/11/09 22:05:33   Little Snitch UIAgent[10046]    2.0.4.385: m41531ded
21/11/09 22:05:33   com.apple.launchd.peruser.501[170]  (at.obdev.LittleSnitchUIAgent) Throttling respawn: Will start in 10 seconds
21/11/09 22:05:41   com.apple.launchd[1]    (at.obdev.littlesnitchd[10049]) Exited with exit code: 1
21/11/09 22:05:41   com.apple.launchd[1]    (at.obdev.littlesnitchd) Throttling respawn: Will start in 10 seconds
21/11/09 22:05:43   Little Snitch UIAgent[10050]    2.0.4.385: m65968c1c
21/11/09 22:05:43   Little Snitch UIAgent[10050]    2.0.4.385: m579328b9
21/11/09 22:05:43   Little Snitch UIAgent[10050]    2.0.4.385: m41531ded
21/11/09 22:05:43   com.apple.launchd.peruser.501[170]  (at.obdev.LittleSnitchUIAgent) Throttling respawn: Will start in 10 seconds

Spotlight searches for ‘little snitch’ or ‘littlesnitch’ yield no results. Yet, it seems like I didn’t get rid of Little Snitch entirely, since it’s still using up my CPU.

Any ideas?

share|improve this question

5 Answers

up vote 8 down vote accepted

Have you tried downloading Little Snitch again and running the Uninstaller?

Little Snitch 2.2

share|improve this answer

Have a look in the following locations for plist files that look like they are related to Little Snitch. They will most likely start with at.obdev :

/Library/LaunchAgents
/Library/LaunchDaemons
/System/Library/LaunchAgents
/System/Library/LaunchDaemons
~/Library/LaunchAgents
~/Library/LaunchDaemons

Move the offending files to a different location, reboot and see if it fixed things.

Be very careful, especially with the /System locations, because if you remove the wrong file, it could harm your system.

share|improve this answer

You need open terminal:

cd /private/var/db/launchd.db/com.apple.launchd

make a backup copy of overrides.plist (make sure it is there using the ls command)

sudo cp overrides.plist overrides.bak

open overrides.plist

sudo vim overrides.plist

Look for any Little Snitch UIAgent entries and remove them. Save. Close. Reboot. (this should also remedy the peruser entries too)

Check Console if there are any entries.

share|improve this answer
1  
Thanks for your answer. Unfortunately, I couldn’t find any matching entries in that file (I tried searching for ‘little’ and came up with no results at all). P.S.: The second step should probably read sudo cp overrides.plist overrides.bak. – Mathias Bynens Nov 29 '09 at 11:35

There's no need to edit any files; just unload the service and delete its plist:

sudo launchctl unload /Library/LaunchDaemons/at.obdev.littlesnitchd.plist
sudo rm /Library/LaunchDaemons/at.obdev.littlesnitchd.plist
share|improve this answer

If you don't want to manually mess around with launchd, Lingon is a a graphical editor for it. Unfortunately, development of it has ceased, but it still works fine, and it's open source.

share|improve this answer

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.