1、安裝相關軟體包:ubuntu tftp(服務端),tftp(客戶端),xinetd
sudo apt-get install tftpd tftp xinetd
2、建立配置檔案
在/etc/xinetd.d/下建立乙個配置檔案tftp
sudo vim tftp
在檔案中輸入以下內容:
service tftp
儲存退出
sudo mkdir /tftpboot
sudo chmod 777 /tftpboot -r
4、重新啟動服務
sudo /etc/init.d/xinetd restart
至此ubuntu tftp服務已經安裝完成了,下面可以對其進行一下測試。(假設在當前目錄下有乙個測試檔案test.txt)
$tftp 127.0.0.1
tftp> put test.txt
sent 1018 bytes in 0.0 seconds
tftp> get test.txt
received 1018 bytes in 0.1 seconds
tftp> quit
如果遇到tftp error on server : access violation錯誤,請現在/tftpboot目錄下生成乙個與要上傳的檔案同名的檔案,並修改起許可權為777
touch test.txt
chmod 777 test.txt
ubuntu tftp服務的配置
ubuntu tftp服務的配置步驟 sudo apt get install tftpd tftp xinetd 2 建立配置檔案 在 etc xinetd.d 下建立乙個配置檔案tftp sudo vim tftp 在檔案中輸入以下內容 service tftp 儲存退出 sudo mkdir ...
ubuntu tftp伺服器配置
yelei ubuntu sudo apt get install tftpd tftp xinetd 2 建立配置檔案 在 etc xinetd.d 下建立乙個配置檔案tftp yelei ubuntu etc xinetd.d sudo gedit tftp 在檔案中輸入 以下內容 servic...
Ubuntu tftp服務的步驟配置
配置ubuntu tftp服務的步驟 ubuntu tftp 服務端 tftp 客戶端 xinetd sudo apt get install tftpd tftp xinetd 2 建立配置檔案 在 etc xinetd.d 下建立乙個配置檔案 tftp sudo vi tftp 在檔案中輸入以下...