【发布时间】:2013-09-13 10:40:49
【问题描述】:
我想使用 LAN 或 WiFi 将一些文件从一台计算机复制到另一台计算机。但我无法在 Linux 网络上看到 Windows 共享驱动器或在 Windows 网络上看到 Linux 共享驱动器。谁能建议我如何配置网络用于在 Linux 和 Windows 之间共享文件。
【问题讨论】:
标签: linux windows sharing samba file-sharing
我想使用 LAN 或 WiFi 将一些文件从一台计算机复制到另一台计算机。但我无法在 Linux 网络上看到 Windows 共享驱动器或在 Windows 网络上看到 Linux 共享驱动器。谁能建议我如何配置网络用于在 Linux 和 Windows 之间共享文件。
【问题讨论】:
标签: linux windows sharing samba file-sharing
您必须配置 samba 或 CIFS。检查链接http://cri.ch/linux/docs/sk0001.html或http://www.cyberciti.biz/tips/how-to-mount-remote-windows-partition-windows-share-under-linux.html
感谢和问候,
阿洛克
【讨论】:
我认为这个问题可以通过在你的 linux 系统中配置 samba 服务器来解决。这是 NFT 系统在不同平台上的工作
【讨论】:
在 Linux 中访问 Windows 文件
Mount –t cifs –o username=YourUserName,password=YourPassword --verbose //WindowsComputerName/Folder /media/Folder
参考:http://www.cyberciti.biz/tips/how-to-mount-remote-windows-partition-windows-share-under-linux.html
在 Windows 中访问 Linux 文件
http://www.howtogeek.com/176471/how-to-share-files-between-windows-and-linux/
【讨论】: