码迷,mamicode.com
首页 > Windows程序 > 详细

windows 与 Centos7 共享文件方法

时间:2018-11-18 02:12:35      阅读:874      评论:0      收藏:0      [点我收藏+]

标签:net-tools   显示   nbsp   centos7   工具包   use   files   too   ann   

转自: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中共享的文件

windows 与 Centos7 共享文件方法

标签:net-tools   显示   nbsp   centos7   工具包   use   files   too   ann   

原文地址:https://www.cnblogs.com/braveCloud/p/9976692.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!