ubuntu 設定 nfs 服務

2021-06-05 09:56:54 字數 570 閱讀 6783

ubuntu 設定 nfs 服務的步驟:

1,安裝相關軟體包:nfs-kernel-server

#apt-get install nfs-kernel-server
2,修改 nsf 配置檔案 /etc/exports

#gedit /etc/exports
在檔案中新增 nfs 的目錄格式如下

/srv/nfs *(sync,rw)

/srv/nfs/rootfs-debian *(rw,nohide,insecure,no_subtree_check,async,no_root_squash)

存檔退出

3,在根目錄下建立 nsf 的目錄

#mkdir /srv/nfs
修改該目錄的許可權

#chmod 777 -r /srv/nfs
4,重新啟動 nfs 服務

#/etc/init.d/nfs-kernel-server restart

ubuntu安裝nfs服務

在 ubuntu 中安裝nfs 服務,在開發核心和檔案系統時很方便,可以直接採用 nfs啟動核心和檔案系統。安裝如下 1 安裝 apt get install nfs kernel server 2 將nfs 埠是否開啟 netstat tl 若 nfs埠處於 listen 狀態,則開啟 3 配置n...

ubuntu 開啟nfs服務

sudo apt get install nfs kernel server 開啟 etc exports檔案,在末尾加入 home xgc rw,sync,no root squash 注 nfs允許掛載的目錄及許可權,在檔案 etc exports中進行定義,各欄位含義如下 home xgc 要...

ubuntu 開啟nfs服務

1.執行命令 sudo apt get install nfs kernel server 安裝nfs 2.配置 etc exports檔案 2.1建立nfs專有資料夾,檔案位置隨你定,只是建立之後裡面的內容可以實現nfs共享。本人建立在 home he nfs he 2.2 修改 etc expo...