日期:2014-05-16  浏览次数:20624 次

关于linux 挂载网络驱动器 测试LDAP
现想挂载一个网络驱动器,去测试LDAP,在命令行输入
mount -t nfs xxx.xxx.x.xxx:/mnt/123/ /mnt/LDAP/
123已在服务器端开共享,并且客户端mnt/LDAP 存在且为空

但是弹出一下内容
Usage: mount -V : print version
  mount -h : print this help
  mount : list mounted filesystems
  mount -l : idem, including volume labels
So far the informational part. Next the mounting.
The command is `mount [-t fstype] something somewhere'.
Details found in /etc/fstab may be omitted.
  mount -a [-t|-O] ... : mount all stuff from /etc/fstab
  mount device : mount device at the known place
  mount directory : mount known device here
  mount -t type dev dir : ordinary mount command
Note that one does not really mount a device, one mounts
a filesystem (of the given type) found on the device.
One can also mount an already visible directory tree elsewhere:
  mount --bind olddir newdir
or move a subtree:
  mount --move olddir newdir
One can change the type of mount containing the directory dir:
  mount --make-shared dir
  mount --make-slave dir
  mount --make-private dir
  mount --make-unbindable dir
One can change the type of all the mounts in a mount subtree
containing the directory dir:
  mount --make-rshared dir
  mount --make-rslave dir
  mount --make-rprivate dir
  mount --make-runbindable dir
A device can be given by name, say /dev/hda1 or /dev/cdrom,
or by label, using -L label or by uuid, using -U uuid .
Other options: [-nfFrsvw] [-o options] [-p passwdfd].
For many more details, say man 8 mount .

不解中,LDAP在windows下使用正常,请赐教!


如果是LDAP需要用户名和密码验证才造成这样的话,我该如何将用户名密码推过去呢?

------解决方案--------------------
LDAP的试验以前做了一半没完成,因为步骤太多了,现在都忘了原理了。nfs服务器共享出来给客户端访问的目录权限还跟客户端用户的uid和gid相关的,你可以在测试客户端看看登录用户的uid和gid再跟服务器上相应目录和文件的权限对比看看,如果符合读写权限控制大概就算是正常的吧。