用到的方法是 CIFS (Common Internet File System)windows自己的网络文件系统 操作系统: Linux为 debian. Windows 为 windows 8 Windows 上配置:
- 若原来关闭了windows共享服务,则首先开启该服务。
方法如下
- 打开 计算机->管理->服务和应用程序->服务和应用程序->服务
- Server 服务 右键-〉属性->启动类型->自动 并点击启动
- 打开 控制面板\网络和 Internet\网络和共享中心\高级共享设置.启用网络发现,启用文件和打印机共享
- 打开需要共享的文件夹,右键,属性,共享->高级共享->权限->添加->高级->立即查找->everyone 确定
- 右键,共享,共享,选择everyone,点击共享,
Linux 上配置
- 安装cifs
[code lang="shell"] sudo apt-get install cifs* [/code]
- 建立文件夹
[code lang="shell"]mkdir XX [/code]
- 挂载
[code lang="shell"]sudo mount –t cifs –o username=** //192.168.xxx.xxx XX[/code]