Tip: Enable the native FTP server in Lion

NewImage

One of the features Lion has removed from its predecessors is the native FTP server, which we can enable but by default we do not have it at hand at all.

To enable it we have to go to the Terminal - usual thing - and put this command:

sudo -s launchctl load -w /System/Library/LaunchDaemons/ftp.plist

By cons, to disable it we put this:

sudo -s launchctl unload -w /System/Library/LaunchDaemons/ftp.plist

What we're actually doing when we enable it is telling Launchctl to add the FTP daemon to those who boot up the system, no more, no less.

Source | MacOSXHints


Leave a Comment

Your email address will not be published. Required fields are marked with *

*

*

  1. Responsible for the data: Miguel Ángel Gatón
  2. Purpose of the data: Control SPAM, comment management.
  3. Legitimation: Your consent
  4. Communication of the data: The data will not be communicated to third parties except by legal obligation.
  5. Data storage: Database hosted by Occentus Networks (EU)
  6. Rights: At any time you can limit, recover and delete your information.

  1.   RUSH said

    Thank you very much for the contribution!