Vmware10中Centos7挂载Windows主机的共享文件夹,提示:Error: cannot mount filesystem: No such device

1、设置共享权限

这里写图片描述

2、安装VMware tools

这里写图片描述

  • 点击虚拟机
  • 点击安装 VMware tools
  • 将/run/media/zhaojq/VMware Tools 目录下的VMwareTools-9.6.2-1688356.tar.gz拷贝到家目录下
  • 解压后生成vmware-tools-distrib
  1.  
    [zhaojq@localhost vmware-tools-distrib]$ ls
  2.  
    bin doc etc FILES INSTALL installer lib vmware-install.pl

运行./vmware-install.pl

[zhaojq@localhost vmware-tools-distrib]$ ./vmware-install.pl 

一直enter

  1.  
    The path "" is not valid path to the gcc binary.
  2.  
    Would you like to change it? [yes] no
  3.  
    输入 no
  4.  
    The path "" is not a valid path to the 3.10.0-514.26.2.el7.x86_64 kernel
  5.  
    headers.
  6.  
    Would you like to change it? [yes] no
  7.  
    输入 no

安装成功后返回

  1.  
    Enjoy,
  2.  
     
  3.  
    --the VMware team

2、挂载Windows主机的共享文件夹

mnt/hgfs 目录

  1.  
    [zhaojq@localhost ~] cd /mnt/hgfs/
  2.  
    [zhaojq@localhost hgfs] pwd
  3.  
    /mnt/hgfs

vmware-hgfsclient 命令查看当前共享的目录

  1.  
    [zhaojq@localhost hgfs]$ vmware-hgfsclient
  2.  
    E

mount报错

  1. [zhaojq@localhost hgfs]$ sudo mount -t vmhgfs .host:/E /mnt/hgfs
  2. Error: cannot mount filesystem: No such device

vmhgfs-fuse,需要安装工具包

  1.  
    [zhaojq@localhost hgfs]$ yum install open-vm-tools-devel -y
  2. [zhaojq@localhost hgfs]$ vmhgfs-fuse .host:/E /mnt/hgfs

3、查看挂载

注意:需要root权限查看。

Windows 主机的E盘情况

这里写图片描述

Centos虚拟机下的挂载情况

  1.  
    [root@localhost hgfs]# ls
  2.  
    jashkenas-coffeescript-1.12.6-0-gf0e9837.tar.gz LeaRun敏捷后台开发框架_6.3.4 $RECYCLE.BIN System Volume Information
  3.  
    LeaRun_6.3.4.zip node-v6.11.1-linux-x64.tar.xz redis-3.2.9.tar.gz

挂载成功

原文地址:https://www.cnblogs.com/caiyt/p/10791214.html