サーバー側の設定
# apt-get install nfs-kernel-server
# mkdir -p /home/samba/password
# chown nobody:nogroup /home/samba/password
# chmod 0777 /home/samba/password
# vi /etc/exports
/home/samba/password *(rw,sync,no_subtree_check)
# /etc/init.d/nfs-kernel-server restart
クライアント側の設定
# apt-get install nfs-common
# mkdir -p /home/nfs/ubuntu/password
# mount -t nfs 192.168.1.2:/home/samba/password /home/nfs/ubuntu/password/
コメント