Mac OS X Disable Unnecessary Services

by on December 24, 2009 · 4 comments· last updated at December 25, 2009

How do I disable unnecessary services under Mac OS X to secure my Mac OS X based desktop / server / laptop?

Mac OS X use the following directories to start various services (quoting from the man page):

  1. /System/Library/LaunchDaemons/ - System-wide daemons provided by Mac OS X
  2. /System/Library/LaunchAgents/ - Per-user agents provided by Mac OS X.
  3. ~/Library/LaunchAgents/ - Per-user agents provided by the user.
  4. /Library/LaunchAgents/ - Per-user agents provided by the administrator.
  5. /Library/LaunchDaemons/ - System-wide daemons provided by the administrator.

launchd manages processes, both for the system as a whole and for individual users using .plist files. Open the terminal and type the following commands to view directory files:

cd /System/Library/LaunchDaemons/
ls -l
ls -l | less

OR

cd /System/Library/LaunchAgents/
ls -l
ls -l | less

How Do I Disable Unnecessary Services?

You need to use the launchctl command as follows:

sudo launchctl unload -w /path/to/.plist/file
sudo launchctl unload -w /System/Library/LaunchDaemons/file.plist

In this example, you are disabling the Bonjour service, enter:

sudo launchctl unload -w /System/Library/LaunchDaemons/com.apple.mDNSResponder.plist
sudo launchctl unload -w /System/Library/LaunchDaemons/com.apple.mDNSResponderHelper.plist

References:



You should follow me on twitter here or grab rss feed to keep track of new changes.

Featured Articles:

{ 4 comments… read them below or add one }

1 Shaun December 26, 2009 at 12:12 pm

If you don’t fancy using the shell then there’s a GUI tool called Lingon…

http://sourceforge.net/projects/lingon/files/

Reply

2 JThreads January 14, 2010 at 1:17 pm

How cannot like a shell if you’re visiting this site ;)

Reply

3 Mark February 12, 2012 at 1:46 am

If you disable Bonjour on a Macbook Pro running Snow Leopard, wireless internet dies you will have to remember what you just did in the terminal, and undo undo it to restore network access.

Reply

4 Roj Blake March 13, 2013 at 7:47 pm

Plenty of sites telling ‘how’ to disable services/daemons on OS X, but really not found one telling us ‘which’ ones to disable, some are obvious, most are not :(

Reply

Leave a Comment

You can use these HTML tags and attributes for your code and commands: <strong> <em> <ol> <li> <u> <ul> <kbd> <blockquote> <pre> <a href="" title="">

Tagged as: , , ,

Previous Faq:

Next Faq: