Vmware中Linux虚拟机挂载主机共享文件夹方法,vbox一般选择自动挂载,Linux开机之后就会自动挂载相关共享目录,但是Vmware不能自动挂载。
1. 首先要安装Vmware-tools,安装方法简单,./vmware-install.pl
2. vmware-hgfsclient可以显示主机共享的文件夹名称。如果没有,添加共享目录即可
3.挂载共享目录。以下两种方法
a. CentOS7之前
# 将所有共享文件夹挂载到/mnt/hgfs
sudo mount -t vmhgfs .host/ /mnt/hgfs
# 将指定的共享文件夹挂载到/mnt/hgfs
sudo mount -t vmhgfs .host/sharedfolder /mnt/hgfs
b. CentOS7之后
# 将所有共享文件夹挂载到/mnt/hgfs
sudo vmhgfs-fuse .host:/mnt/hgfs -o subtype=vmhgfs-fuse,allow_other
# 将指定的共享文件夹挂载到/mnt/hgfs
sudo vmhgfs-fuse .host:/sharedfolder mnt/hgfs -o subtype=vmhgfs-fuse,allow_other
标签:hgfs,虚拟机,mnt,vmhgfs,文件夹,Linux,挂载,共享,Vmware
来源: https://www.cnblogs.com/ls1519/p/12703864.html