简体   繁体   English

如何通过网络共享在 linux 和 windows os 之间共享文件

[英]How to share files between linux and window os from Network sharing

我想使用 LAN 或 WiFi 将一些文件从一台计算机复制到另一台计算机。但是我无法在 Linux 网络上看到 windows 共享驱动器或在 windows 网络上看到 Linux 共享驱动器。谁能建议我如何配置网络以共享文件在 Linux 和 Windows 之间。

i think this problem solved with configuring samba server installing in ur linux system.我认为这个问题通过在你的 linux 系统中配置 samba 服务器来解决。 this is NFT system works in different platforms这是 NFT 系统在不同平台上工作

Access Windows file in Linux在 Linux 中访问 Windows 文件

Mount –t cifs –o username=YourUserName,password=YourPassword --verbose //WindowsComputerName/Folder /media/Folder
  1. Don't input domain name in front of YourUserName.请勿在 YourUserName 前输入域名。
  2. Don't input space between username and password.不要在用户名和密码之间输入空格。
  3. You can ignore apostrophe of username.您可以忽略用户名的撇号。
  4. You'd better input –verbose so that you can see detail information after execution.最好输入--verbose,执行后可以看到详细信息。
  5. You should create /media/Folder in advance.您应该提前创建 /media/Folder。
  6. If it prompts “Permission Denied” after execution, you can read Windows event log to get the root cause!如果执行后提示“Permission Denied”,可以通过阅读Windows事件日志来了解根本原因!

Refer to: http://www.cyberciti.biz/tips/how-to-mount-remote-windows-partition-windows-share-under-linux.html参考: http : //www.cyberciti.biz/tips/how-to-mount-remote-windows-partition-windows-share-under-linux.html

Access Linux file in Windows在 Windows 中访问 Linux 文件

http://www.howtogeek.com/176471/how-to-share-files-between-windows-and-linux/ http://www.howtogeek.com/176471/how-to-share-files-between-windows-and-linux/

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 如何从Linux Docker容器中的网络共享还原nuget软件包 - How to restore nuget packages from network share in Linux Docker container 如何在 Windows 10 和 Ubuntu Linux 子系统之间共享文件? - How to share files between Windows 10 and Ubuntu Linux subsystem? 如何以编程方式在Windows和任何其他操作系统(主要是Linux)之间共享位图图像? - How can I share a bitmap image between Windows and any other OS (mostly Linux) programmatically? 在两个linux操作系统之间同步文件和符号链接 - synchronizing files and symlinks between two linux os Linux内核模块-在源文件之间共享变量 - Linux Kernel Module - Sharing variables between source files 在IIS 6.0上从Linux共享提供文件 - Serving files from linux share on IIS 6.0 原生 Linux 方式在网络上共享文件? 就像 Linux Samba 所做的一样,但没有安装新应用程序 - Native Linux way to share files on a network? Like what Linux Samba does but without installing new app 在树莓派和多台Linux OS计算机之间传输文件? - Transfer files between raspberry pi and Multiple Linux OS computers? 在Linux上的进程之间共享内存 - Sharing memory between processes on linux 在Linux上的进程之间共享套接字 - sharing sockets between processes on linux
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM