尝试将一台 linux(SUSE)服务器的 samba 共享目录挂载到同一网络上的另一台 linux(SUSE)服务器上。
我的情况如下。
sambaserver-1
的配置如下所示,我可以/opt/direc-tory/
从 Linux 和 Windows 访问共享目录,无需任何密码或任何问题。
[software]
comment = Viz Media Engine Client Software
path = /opt/direc-tory/
read only = yes
public = yes
尝试访问如下所示mount(cifs)
的该目录server-2
..
mkdir -p /mnt/soft
server-2:/ # mount -t cifs //x.x.x.x/opt/direc-tory/ /mnt/soft/
并收到此错误消息。
密码:
使用大写共享名重试
安装错误(6):没有此设备或地址
请参阅 mount.cifs(8) 手册页(例如 man mount.cifs)
它要求输入密码,但不确定是哪个用户的。尝试了所有系统用户,例如……
mount -t cifs //x.x.x.x/opt/direc-tory/ /mnt/soft/ -o user=user-1,password=passwd-1
并得到这个..
使用大写共享名重试
安装错误(6):没有此设备或地址
请参阅 mount.cifs(8) 手册页(例如 man mount.cifs)
知道如何挂载该目录以及它要求输入哪个用户密码吗?
谢谢。
答案1
您使用的不是 NFS,而是 CIFS。CIFS 隐藏了底层文件系统结构。安装“软件”共享的适当命令如下:
mount -t cifs //x.x.x.x/software /mnt/software