Created
November 21, 2019 15:38
-
-
Save pamolloy/4b2665b84d26b042ec9042c092194478 to your computer and use it in GitHub Desktop.
Install a simple FTP server on Fedora
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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