operation system: fedora 38 =================================== how setup a ftp server in hyper-v? 1. sudo yum install vsftpd 2. sudo vsftpd 3. done =================================== in fedora ftp is a "client" vsftpd is a "server" setup server install vsftpd in virtual machine(hyper-v): sudo yum install vsftpd sudo vsftpd sudo vim vsftpd.conf listen=YES sudo systemctl restart vsftpd done setup client open explorer.exe(myComputer) in windows10: ftp://your-fedora-ip right click blank area: login as fedora username fedora password done anything you upload in windows system will display in linux $cd directory (/home/username) if you open the fedora firewall allow vsftpd get through or stop sudo firewall-cmd --permanent --add-port=21/tcp sudo firewall-cmd --reload sudo systemctl stop firewalld done