linux nfs檔案系統的使用

2021-05-24 15:03:07 字數 649 閱讀 8101

主機端:

1. 裝好nfs 、rpcbind 2.

設定nfs

伺服器 –

修改/etc/exports

檔案,增加

nfs共享目錄:例如

/home/chenxibing/lpc3250      

192.168.7.*(rw,sync,no_root_squash)

•共享目錄為

/home/chenxibing/lpc3250

•192.168.7.*

表示ip

位址為192.168.7.*

的目標板都可以訪問共享

目錄 •

rw表示可對共享目錄進行讀寫操作

3.service  rpcbind start

/etc/init.d/nfs start

4. exprotfs -r (這一部不能少,很重要)

5.測試nfs

伺服器

–在主機上測試,將共享目錄

mount

到主機另外乙個目錄

下:

•mount  -t  nfs  192.168.7.239: /home/chenxibing/lpc3250 

/mnt

客戶端:

檔案系統 檔案系統的架構

vfs是具體檔案系統的抽象,依靠超級塊 inode dentry以及檔案這些結構來發揮作用,檔案系統的架構就體現在這些結構的使用方式中。1 超級塊作用分析 1 2 所有的dentry都指向乙個dentry hashtable dentry hashtable是乙個樹組,每乙個樹組成員都是hash鍊錶...

nfs檔案系統使用

服務端搭建 1 安裝nfs服務版 apt get install nfs kernel server 2 修改nfs配置檔案 vi etc exports 在檔案中新增nfs的目錄格式如下 mnt share sync,rw,no root squash,subtree check 存檔退出 3 在...

使用proc檔案系統

以下是核心提供的幾個重要的proc檔案系統介面 1 read proc int read proc char page,char start,off t offset,int count,int eof,void data read proc是proc檔案輸出資訊介面,page是將要寫入資料的緩衝區...