Even though I'm using Windows, the Ubuntus Sharing blog had an article the helped me. With the following lines, I shared the C and E drives, with E being Read Only.
isolation.tools.hgfs.disable = "FALSE""isolation.tools" was the command that enabled shared folders, while the other entries defined what was shared. I believe the settings are self explanatory.
sharedFolder.maxNum = "2"
sharedFolder0.present = "TRUE"
sharedFolder0.enabled = "TRUE"
sharedFolder0.readAccess = "TRUE"
sharedFolder0.writeAccess = "TRUE"
sharedFolder0.hostPath = "C:\"
sharedFolder0.guestName = "C"
sharedFolder0.expiration = "never"
sharedFolder1.present = "TRUE"
sharedFolder1.enabled = "TRUE"
sharedFolder1.readAccess = "TRUE"
sharedFolder1.writeAccess = "FALSE"
sharedFolder1.hostPath = "E:\"
sharedFolder1.guestName = "E"
sharedFolder1.expiration = "never"
If you want to learn more, sanborrow.com has an explanation of many of the VMX file parameters. If you want to create a new VMX file, try sanborrow.com VMX Builder.
0 comments:
Post a Comment