2009年4月30日木曜日

sambaじゃなくてnfsでserverをmountする!

server側の設定!
apt-get install portmap nfs-common nfs-kernel-server

/etc/hosts.allow
ALL:127.0.0.1
portmap:192.168.1.
lockd:192.168.1.
mountd:192.168.1.
statd:192.168.1.

/etc/hosts.deny
portmap:ALL
lockd:ALL
mountd:ALL
rquotad:ALL
statd:ALL

/etc/exports
クライアントにマウントさせたいところ 許可するホスト(オプション)って感じ
/mnt/server *(rw,no_root_squash,no_subtree_check)

ここまで出来たら
/etc/init.d/nfs-kernel-server restart

クライアント側の設定!
apt-get install nfs-common

マウント先を作るよ!
sudo mkdir /mnt/client && sudo chown hoge:hoge /mnt/client

/etc/fstabに設定を書き加えて,boot時にmountしてくれるとうれしいな
サーバのIP:/マウントさせたい場所 マウントする場所 nfs オプション
192.168.1.xx:/mnt/server /mnt/client nfs users,defaults 0 0

ここまで出来たら,sudo mount -aを実行してみる!
無事mountできたら一件落着.

0 件のコメント:

コメントを投稿