This article will describe installing atftp for TFTP server.
Table of Contents
1 Install atftp
Install atftp package. /srv/atftp is used for TFTP server directory.
$ sudo pacman -Sy --noconfirm atftp $ sudo systemctl enable atftpd $ sudo systemctl restart atftpd
2 GET file with atftp
Put file to /srv/atftp.
$ echo "hello" | sudo tee /srv/atftp/hello.txt
Get file with atftp from TFTP server.
$ echo "get hello.txt" | atftp 127.0.0.1 tftp> get hello.txt tftp> $ cat hello.txt hello