Windows Mount Linux NFS

Step 1 .設定 Linux 端


root # apt-get install nfs-common
root #  apt-get install nfs-kernel-server

root # vi /etc/exports  
/home/William *(rw,sync) (*將/home/William Folder share 出來可以讓所有client(*) mount) 


root #  /etc/init.d/portmap start
root #  /etc/init.d/nfs-common start
root #  /etc/init.d/nfs-kernel-server start

確認有沒有正確export完成
showmount -e localhost

Step 2. Windows Client 設定 
((1)安裝元件、(2)Mount 遠端Folder)

(1)先安裝需要的元件

(2)Mount 遠端的Folder
mount [ServerIP]:[Path] [Local Disk name]
mount 192.168.1.2:/home/William G:


成功後就會在我的電腦上看到 G: 是ubuntu /home/William 的資料





以上就完成NFS 在Windows 本機的Mount

留言