How to Add Shared Folders in Vmware Player
This post was written by admin on December 22, 2009
Posted Under: General
Posted Under: General
You have to add some shares to the configuration file of the virtual machine. Open the .vmx file in a text editor and add the following lines at the bottom of the file to add some random shared folders and enable the drag-and-drop feature:
isolation.tools.dnd.disable = "FALSE" isolation.tools.copy.enable = "TRUE" isolation.tools.paste.enable = "TRUE" sharedFolder.maxNum = "2" sharedFolder0.present = "TRUE" sharedFolder0.enabled = "TRUE" sharedFolder0.readAccess = "TRUE" sharedFolder0.writeAccess = "FALSE" sharedFolder0.hostPath = "C:\" sharedFolder0.guestName = "C" sharedFolder0.expiration = "never" sharedFolder1.present = "TRUE" sharedFolder1.enabled = "FALSE" sharedFolder1.readAccess = "TRUE" sharedFolder1.writeAccess = "FALSE" sharedFolder1.hostPath = "/" sharedFolder1.guestName = "/" sharedFolder1.expiration = "never"
You can add more or less shares, but don’t forget to change the sharedFolder.maxNum value accordingly. Don’t worry about the locations of the shared folders, they can be changed with your VMware software.
Credit goes:http://chrysaor.info/?page=faq#shared_folders
Related posts:
- How to install VMware Player in Ubuntu 9.10
- Install Vmware Tools on Ubuntu 10.04
- Install VMware Tools on ubuntu 9.04
- Fix Network connection icon disappear on top-right panel
- How to Backup your data on to a shared network drive

Reader Comments
It is very useful info. My question is how to access the shared folder from Guest(Ubuntu). I tried /mnt/hgfs and could not find my shared folder. Thanks in advance.
[Reply]
davis.raye Reply:
August 13th, 2011 at 10:12 pm
can you manage to solve this problem? I have the same problem…pls help
[Reply]
Abhishek Reply:
September 22nd, 2011 at 2:48 am
I could access it in Ubuntu at /mnt/hgfs/
[Reply]