您好,歡迎進入深圳市穎特新科技有限公司官方網(wǎng)站!
安裝nfs:
#sudo apt-get install nfs-kernel-server
ubuntu10.10中的已經(jīng)是最新版本了,無需安裝
打開/etc/exports文件,在末尾加入:
/home/xgc *(rw,sync,no_root_squash)
注:nfs允許掛載的目錄及權(quán)限,在文件/etc/exports中進行定義,各字段含義如下:
/home/xgc:要共享的目錄
* :允許所有的網(wǎng)段訪問
rw :讀寫權(quán)限
sync:資料同步寫入內(nèi)在和硬盤
no_root_squash:nfs客戶端共享目錄使用者權(quán)限
重啟服務(wù):
#sudo /etc/init.d/portmap restart <---重啟portmap,很重要
#sudo /etc/init.d/nfs-kernel-server restart <---重啟nfs服務(wù)
#showmount -e <---顯示共享出的目錄
注:nfs是一個RPC程序,使用它前,需要映射好端口,通過portmap設(shè)定
命令執(zhí)行情況如下:
xgc@xgc-VirtualBox:~$ sudo /etc/init.d/portmap restart
Rather than invoking init scripts through /etc/init.d, use the service(8)
utility, e.g. service portmap restart
Since the script you are attempting to invoke has been converted to an
Upstart job, you may also use the restart(8) utility, e.g. restart portmap
portmap start/running, process 474
xgc@xgc-VirtualBox:~$ sudo /etc/init.d/nfs-kernel-server restart
* Stopping NFS kernel daemon [ OK ]
* Unexporting directories for NFS kernel daemon... [ OK ]
* Exporting directories for NFS kernel daemon...
exportfs: /etc/exports [1]: Neither 'subtree_check' or 'no_subtree_check' specified for export "*:/home/xgc".
Assuming default behaviour ('no_subtree_check').
NOTE: this default has changed since nfs-utils version 1.0.x
[ OK ]
* Starting NFS kernel daemon [ OK ]
xgc@xgc-VirtualBox:~$ showmount -e
Export list for xgc-VirtualBox:
/home/xgc *
現(xiàn)在可以在本機上試一下:
#sudo mount -t nfs localhost:/home/xgc /mnt
注:localhost為本機linux的IP地址
這樣就把共享目錄掛到了/mnt目錄,取消掛載用:
#sudo umount /mnt
如果用在嵌入式設(shè)備上掛載,要加上參數(shù)-o nolock
NFS文件系統(tǒng)搭建
Ubuntu主機IP地址:192.168.1.101
開發(fā)板Ip地址:192.168.1.6
參考網(wǎng)址:http://blog.chinaunix.net/uid-22030783-id-366815.html
流程:
1、安裝NFS文件系統(tǒng):
#sudo apt-get install nfs-kernel-server
2、打開/etc/exports文件,在末尾加入:
/home/mike/learn201511/nfs *(rw,sync,no_root_squash) #前提是你必須的創(chuàng)建該路徑[/home/mike/learn201511/nfs]
注:nfs允許掛載的目錄及權(quán)限,在文件/etc/exports中進行定義,各字段含義如下:
/home/xgc:要共享的目錄
* :允許所有的網(wǎng)段訪問
rw :讀寫權(quán)限
sync:資料同步寫入內(nèi)在和硬盤
no_root_squash:nfs客戶端共享目錄使用者權(quán)限
3、重啟服務(wù):
#sudo /etc/init.d/portmap restart <—重啟portmap,很重要
#sudo /etc/init.d/nfs-kernel-server restart <—重啟nfs服務(wù)
#showmount -e <—顯示共享出的目錄
上面安裝可能會出錯,注意下面提示的錯誤信息,權(quán)限問題:chmod 777 -R /var/lib/nfs/etab
Exporting directories for NFS kernel daemon...
exportfs: could not open /var/lib/nfs/etab for locking
exportfs: can't lock /var/lib/nfs/etab for writing
4、在ubuntu上測試:
#sudo mount -t nfs localhost:/home/mike/learn201511/nfs /mnt
注:localhost為本機linux的IP地址
這樣就把共享目錄掛到了/mnt目錄,取消掛載用:
#sudo umount /mnt
5、在開發(fā)板上掛載:
[root@EmbedSky /]# mount -o nolock -t nfs 192.168.1.101:/home/mike/learn201511/nfs /mnt
#192.168.1.101 為主機(UBUNTU)系統(tǒng)的IP地址
#/home/mike/learn201511 為上面網(wǎng)址中創(chuàng)建的NFS文件系統(tǒng)
為了使用NFS進行調(diào)試。需要安裝NFS server,具體的流程在上一篇博文中有較為詳細的介紹。在配置內(nèi)核時需要做如下的操作:
對于Boot option中的處理,可以不用寫在env.txt配置也是可以的。
baudrate=115200
bootargs=noinitrd console=ttyS0,115200 root=/dev/nfs nfsroot=129.1.5.109:/home/collector/nuc970bsp/rootfs_48 bootm 0x7FC0 ip=129.1.5.107:129.1.5.109:129.1.5.109:255.255.255.0 rdinit=/sbin/init mem=64M; bootcmd=tftp 0x7FC0 970uimage;
bootcmd=tftp 0x7FC0 970uimage ;bootm 0x7FC0
bootdelay=3
ethact=emac
ethaddr=00:00:00:33:66:98
gatewayip=129.1.88.1
ipaddr=129.1.5.107
netmask=255.255.255.0
serverip=129.1.5.109
stderr=serial
stdin=serial
stdout=serial
寫到這兒,過幾天我還會通過修改這個文件,實現(xiàn)USB更新內(nèi)核,文件系統(tǒng)的功能,在這兒先賣個關(guān)子。
東西不難,也都是我從數(shù)據(jù)手冊里拷貝的,但是時間久了,自己忘得連個思路都沒有,怕不怕,驚不驚悚?從小歷史學(xué)的就不好….沒辦法。
掃碼關(guān)注我們
傳真:0755-82591176
郵箱:vicky@yingtexin.net
地址:深圳市龍華區(qū)民治街道民治大道973萬眾潤豐創(chuàng)業(yè)園A棟2樓A08