I think I may have found the solution for mounting external SMB/Windows shares. The smbfs package was not installed. After installing smbfs, I was able to mount my windows share.
Here's how you can mount an external SMB/Windows share from within the VM (note that this is an optional feature):
1. run this command first to install smbfs:
sudo apt-get install smbfs
2. unmount /home/vmware/data, then mount the smb share to /home/vmware/data (fill in the information for your server):
sudo umount /home/vmware/data
sudo mount -o username=user,password=password -t smbfs //server_ip/share /home/vmware/data
3. then run this command to seed the initial data
sudo /home/vmware/bin/data.sh
Please give this a try. It worked for me. Thanks a lot for trying my VM and see if you can figure out how to vote.
It looks like I will have to either install smbfs in the next version, or beef up the instructions for mounting external shares to include what I posted above.
Message was edited by:
rxhui