我需要从 Linux 连接到 Windows 来复制一些文件。 我的 Windows 目录如下所示: \Server\Pucblic\dir\offline tc 我试过: smbclient -U user%pw \Server\Public\dir\offline tc 还有
smbclient -U user%pw \\Server\Public --directory dir\offline\etc
没有任何效果。
但是当我尝试连接到 \Server\Public 时 - 那正在工作......
尝试这些命令
注意: 尝试使用前斜杠,如下所示。
smbclient -U user%pw //Server/Public --directory dir/offline/etc
如果您想从单个命令行复制文件,请尝试:
smbclient -U user%pw //Server/Public --directory dir/offline/etc -c 'put "yourfilename"'