ubuntu 64 14.04 共享文件夹问题

转自http://blog.csdn.net/gongyuan073/article/details/46604233

原文链接: http://blog.csdn.NET/chinley/article/details/45666241

Win7中用VM11 / VM10 安装的Ubuntu14.04中,安装完自带的VMware Tools之后,/mnt/hgfs 中没有前面已经设置好的共享文件夹

解决方法如下:

如果安装了 open-vm-tools 要先卸载:

[plain] view plain copy
 
  1. sudo apt-get remove open-vm-tools  
  2. sudo apt-get remove open-vm-tools-desktop  
  3. sudo apt-get autoremove  


到https://github.com/rasa/vmware-tools-patches下载zip文件拿到ubuntu里, 然后执行:

[plain] view plain copy
 
  1. unzip vmware-tools-patches-mater.zip  


点击 "虚拟机 - 重新安装vmware tools"

将vmware tools压缩包拷贝到刚才unzip之后的文件夹里 "vmware-tools-patches-master", 然后执行

[plain] view plain copy
 
  1. ./untar-and-patch-and-compile.sh  

然后就可以看到 /mnt/hgfs下的内容了

原文地址:https://www.cnblogs.com/fdd566/p/6692271.html