2016年7月12日 星期二

Ubuntu Install tftp

安裝

# sudo apt-get install tftpd-hpa


無法正常安裝時可嘗試以下指令

# sudo apt-get install tftp-hpa tftpd-hpa openbsd-inetd
# sudo apt-get install xinetd


建立目錄tftpboot,用於傳輸文件

# sudo mkdir /tftpboot
# sudo chmod -R 777 /tftpboot
# sudo chown -R nobody /tftpboot


修改設定檔

# sudo nano /etc/default/tftpd-hpa

TFTP_USERNAME="root"
TFTP_DIRECTORY="/tftpboot"
TFTP_ADDRESS="0.0.0.0:69"
TFTP_OPTIONS="-s -c -l"

Note: -l for listening all time this avoided the timeout issue, -c to create files in tftfp folder.


tftp服務控制

# sudo service tftpd-hpa restart
# sudo service tftpd-hpa start
# sudo service tftpd-hpa stop


確認tftp服務是否開啟

# netstat -a | grep tftp

出現以下訊息,表示成功開啟
udp    0   0 *:tftp     *:*



沒有留言:

張貼留言

Uninstalling HEVC Video Extensions from Windows

Microsoft store packages are usually APPX format installations (HEVC Video Extensions is installed as APPX package) You will need to use Pow...