Build an FTP Server (VMWare) in Ubuntu Server 14.04)
Build your own ftp server to facilitate file transfer between the host and Ubuntu in the virtual machine. The ftp software is vsftpd. 1. Command Line: sudo apt-get install vsftpd2. After vsftpd is installed, the default configuration does not allow anonymous access and allows local users to log on. The configuration file is in/etc/vsftpd. conf. After you open it with vim, you will find many of them have been commented out, leaving only a few necessary options. Therefore, if you have special requirements, you need to modify the configuration file on your own. Only the items I modified are listed below:
Anonymous_enable = YES # Allow anonymous users to log on # non_upload_enalbe = YES, remove #, allow anonymous users to upload # non_mkdir_write_enable = YES, remove # comments, allow anonymous users to create directories # write_enable = YES # Remove comments and allow upload