1、安裝軟體
$ sudo apt-get install tftp tftpd
$ sudo apt-get install openbsd-inetd
2、建立工作目錄
$ cd /
$ sudo mkdir tftpboot
$ sudo chmod 777 tftpboot
3、修改配置檔案
$ sudo vi /etc/inetd.conf
修改如下內容
tftp dgram udp wait nobody /usr/sbin/tcpd /usr/sbin/in.tftpd /tftpboot
4、重新啟動服務
$ sudo /etc/init.d/openbsd-inetd restart
$ sudo in.tftpd -l /tftpboot
5、本機測試tftp伺服器
$ cd /tftpboot
$ touch test
進入你的工作目錄
$ cd ~
$ tftp 127.0.0.1 為伺服器ip
tftp> get test
看看是否成功?
6、開發板測試連線tftp伺服器
需要確保開發板與伺服器在同乙個網段,並且ping一下,看看網是否通的
# tftp -l test -r test -g 192.168.1.111 為tftp服務
ubuntu9 10下安裝配置NFS服務
1 安裝軟體 sudo apt get install nfs kernel server nfs common portmap 2 配置portmap sudo emacs etc default portmap 注釋掉 i 127.0.0.1 在這一行前面加 3 建立nfs工作目錄 cd sud...
ubuntu9 10下安裝配置NFS服務
1 安裝軟體 sudo apt get install nfs kernel server nfs common portmap 2 配置portmap sudo emacs etc default portmap 注釋掉 i 127.0.0.1 在這一行前面加 3 建立nfs工作目錄 cd sud...
Ubuntu9 10中安裝配置mysql5
mysql5 今天在ubuntu上安裝了mysql5.1.12 beta版本,為了學習一下mysql,畢竟我還是開源的支持者。1.安裝 安裝過程仔細看原始碼包中的install binary就行了,注意使用root使用者,特別是在執行scripts mysql install db命令時。2.設定使...