linux 搭建NFS服务器

注:笔者使用环境VMware Workstation8-Ubuntu10.04

执行(没有防火墙):

sudoapt-get install nfs-kernel-server

 

设置服务器输出共享目录及相关内容:

sudo vim/etc/exports

在末尾加上:

共享目录 允许访问网段(rw,sync,no_subtree_check)

例如:

/home/zhangxiao/hellotest* (rw,sync,no_subtree_check)

附:*表示任何网段。

 

执行sudo servicenfs-kernel-server restart

本地测试:

mount -tnfs 172.26.44.58:/home/zhangxiao/hellotest /mnt

ip地址由ifconfig命令查看。

 

使用以下命令均可卸载挂载的文件系统:

sudoumount /home/zhangxiao/hellotest

sudoumount /mnt

sudo/home/zhangxiao/hellotest /mnt

你可能感兴趣的:(服务器,ubuntu,nfs)