云网牛站
所在位置:首页 > Linux教程 > 宿主机Windows 7与VMware下的CentOS系统虚拟机文件夹共享的方法

宿主机Windows 7与VMware下的CentOS系统虚拟机文件夹共享的方法

2019-04-24 08:40:59作者:黑猴子的家稿源:linux站

如果你需要宿主机Windows 7与VMware虚拟机下运行的CentOS系统虚拟机文件夹共享,那就首先在CentOS中安装VMware Tools工具,然后设置一下就可以了。

 

1、安装VMTools工具参考文章

在CentOS 7和CentOS 6上安装VMware Tools的方法

 

2、虚拟机中设置文件夹共享

宿主机Windows 7与VMware下的CentOS系统虚拟机文件夹共享的方法

如上图设置,在共享文件夹中添加总是启用。

共享文件夹路径:

[root@hadoop100 ~]# cd /mnt/hgfs

 

3、文件夹默认路径的说明

虚拟机VMware默认的共享路径是在/mnt/hgfs,这是已经写到VMware Tools脚本里的,我们可以从/etc/init.d/vmware-tools查到,如下代码:

vmhgfs_mnt="/mnt/hgfs"

#Mount all hgfs filesystems" 

vmware_mount_vmhgfs() {

if [ "`is_vmhgfs_mounted`" = "no" ]; then

if [ "`vmware_vmhgfs_use_fuse`" = "yes" ]; then

mkdir -p $vmhgfs_mnt

vmware_exec_selinux "$vmdb_answer_BINDIR/vmhgfs-fuse \

-o subtype=vmhgfs-fuse,allow_other $vmhgfs_mnt"

else

vmware_exec_selinux "mount -t vmhgfs .host:/ $vmhgfs_mnt"

fi

fi

}

 

4、成功展示

这个时候打开CentOS 7系统,就能看到物理机上面共享的文件夹了,运行如下命令:

[root@hadoop121 ~]# cd /mnt/hgfs/

[root@hadoop121 hgfs]# ll

total 4

drwxrwxrwx. 1 root root 4096 Apr 24 08:10 Window-Centos-Shared

[root@hadoop121 hgfs]# cd Window-Centos-Shared/

[root@hadoop121 Window-Centos-Shared]# ll

total 4

-rwxrwxrwx. 1 root root 3005 Apr 22 14:23 website.log

 

相关主题

使用VM Tools让虚拟机里运行的Ubuntu共享Windows系统文件夹

精选文章
热门文章