Access windows EBS Volume from EC2 linux as folder

Solution 1:

You can try mounting it via cifs:

mkdir -p /mnt/share
mount -t cifs -o username=USERNAME,password=PASSWD //10.0.0.12/share /mnt/share

Solution 2:

The Samba project basically provides the Linux server and client software for exposing or consuming Windows shares. The equivalent tool you are looking for here then is the sbmclient. Some simple examples here:

/usr/bin/smbclient \\<ip address>\public mypasswd

The smbmount command, also described in the link earlier shows you how you can mount the share.