通过 Debian 操作系统访问网络共享

通过 Debian 操作系统访问网络共享

我正在尝试通过 Putty 将 SVN 备份文件从本地目录移动到 NAS 设备,并使用以下语法,但是我收到以下错误消息 -

debian@debianvm:~/svn-backups$ smbclient //IP/Volume_1/NAS/SVN_backups/ -U 'username' 'password'
Domain=[DLINK-88F0C6] OS=[Unix] Server=[Samba 3.2.8]
tree connect failed: NT_STATUS_BAD_NETWORK_NAME

您能告诉我根本原因是什么吗?

答案1

您必须向 smbclient 提供共享名称;不支持子目录。

smbclient //IP/Volume_1 -U username password

您应该能够通过在某处安装共享来验证这一点:

mount -t cifs //IP/volume_1 /mnt/tmp -o user=username,pass=password

相关内容