Skip to content

Instantly share code, notes, and snippets.

@pamolloy
Created November 21, 2019 15:38
Show Gist options
  • Save pamolloy/4b2665b84d26b042ec9042c092194478 to your computer and use it in GitHub Desktop.
Save pamolloy/4b2665b84d26b042ec9042c092194478 to your computer and use it in GitHub Desktop.
Install a simple FTP server on Fedora
#!/usr/bin/env bash
#
# See https://fedoramagazine.org/how-to-set-up-a-tftp-server-on-fedora/
sudo dnf install tftp-server
sudo systemctl enable tftp
sudo systemctl start tftp
sudo firewall-cmd --add-service=tftp --perm
sudo firewall-cmd --reload
# Copy files to /var/lib/tftpboot/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment