解除安裝伺服器端
sudo apt install nfs-kernel-server
sudo gedit /etc/exports
# 新增以下內容
/home/nfsroot *(rw,sync,all_squash,anonuid=1000,anongid=1000)
/home/nfsroot *(rw,sync,no_root_squash)
#選擇乙個即可
其中:
(rw
,sync
,no_root_squash
,no_subtree_check
)
rw
:讀/寫許可權
sync
:資料同步寫入記憶體和硬碟
no_root_squash
:伺服器允許遠端系統以root
特權訪問該目錄
no_subtree_check
:關閉子樹檢查
其他選項可以通過man exports
查閱man
文件
sudo
service portmap restart
sudo
service nfs-kernel-server restart
本機掛載ls /mnt/nfs
sudo
mount -t nfs -o nolock localhost:/home/nfsroot /mnt/nfs
ls /mnt/nfs
遠端掛載
客戶端
cd /mnt
sudo
mkdir nfs
sudo
mount -t nfs -o nolock 192.168.137.110:/home/nfsroot /mnt/nfs
如果報錯
mount: wrong fs type, bad option, bad superblock on 192.168.137.7:/home/nfsroot,
missing codepage or helper program, or other error
(for several filesystems (e.g. nfs, cifs) you might
need a /sbin/mount. helper program)
in some cases useful info is found in syslog - try
dmesg
|tail or so.
加上busybox
即可(原因未深究)
sudo busybox mount -t nfs -o nolock 192.168.137.110:/home/nfsroot /mnt/nfs
sudo
umount /mnt/nfs
工作記錄 NFS掛載目錄服務
工作記錄 nfs掛載目錄服務 nfs服務 它的最大功能是可以通過網路,讓不同的機器 不同的作業系統可以掛載共享彼此的檔案。一 搭建nfs服務 1 windows環境下搭建 通過官網下週hanewin nfs服務端程式,直接安裝,然後配置共享目錄 新增自定義共享目錄,然後儲存退出,服務就搭好了 pub...
NFS網域名稱掛載
nfs cat etc resolv.conf eof nameserver xx.xx.xx.xx eofnslookup xx.xx.xx.xx的網域名稱 華為物件儲存fusionstorage file掛載使用 mount t nfs o vers 3,timeo 600 fs23 stora...
NFS掛載 解除安裝
掛載命令 root web01 mount t nfs 172.16.1.31 data data mount 掛載命令 t 指定掛載的檔案型別 nfs 掛載型別是nfs 172.16.1.31 遠端掛載的主機ip data 遠端掛載的主機目錄 data 本地要掛載的目錄 檢視掛載點 root we...