Ubuntu16 04 nfs共享資料夾

2021-08-22 16:13:24 字數 1158 閱讀 6136

nfs服務是實現linux和linux之間的檔案共享,nfs服務的搭建比較簡單。現在介紹如何在ubuntu16.04系統中搭建nfs服務。

sudo apt install nfs-common
sudo gedit /etc/exports
修改內容如下:

dir_want_to_share client_a(rw,sync,no_root_squash) client_b(rw,sync,no_root_squash) ...
各段表達的意思如下,根據實際進行修改

dir_want_to_share   :共享的目錄

client_a :指定哪些使用者可以訪問

* 所有可以ping同該主機的使用者

192.168

.1.* 指定網段,在該網段中的使用者可以掛載

192.168

.1.12 只有該使用者能掛載

(ro,sync,no_root_squash): 許可權

ro : 唯讀

rw : 讀寫

sync : 同步

no_root_squash: 不降低root使用者的許可權

其他選項man 5 exports 檢視

sudo /etc/init.d/nfs-kernel

-server restart

到此,nfs的服務就搭建好了。

下面介紹客戶端如何訪問伺服器,客服端當然也需要安裝nfs。

ping + 主機ip
showmount -e + host_ip
showmount -e host_ip

export list for host_ip:

dir_want_to_share client_a

sudo mount host_ip

:/dir_want_to_share

where_to_mount

where_to_mount必須是空資料夾。

訪問本地的where_to_mount目錄,就可訪問服務端共享的目錄了。

ubuntu16 04 NFS 檔案共享設定

1.1 伺服器端需要安裝 nfs kernel server 軟體包 sudo apt get update sudo apt get install nfs kernel server1.2 建立共享的檔案 也可以是已經存在的檔案 sudo mkdir p home gongxiang1.3.修改...

ubuntu 16 04 nfs服務的搭建

原文 nfs服務是實現linux和linux之間的檔案共享,nfs服務的搭建比較簡單。現在介紹如何在ubuntu16.04系統中搭建nfs服務,ubuntu的搭建比紅帽的還要簡單。1 安裝nfs服務 sudo apt install nfs common2 修改配置檔案 sudo vim etc e...

ubuntu16 04 nfs伺服器的搭建

一 ubuntu環境下安裝客戶端與伺服器 nfs服務是實現linux和linux之間的檔案共享,nfs服務的搭建比較簡單。現在介紹如何在ubuntu16.04系統中搭建nfs服務 安裝nfs客戶端 sudo apt get install nfs common安裝伺服器端 sudo apt get ...