linux ftp serverLinux serverNETWORK ADMINISTRATIONS

Create a FTP server for Debian 11

Commands:
apt install vsftpd
vsftpd -versions
cp /etc/vsftpd.conf /etc/vsftpd.conf.orig
nano /etc/vsftpd.conf

Data to be writhen in vsftpd.conf file
write_enable=YES
chroot_local_user=YES
user_sub_token=$USER
local_root=/home/$USER
allow_writeable_chroot=YES

systemctl restart vsftpd

source

by caroueu

linux ftp server