REF: https://ferhatakgun.com/network-share-performance-differences-between-nfs-smb/
NFS寫入速度較佳

Write
cp -f ~/tmp/test/10KB/* /mnt/smb/test/10KB/) && (rm -f /mnt/smb/test/10KB/*)
Red
time cp -f /mnt/nfs/test/1MB/* ~/tmp/test/1MB/) && (rm ~/tmp/test/1MB/* && sudo sh -c 'echo 1 >/proc/sys/vm/drop_caches' && sudo sh -c 'echo 2 >/proc/sys/vm/drop_caches' && sudo sh -c 'echo 3 >/proc/sys/vm/drop_caches'
Windows 簡易NFS架設NFS
Lab用途簡易NFS
haneWIN NFS Server
https://www.hanewin.net/doc/nfs/nfsd.htm

-maproot:<uid>[:<gid>] | the Unix super user root is mapped to the specified user-id, group-id. Without a mapping entry root will be mapped to user and group NOBODY by default. Because there are a lot of unix boxes running as root only, there is also an option to map to root by default for all entries (see exports section below). |
Ubuntu 18.04 安裝套件
sudo apt install nfs-common
Mount磁碟
mkdir /mnt/nfs mount -t nfs 192.168.1.4:/d/nfs /mnt/nfs