How to Build a vsftpd FTP Server with Ubuntu Server

linux ubuntuHow to Build a vsftpd FTP Server with Ubuntu Server - Transfer files by ftp service.
Vsftpd is an application to build a ftp server within the GNU / Linux under the GPL. For detailed information please go to https://security.appspot.com/vsftpd.html. Why vsftpd?
Easy to configure and support the implementation of chroot.
Install vsftpd
# Apt-get install vsftpd
Make sure there are no error messages and make sure the application vstpd ftp service is running.
# Nmap localhost
PORT STATE SERVICE
21/tcp open ftp
# Netstat-wit | grep ftp
tcp 0 0 0.0.0.0:21 0.0.0.0: * LISTEN 34983/vsftpd
Vsftpd configuration file backups
# Cp / etc / vsftpd.conf / etc / vsftpd.conf.asli
Get used to backup the configuration file before making any changes, in many cases the error in the configuration file editing service is not the result / error. The configuration file is still orginal would be very helpful to begin to detect the fault.
Configuring Match Requirement
# Nano / etc / vsftpd.conf
listen = YES
anonymous_enable = NO
local_enable = YES
write_enable = YES
ftpd_banner = FTP Service: Service FTP Server
# Chroot_local_user = YES
# Of the above there is a problem with ubuntu 12:04 turns out, the solution: downgrade vsftpdnya or
# Sacrifice permissions / home / user to chmod 555 / home / user
userlist_enable = YES
userlist_deny = NO
userlist_file = / etc / vsftpd / allowed
Make a list of user ftp
# Mkdir / etc / vsftpd
# Cat> / etc / vsftpd / allowed
wiwin
fui
ctrl + c
# Chmod 644 / etc / vsftpd / allowed
Create a user for ftp
# Adduser fui
Restart ServiceUntuk get the latest changes service vsftpd restart
# Service vsftpd restart
vsftpd start / running, process 55383
Testing Services FTPLakukan from client computer
$ Ftp 192.168.1.254
Connected to 192.168.1.254.
220 FTP Service: Service FTP Server!
Name (192.168.1.254: wiwin): wiwin
331 Please specify the password.
Password: type passwd user in server and enter
230 Login successful.
Remote system type is UNIX.
Using binary mode to transfer files.
ftp>

Up here your FTP service is ready to use.
Currently FTP Server can be accessed from applications such as gFTP FTP client, FileZilla.
Or use the facility nautilus (file - Connect to Server - select FTP with login).

Sources: Indonesia Ubuntu Forums
How to Build a vsftpd FTP Server with Ubuntu Server
Related : How to Build a vsftpd FTP Server with Ubuntu Server.