輸入指令:
yum install -y nfs-utils
yum install -y rpcbind
2.安裝完成後啟動
輸入指令:
systemctl start rpcbind
systemctl enable rpcbind
systemctl start nfs-server nfs-secure-server
此處如果不行可以是用:sudo service nfs-server start
3.建立需要共享的資料夾
輸入指令:
mkdir /public
4.編輯nfs配置檔案
輸入指令:
/public 為共享檔案的位址
*(rw) *代表任何位址都可以訪問 rw為讀寫許可權
引數說明:
5.linux 客戶端掛載nfs
sudo apt install nfs-common
通過指令檢視nfs伺服器的共享檔案
編輯客戶端nfs檔案
輸入指令:
編輯後儲存
輸入:mount -a
輸入指令:
顯示此處說明掛載成功
6.window10 開啟nfs並掛載
第一步:在控制面板–>新增程式和功能–>新增nfs元件。
第三步:如果許可權有問題,開啟登錄檔:regedit, 在hkey_local_machine\software\microsoft\clientfornfs\currentversion\default 下新建兩個oword(64)位值,新增值anonymousgid,值預設為0,anonymousuid,值預設為0。
NFS伺服器搭建與autofs自動掛載
1 安裝nfsyum install nfs utils y 安裝nfs systemctl start nfs 開啟nfs服務 systemctl enable nfs 開機自啟動2 配置nfs root localhost vim etc exports 第一次使用nfs服務需手動建立 home...
NFS伺服器搭建與autofs自動掛載
nfs,是network file system的簡寫,即網路檔案系統。網路檔案系統是freebsd支援的檔案系統中的一種,也被稱為nfs。nfs允許乙個系統在網路上與他人共享目錄和檔案。通過使用nfs,使用者和程式可以像訪問本地檔案一樣訪問遠端系統上的檔案。2.1安裝nfs 2.11安裝nfs軟體...
NFS伺服器搭建與autofs自動掛載
nfs伺服器搭建與autofs自動掛載 nfs網路檔案系統,英文全稱network file system,是當前主流異構平台共享檔案系統之一。其實現主要是採用遠端過程呼叫rpc機制,可以通過網路,讓不同的機器 不同的作業系統可以共享彼此的檔案。nfs伺服器可以允許nfs客戶端將遠端nfs伺服器端的...