Server
sudo apt-get install nfs-kernel-server
設定檔簡單設定一下
# /etc/exports: the access control list for filesystems which may be exported |
Client
安裝 nfs-commonapt-get install nfs-common
檢查 host 有開放那些掛載點showmount -e 192.168.1.222
把 222 的 project 掛到本機來mount -t nfs 192.168.1.222:/home/zack/project /home/zack/project
以上基本就搞定囉!