Windows Shared folders can be read in Linux using Samba. Recently Samba was replaced with CIFS and can be mounted using mount. To mount a Windows Share folder in a local directory in Linux:
-
mount -t cifs \\\\IP\\SHARE LOCAL_DIR -o user=user
It will ask for the password.
If the share requires a domain, just add the domain:
-
mount -t cifs \\\\IP\\SHARE LOCAL_DIR -o user=user domain=DOMAIN_NAME
To disconnect, just use umount:
-
umount LOCAL_DIR
About me