ubuntu
下安裝tftp伺服器配置
1、安裝
server
與client
apt-get install tftpd-hpa tftp-hpa xinetd 2
、刪除standalone
的啟動方式
update-rc.d -f tftpd-hpa remove 3
、新建tftpd
目錄並修改其屬性
mkdir -p /tftpboot
chmod 777 /tftpboot 4
、修改配置檔案
/etc/default/tftpd-hpa
修改為:
run_daemon="no"
options="-l -c -s /tftpboot"
注意:這裡預設是沒有
-c的,
-c為可建立新檔案,若無此引數,
put命令則可能出現錯誤提示,此時只能覆蓋原有檔案不能建立新檔案;
並且get
時會出現「
tftp error code 2: only absolute filenames allowed
」的錯誤。 5
、新建xinetd
啟動檔案
gedit /etc/xinetd.d/tftp &
內容如下:
service tftp
6、修改
/etc/inetd.conf檔案
修改為:
tftpdgramudpwaitroot/usr/sbin/in.tftpd /usr/sbin/in.tftpd -s /tftpboot 7
、啟動服務
重新啟動
xinetd服務
/etc/init.d/xinetd restart
inetd程序
/etc/init.d/inetd reload 啟動
tftp
伺服器
in.tftpd -l /tftpboot 8
、測試
tftp localhost
tftp localhost
tftp> get zimage_n35
tftp>
zimage_n35
是之前放入
tftp
目錄下的檔案,執行
get zimage_n35
命令後在當前目錄下多了
zimage_n35
檔案。tftp
配置成功。
ubuntu下安裝tftp服務
1 安裝相關軟體包 apt get install tftpd 服務端 apt get install tftp 客戶端 apt get install xinetd 2 建立配置檔案 cd etc xinetd.d vi tftp 輸入service tftp 存檔退出 3 建立tftp服務檔案目...
ubuntu安裝tftp服務
1.安裝tftp server sudo apt get install tftpd hpa sudo apt get install tftp hpa 如果不需要客戶端可以不安裝 tftp hpa 是客戶端 tftpd hpa 是伺服器端 2.配置tftp伺服器 sudo gedit etc de...
Ubuntu下安裝配置tftp服務
在向大家詳細介紹tftp之前,首先讓大家了解下ubuntu tftp,然後全面介紹ubuntu tftp,希望對大家有用。ubuntu 團隊對它的使用者公開的承諾 ubuntu 永遠免費 並且對於 企業版本 沒有任何額外的費用,在同樣的自由團隊上,將最好的工作成果帶給每乙個人。配置ubuntu tf...