**: 謝謝作者
ubuntu12.4下tftp設定精華
因除錯6410開發板,需在ubuntu12.04下搭建tftp伺服器,在網搜了多個ubuntu下配置tftp的檔案,發現都有或多或少的問題,如下是我的配置過程,已驗證通過可供參考!!!
1)安裝tftp-hpa,tftpd-hpa, xinetd
~$ sudo apt-get install tftp-hpa , tftpd-hpa, xinetd
2) 在/etc/xinetd.d/下建立並配置tftp檔案
~$ sudo vim /etc/xinetd.d/tftp
1 service tftp
2 -c 用於開啟上傳功能。
3)配置tftpd-hpa
~$ sudo vim /etc/default/tftpd-hpa
1 #/etc/default/tftpd-hpa
2 3 tftp_username="tftp"
4 tftp_directory="/tftpboot"
5 tftp_address="0.0.0.0:69"
6 tftp_options="-l -c -s"
其中/tftpboot為 tftp共享目錄
4) 修改xinetd.conf檔案
~$ sudo vim /etc/xinetd.conf
defaults
6 13
14 #includedir /etc/xinetd.d
15 tftp dgram udp wait nobody /usr/sbin/tcpd /usr/sbin/in.tftpd /tftpboot
5) 重啟tftp服務並測試
sudo service tftpd-hpa restart
sudo /etc/init.d/xinetd reload
sudo /etc/init.d/xinetd restart
6)本機測試
在/tftpboot下建立測試檔案love
#cd /tftpboot
#echo xuguodongaigongxia > love
#chmod 777 love
測試一下 tftp服務:
重新開啟乙個終端
#tftp 127.0.0.1
tftp>get love
tftp>q
#ls退出後,檢視當前目錄,發現love檔案已在當前目錄。
如果上述設定還不行的話,那麼就要把selinux禁用掉:
sudo gedit /etc/selinux/config //如果沒有selinux/config這個檔案,則建立。
# this file controls the state of se
linux on the system.
# selinux= can take one of these three values:
# enforcing - selinux security policy is enforced.
# permissive - selinux prints warnings instead of enforcing.
# disabled - selinux is fully disabled.
selinux=enforcing
# selinuxtype= type of policy in use. possible values are:
# targeted - only targeted network daemons are protected.
# strict - full selinux protection.
selinuxtype=targeted
把上面的selinux=enforcing 改為:selinux=disable 禁用selinux
然後reboot重啟pc
ubuntu 12 4 設定tab鍵空格數
vim預設按tab鍵的縮排空格數為8格,而我們寫程式時一般習慣4格縮排,下面方法可以修改vim中tab鍵縮排空格的數目。步驟如下 1.開啟 etc vim 下的vimrc檔案 2.在此檔案的最後新增如下 set tabstop 4 設定乙個tab顯示多少空格 set softtabstop 4 設定...
原創 Ubuntu 12 4 安裝輸入法
ubuntu 12.04 安裝語言 英文 1 ctrl alt t 進入終端 2 sudo apt get install fcitx bin 回車 3 輸入密碼 回車 4 y 回車 5 y 回車 download something.6 ldconfig deferred processing n...
ubuntu下搭建tftp服務
tftp安裝與建立 1.安裝xinetd sudo apt get install xinetd xinetd是乙個系統守護程式,它取代inetd用於控制tcp,udp的連線。2.安裝tftp,tftpd sudo apt get install tftp hpa tftpd hpa linux下的...