在vmware player中共享文件夹
编辑.vmx文件:
示例加入到最后:
isolation.tools.hgfs.disable = "FALSE" sharedFolder.maxNum = "2" sharedFolder0.present = "TRUE" sharedFolder0.enabled = "TRUE" sharedFolder0.readAccess = "TRUE" sharedFolder0.writeAccess = "TRUE" sharedFolder0.hostPath = "/mnt" sharedFolder0.guestName = "mnt" sharedFolder0.expiration = "never" sharedFolder1.present = "TRUE" sharedFolder1.enabled = "TRUE" sharedFolder1.readAccess = "TRUE" sharedFolder1.writeAccess = "TRUE" sharedFolder1.hostPath = "/home/eric" sharedFolder1.guestName = "home" sharedFolder1.expiration = "never"
isolation.tools.hgfs.disable = “FALSE”
如果已经定义了,只保留其中一个。
sharedFolder.maxNum
共享的文件夹个数,共享文件夹从0开始计数。
sharedFolder1.hostPath
路径。
References:
http://www.visoracle.com/download/debian/sharedfolders.html