首选是使用samba服务

 
要求linux系统中安装了smb和smbclient
范例:
windows系统的ip是 192.168.4.21,共享文件夹的名称是Software 。
方式一:
(1)Alt+F2 ,打开“运行”窗口。
(2)在“运行”窗口中运行smb:// 192.168.4.21/Software
 
方式二:使用mount
不需要密码:mount   //192.168.44.1/share /mnt/wind2
需要密码: mount //192.168.4.21/Software /mnt/win -o user=user,password=user
            或mount //192.168.4.21/Software /mnt/win -o user=user
或:mount.cifs //192.168.4.21/Software /mnt/whuang -o user=user
 
方式三:使用smbclient
smbclient -U test //192.168.4.21/Software
说明:-U 后面接用户名
进入之后,可以使用mget 下载文件。
 
如何linux系统比较破,既没有smb,也不能mount,怎么办?
那就使用ftp,只需要在windows上安装一个ftp的服务器,如FileZilla Server。
在windows中启动FileZilla Server服务后,在linux中就可以使用 ftp windows ip来访问windows了。