Use fedora core6.0 to install the FTP server on the VM. Start and modify the configuration file so that you can log on to upload files anonymously.
1. Start the FTP server/etc/rc. d/init. d/vsftpd start (check whether the system has installed vsftp software rpm-Qa | grep vsftp)
2. modify the configuration file Vim/etc/vsftpd. conf.
Modify the following configurations:
Anon_upload_enable = Yes // allow anonymous upload of anon_mkdir_write_enable = Yes // allow anonymous creation of the folder anon_other_write_enable = Yes anon_world_readable_only = No
3. Disable seliux (you can find the option in Linux security firewall settings)
4. chown root. FTP/var/FTP // The FTP directory is assigned to/var/FTP.Chmod 755/var/FTP // modify the folder read and write permissions so that chmod 777/var/FTP/pub can be read and written.
5./etc/rc. d/init. d/vsftpd restart (restart the FTP server)