如何将文件复制到Windows共享?


Answers:


6

除非您正在寻找永久设置(smbmount可能会更好),否则您想使用该smbclient解决方案,其作用类似于FTP客户端。您先连接,然后cd并放置/获取文件。

连接如下:

$ smbclient //computer.domain/sharename -U domain/username
Enter domain/username's password: 
Domain=[DN] OS=[Windows Server (R) 2008 Enterprise 6002 Service Pack 2] Server=[Windows Server (R) 2008 Enterprise 6.0]
smb: \>

在此处检查手册页:http : //linux.die.net/man/1/smbclient


为此,我现在可以连接到远程Windows计算机。我可以列出该共享中的文件和文件夹。现在,将位于我的主文件夹中的文件复制到Windows共享的命令是什么?
2012年

put filename.txt举例来说。
Mattias Ahnberg

谢谢您的帮助。这对我有用。mkdir / mnt / smbshare,然后sudo mount -t cifs // serverfs / c $ -o username = Jasonbe,password = password / mnt / smbshare
Jake


2

为了稍微扩展一下@onur的观点-只要安装了文件系统,(几乎)所有正常的文件实用程序都应该可用,因为那时候它看起来像* nix作为文件系统。

Samba允许您使用smbmount挂载Windows共享,这是许多发行版的标准配置,也是大多数其他发行版的选项。

诸如cp,mv等命令应该可以正常工作。

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.