标签:分享图片 显示 需要 enter 只读 也会 https 建立 连接
使用vmware虚拟机时,常常需要与宿主机(以下简称主机)操作系统交换文件,而且要一直挂载在虚拟机中,所以就需要在虚拟机和主机之间建立共享文件夹。在开始之前,我也找了很多博文,但是总出现问题Error: cannot mount filesystem: No such device,虚拟机始终无法显示出共享的文件夹,这里我写上自己的部署过程。
共享文件夹依赖vmware tools,所以要先安装vmware tools
mkdir /root/tools
mount /dev/cdrom /root/tools/
由于挂载的是只读,我们cp出来再安装
cp /root/tools/VMwareTools-10.0.5-3228253.tar.gz /
cd /
tar -zxvf VMwareTools-10.0.5-3228253.tar.gz
cd vmware-tools-distrib/
./vmware-install.pl
第一个需要输入yes,而不是默认回车
到这里要输入no,其余部分全部默认回车即可
vmware-hgfsclient
mount -t vmhgfs .host:/share /mnt/hgfs/
yum -y install open-vm-tools-devel
vmhgfs-fuse .host:/share /mnt/hgfs/
mkdir -p /mnt/hgfs/test
vim /etc/rc.d/rc.local
末尾添加:
vmhgfs-fuse .host:/share /mnt/hgfs/
chmod +x /etc/rc.d/rc.local
好了,本次文章到此结束
标签:分享图片 显示 需要 enter 只读 也会 https 建立 连接
原文地址:https://www.cnblogs.com/93bok/p/9684210.html