環境
ハードウェア:Raspberry pi 4
OS: Rasbian
インストール
sudo apt install -y vsftpd
設定
下記ディレクトリの設定を編集する。
/etc/vsftpd.conf
下記をコメントアウト
write_enable=YES #書き込み許可
chroot_local_user=YES #ホームディレクトリ以上にアクセスできなくする。
下記を追加
allow_writeable_chroot=YES #chroot_local_userがYESの時にこれを入れないとエラーが出る
起動
サービス開始
sudo systemctl start vsftpd
自動起動設定
これを実行しておくと、次回起動時に自動で立ち上がる
sudo systemctl enable vsftpd
コメント