meteorm 发表于 2007-08-09 16:18

Solaris 下 mount Windows 共享目录

试图mount共享文件夹dir1到/mnt
1, 执行下面命令
#mount servername:dir1 /mnt
提示没有权限,命令失败
2, 执行下面命令
#mount -o username=administrator password=password servername:dir1 /mnt
有如下提示,不过没关系,继续往下走第3步
Usage:
mount [-v | -p]
mount [-F FSType] [-V] [-o specific_options]
      {special | mount_point}
mount [-F FSType] [-V] [-o specific_options]
      special mount_point
mount -a [-F FSType ] [-V] [-o specific_options]
      
3, 执行下面命令
#mount servername:dir1 /mnt
mount成功
               
               
               
               
               
               
               

本文来自ChinaUnix博客,如果查看原文请点:http://blog.chinaunix.net/u/19919/showart_356852.html
页: [1]
查看完整版本: Solaris 下 mount Windows 共享目录