NFS 配置:
/etc/init.d/rpcbind restart
/etc/rc.d/init.d/nfs restart
$ vim /etc/exports
/mnt/koji *(rw,async,no_root_squash,no_subtree_check)
$ /etc/init.d/rpcbind start && chkconfig --level 2345 rpcbind on
$ /etc/init.d/nfs start && chkconfig --level 2345 nfs on
$exportfs -av
windows: 程序和功能打开 NFS开启服务
1.cmd-> mount \\202.206.32.158\app x:\
2.mount 属性可以看到UID=-2由于在存储设备上共享出来的NFS文件系统归属于root权限,并且无法修改该所属用户,而Windows通过UID=-2的用户去写,肯定写不进去。
3.解决办法就是让Win7在挂载NFS的时候将UID和GID改成0即可:打开注册表:HKEY_LOCAL_MACHINE\SOFTWARE \Microsoft\ClientForNFS\CurrentVersion\Default,
增加两 项:AnonymousUid,AnonymousGid,如图
4.重新启动电脑
5.mount \\202.206.32.158\app x:\
6.mount 查看GID UID
7.卸载时使用: umount
在注册表HKEY_LOCAL_MACHINE\software\mircosoft\windows\CurrentVersion\RUN中添加一项“字符串”,数值:mount \\202.206.32.158\app E:\ 即可实现开机自动挂载NFS
阅读(1645) | 评论(0) | 转发(0) |