I. Xshell using XFTP to transfer files
Click the Submit button will send you to fill out the mailbox sent an e-mail, which has the download address, click Download xftp-6.0.0085.exe file, download the completion of the installation, after the installation is complete, first switch off, in the Xshell login to their own virtual machine, and then in Xshell press Ctrl+alt +f, it will automatically pop out the following interface just installed
Double-click or drag to download the file, it is very convenient to use
Ii. using PURE-FTPD to build FTP service
PURE-FTPD is lighter and simpler than vsft
A epel-release extension source is required before #yum install-y epel-release//install PURE-FTPD
#yum install-y pure-ftpd//install PURE-FTPD pack
#vim/etc/pure-ftpd/pure-ftpd.conf//Edit configuration file
Find # puredb/etc/pure-ftpd/pureftpd.pdb put the previous # Delete, put the specified password profile this line
#systemctl Stop VSFTPD//start pure-ftpd before you stop vsftpd, because it also listens on port 21
#systemctl start pure-ftpd//Start PURE-FTPD
Create a catalog of test users
#mkdir/data/ftp
#useradd-U 1020 pure-ftp//Create a normal user
#chown-R pure-ftp:pure-ftp/data/ftp//modify owner and group
#pure-pw useradd ftp_usera-u pure-ftp-d/data/ftp//Create a Ftp_usera user, the-u option specifies who the system user is,-d specifies the home directory of the virtual user
#pure-PW--help//See how PURE-PW is used
#pure-PW MKDB
Test
#touch/data/ftp/123.txt//Create a 123.txt file
#lftp [email protected]
#Password: Enter your password
#chown Pure-ftp:pure-ftp/data/ftp/123.txt
#lftp [email protected]//modify to belong to the host group and re-login to view the 123.txt file The genus Group has been mapped to pure-ftp
Xshell using the xftp transfer file to build an FTP service using PURE-FTPD