NFS使用

(1)安装

$sudo apt-get install nfs-kernel-server

(2)配置

修改 /etc/exports  
添加如下一行:
/home/nfsshare *(rw,sync,no_root_squash) 

其中:
/rootfs
是要共享的目录,
*
代表允许所有的网络段访问,
rw
是可读写权限
,sync
是资料同步写入内存和硬盘,no_root_squash是Ubuntu nfs客户端分享目录使用者的权限,如果客户端使用的是root用户,那么对于该共享目录而言,该客户端就具有root权限。

(3)重启

$sudo /etc/init.d/portmap restart 
$sudo /etc/init.d/nfs-kernel-server restart 


(4)NFS客户端挂载

mount -t nfs -o nolock 192.168.1.100:/home/s3c2440/examples /mnt



你可能感兴趣的:(c,网络,ubuntu)