• 対象環境
  • 	machine:RaspberryPi B
    	OS:Raspbian(Debian Jessie)
      
  • 参考サイト
  • http://yamaryu0508.hatenablog.com/entry/2014/12/02/102648

  • インストール
  •   $ sudo apt-get install vsftpd
      
  • 設定ファイル
  • /etc/vsftpd.conf

      -----
      #write_enable=YES
      #
      # Default umask for local users is 077. You may wish to change this to 022,
      # if your users expect that (022 is used by most other ftpd's)
      #local_umask=022
    
      # ASCII mangling is a horrible feature of the protocol.
      #ascii_upload_enable=YES
      #ascii_download_enable=YES
      -----
      
      -----
      write_enable=YES
      #
      # Default umask for local users is 077. You may wish to change this to 022,
      # if your users expect that (022 is used by most other ftpd's)
      local_umask=022
    
      # ASCII mangling is a horrible feature of the protocol.
      ascii_upload_enable=YES
      ascii_download_enable=YES
      -----
      
  • 起動
  •   $ sudo service vsftpd restart