本文最后更新于 4113 天前,其中的信息可能已经有所发展或是发生改变。
Mac OS X 10.7 之前可以从
「系统偏好设置」-「共享」-「文件共享」-「选项」里开启FTP
10.7之后则需要通过终端命令来开启这项服务。
打开终端,输入
[code lang=”bash”]
sudo -s launchctl load -w /System/Library/LaunchDaemons/ftp.plist
[/code]
即可开启FTP Server
开启后可以在终端输入下面的命令进行测试验证
ftp localhost
如果接下来看到
[code lang=”bash”]$ ftp localhost Trying ::1… Connected to localhost. 220 ::1 FTP server (tnftpd 20100324+GSSAPI) ready. Name (localhost:Paul):
[/code]
则说明FTP开启成功
如果想关闭FTP,则输入
[code lang=”bash”]
sudo -s launchctl unload -w /System/Library/LaunchDaemons/ftp.plist
[/code]
除了ftp,还有一个更好的选择就是sftp-「secure ftp」
比ftp更安全。只要enable了remote login就可以了
[code lang=”bash”]
system preference -> sharing->remote login
[/code]
当enable这个选项的时候,其实是开启了2个服务,sshd和sftpd
然后,可以使用下面的命令测试:
[code lang=”bash”]
sftp localhost
[/code]