建立 tftp 服務(wù)器
在嵌入式 linux 開發(fā)過程中需要使用 tftp 方式從 Linux 主機下載文件到板子中,因此需
要在主機 linux 系統(tǒng)中安裝 tftp 服務(wù)器。
Ubuntu-9.10 中安裝 tftp 服務(wù)器的方法如下:
安裝程序
通過軟件管理安裝 tftp tftpd,前者是客戶端,后者是服務(wù)程序。系統(tǒng)根據(jù)依賴會選上
openbsd-inetd。在 Ubuntu 的終端下輸入命令如下:
sudo apt-get install tftp tftpd
在根目錄/目錄下建一個 tftpboot, 把屬性改成 777
cd /
sudo mkdir tftpboot
sudo chmod 777 tftpboot
修改存放目錄
sudo vi /etc/inetd.conf
tftp dgram udp wait nobody /usr/sbin/tcpd /usr/sbin/in.tftpd /tftpboot
重新啟動服務(wù):
sudo /etc/init.d/openbsd-inetd restart
sudo in.tftpd -l /tftpboot
測試 tftp 服務(wù)器
在/tftpboot 文件夾下新建立一個文件
cd /tftpboot
touch test
進入另外一個文件夾
tftp 127.0.0.1
tftp> get test
建立 nfs 服務(wù)器
在嵌入式 linux 開發(fā)的時候,常常需要使用 nfs 以方便程序的調(diào)試。使用 nfs,用戶可以
將板子要用到的根文件系統(tǒng)放在主機目錄下,開發(fā)板則通過以太網(wǎng)掛載到這個目錄并將這個
目錄下的文件作為根文件系統(tǒng)的內(nèi)容,這樣用戶的程序更新后不比重新燒寫板子的根文件系
統(tǒng)便能被重新使用,這點能夠大大加快程序的調(diào)試。
Ubuntu 下安裝 nfs 服務(wù)器的步驟如下:
進行 NFS 服務(wù)器端與客戶端的安裝
sudo apt-get install nfs-kernel-server nfs-common portmap
安裝客戶端的作用是可以在本機進行 NFS 服務(wù)的測試。
配置 portmap
兩種方法任選一種就可以:
(1)
sudo emacs /etc/default/portmap
去掉 -i 127.0.0.1
(2)
sudo dpkg-reconfigure portmap
運行后選擇“否”
另外很重要的一點,要用 sysv-rc-conf (而不是 chkconfig)工具查看一下當(dāng)前 nfs 和 portmap
的狀態(tài),若是 off,則用 sudo sysv-rc-conf portmap on 或 sudo sysv-rc-conf nfs-kernel-server on
打開
配置掛載目錄和權(quán)限
emacs /etc/exports
我的配置如下:
# /etc/exports: the access control list for filesystems which may be exported
# to NFS clients. See exports(5).
#
# Example for NFSv2 and NFSv3:
# /srv/homes hostname1(rw,sync) hostname2(ro,sync)
#
# Example for NFSv4:
# /srv/nfs4 gss/krb5i(rw,sync,fsid=0,crossmnt)
# /srv/nfs4/homes gss/krb5i(rw,sync)
#
/nfsboot *(rw,sync)
解釋一下:
#后面的都是解釋
/nfsboot 是 NFS 的共享目錄,*表示任何 IP 都可以共享這個目錄,你可以改為受限的 IP,rw
表示的是權(quán)限,sync 是默認的。
更新 exports 文件
只要你更改了/etc/exports, 你不可以通過 sudo exportfs -r 來更新 這個文件
重啟 NFS 服務(wù)
sudo /etc/init.d/portmap start
sudo /etc/init.d/nfs-kernel-server restart 重啟 nfs 服務(wù)
進行測試
嘗試一下掛載本地磁盤(我的 linux 系統(tǒng) IP 為 202.198.137.18,將/home/nfsboot 掛載到/mnt)
$ sudo mount 202.198.137.18:/nfsboot /mnt
運行 $ df 看看結(jié)果
$ sudo umount /mnt