轉自:https://www.cnblogs.com/zejin2008/p/7144514.html 先安裝包依賴: 安裝vm tool 按提示操作即可。 有/mnt/hgfs但沒有共用文件的解決方法: 這時不能用mount工具掛載,而是得用vmhgfs-fuse,需要安裝工具包 此時進入/mnt ...
轉自:https://www.cnblogs.com/zejin2008/p/7144514.html
先安裝包依賴:
yum -y install kernel-devel-$(uname -r) yum -y install net-tools perl gcc gcc-c++
安裝vm tool
mount /dev/cdrom /home/tmp cp /home/tmp/VMwareTools-9.6.0-1294478.tar.gz /tmp cd /tmp tar -zxvf VMwareTools-9.6.0-1294478.tar.gz cd vmware-tools-distrib ./vmware-install.pl按提示操作即可。 有/mnt/hgfs但沒有共用文件的解決方法:
mount -t vmhgfs .host:/ /mnt/hgfs Error: cannot mount filesystem: No such device
這時不能用mount工具掛載,而是得用vmhgfs-fuse,需要安裝工具包
yum install open-vm-tools-devel -y 有的源的名字並不一定為open-vm-tools-devel(centos) ,而是open-vm-dkms(unbuntu) 執行:vmhgfs-fuse .host:/ /mnt/hgfs此時進入/mnt/hgfs就能看到你設置的共用文件夾了。 自己補充: 但是我的仍舊未能成功, 執行 vmhgfs-fuse .host:/ /mnt/hgfs 後 顯示 fuse: mountpoint is not empty fuse: if you are sure this is safe, use the 'nonempty' mount option 重新執行命令,並增加nonempty參數, vmhgfs-fuse -o nonempty .host:/ /mnt/hgfs 然後成功,掛載在windows中共用的文件