分类:
2012-11-09 09:46:03
1.yum install portmap nfs-untiles
(这里要说明下,这里是同时安装nfs和portmap,但是你可能会发现,安装成功之后,你会找不到portmap配置文件,原因在于从Fedora13以后portmap升级为rpcbind套件,在安装portmap的时候会自动安装rpcbind,所以你不用担心!)
2.vi /etc/exports
eg.
/home/rootfs *(rw,sync,no_root_squash)
rw:读/写权限,只读权限的参数为ro;
sync:数据同步写入内存和硬盘,也可以使用async,此时数据会先暂存于内存中,而不立即写入硬盘。 no_root_squash:NFS 服务器共享目录用户的属性,如果用户是 root,那么对于这个共享目录来说就具有 root 的权限。
3.chmod 777 /home/rootfs
/etc/init.d/nfs 重启nfs服务
[root@localhost mnt]# /etc/init.d/nfs restart
关闭 NFS mountd: [确定]
关闭 NFS 守护进程: [确定]
关闭 NFS quotas: [确定]
关闭 NFS 服务: [确定]
启动 NFS 服务: [确定]
关掉 NFS 配额: [确定]
启动 NFS 守护进程: [确定]
启动 NFS mountd: [确定]
[root@localhost mnt]#
也可以在/etc/init.d/下用service nfs restart命令
[root@localhost init.d]# service nfs restart
关闭 NFS mountd: [确定]
关闭 NFS 守护进程: [确定]
关闭 NFS quotas: [确定]
关闭 NFS 服务: [确定]
启动 NFS 服务: [确定]
关掉 NFS 配额: [确定]
启动 NFS 守护进程: [确定]
启动 NFS mountd: [确定]
[root@localhost init.d]#
4.挂载
mount -t nfs localhost:/home/work /nfsmnt
mount -t nfs 192.168.0.4:/home/work /nfsmnt