網路檔案系統之NFS

2021-10-24 16:13:36 字數 2416 閱讀 5499

1.1 安裝軟體:

在客戶端安裝

[root@localhost ~]# yum -y install nfs-utils

在服務端安裝

[root@localhost ~]# yum -y install nfs-utils

1.2主機名解析:

[root@nfsclient ~]# cat /etc/hosts

127.0.0.1 localhost localhost.localdomain localhost4 localhost4.localdomain4

::1 localhost localhost.localdomain localhost6 localhost6.localdomain6

192.168.216.200 nfsclient

192.168.216.201 nfsserver

[root@nfsserver ~]# cat /etc/hosts

127.0.0.1 localhost localhost.localdomain localhost4 localhost4.localdomain4

::1 localhost localhost.localdomain localhost6 localhost6.localdomain6

192.168.216.200 nfsclient

192.168.216.201 nfsserver

1.3 建立共享目錄:

[root@nfsserver ~]# mkdir /smartgoshare
1.4共享目錄設定

[root@nfsserver ~]# cat /etc/exports

/smartgoshare *(rw,sync,no_root_squash)

1.5啟動服務,加入開機自啟動

[root@nfsserver ~]# systemctl enable nfs-server

created symlink from /etc/systemd/system/multi-user.target.wants/nfs-server.service to /usr/lib/systemd/system/nfs-server.service.

[root@nfsserver ~]# systemctl start nfs-server

1.6驗證

在服務端驗證

[root@nfsserver ~]# showmount -e

export list for nfsserver:

/smartgoshare *

在客戶端驗證

[root@nfsclient ~]# showmount -e 192.168.216.201

export list for 192.168.216.201:

/smartgoshare *

1.7 掛載使用

root@nfsclient ~]

# mount -t nfs 192.168.216.201:/smartgoshare /mnt

[root@nfsclient ~]

# df -h

檔案系統 容量 已用 可用 已用% 掛載點

/dev/sda3 96g 6.0g 91g 7%

/devtmpfs 975m 0 975m 0%

/dev

tmpfs 991m 0 991m 0%

/dev/shm

tmpfs 991m 11m 981m 2%

/run

tmpfs 991m 0 991m 0%

/sys/fs/cgroup

/dev/sda1 2.0g 164m 1.9g 9%

/boot

tmpfs 199m 12k 199m 1%

/run/user/42

tmpfs 199m 0 199m 0%

/run/user/0

192.168.216.201:/smartgoshare 50g 5.9g 45g 12%

/mnt

NFS網路檔案系統

一 samba伺服器與nfs伺服器的區別 samba伺服器用於建立windows與linux虛擬機器之間的檔案共享.nfs伺服器用於建立linux虛擬機器與arm嵌入式系統之間的檔案共享.二 nfs網路檔案系統的建立 1 在linux虛擬機器下執行選單 系統設定 伺服器設定 nfs伺服器,開啟nfs...

NFS 網路檔案系統

1.nfs network filesystem 網路檔案系統 讓不同的機器,不同的os在網路上共享目錄和檔案。通過nfs,使用者和程式可以象訪問本地檔案一樣訪問遠端系統上的檔案。4.配置nfs 共享的nfs目錄在 etc exports中列出,這個檔案控制對目錄的共享。書寫規則是 共享目錄 主機 ...

網路檔案系統NFS

1 介紹 network file system,由sun公司在1984年開發,目前nfs被普遍使用。nfs4.0以前的版本在效能上存在瓶頸,nfs4.1已經是pnfs了,即並行nfs?目的是在安裝unix計算機之間實現磁碟檔案共享,構建於ip協議之上,是標準的c s架構,nfs伺服器輸出 expo...