vmware tools for linux安装失败

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vmware tools for linux安装失败相关的知识,希望对你有一定的参考价值。

刚在虚拟机装完系统的时候,vmware tools是安装成功的,后来不知怎么的好像是被我卸载了之后就装不上了,无论在终端运行还是命令运行都不行,如果使用终端运行,打开终端窗口后几秒就自动关掉,求大神求助

你说了终端这个字眼,你安装的linux应该是有图形界面的。
你知道打开终端,通过su切换到root。
找到vmware tools的有个。gz的压缩文件,
解压后有个文件,里面有install这个单词。
吧这个文件拖到终端,敲回车。追问

我本身就是root身份登录的,不用su切换,还有拖到终端回车后显示如下

The following vmware kernel modules have been found on your system that were not installed by the vmware installer.Please remove them then run this installer again

追答

你已经安装了tools,删除后重试。
你找找看有没有uninstall这个单词的选项,可能在某一个文件夹内。

追问

有,我当初就是按了这个删了然后就变现在这样子了
现在把这个拖到终端就出来这个

uninstalling the tar installation of VMware Tools.
Unable to find the tar installer database file(/etc/vmware-tools/locations)
Execution aborted
但是我在这个目录下找不到这个文件

追答

应该是你安装的时候,没有完全安装成功,还在安装中就没在进行下去。
现在卸载时相关文件找不到了,有些文件在终端下是找不到的。要进入纯命令模式。
参考下吧,在终端是用root,输入 vi etc/inittab,回车,敲入字母i。按方向下键,找到id:5:initdefault
光标移动到5上,del删除,按数字3.按esc,冒号,输入wq回车。reboot
你在这里执行下操作看看。

追问

现在是不知道哪里出问题了,进入命令界面后运行这个tools文件说我指令不正确了。。。咳。。

追答

估计还是权限的问题,linux到处都是权限,重装吧,几十分钟的事。

追问

给你看图吧。。明明有这俩文件,不给我运行=-=很是头疼

追答

你当前在bin下,你解压到那里的吗。提示你不能这么操作,你要么命令不对,要么没有权限。
那个文件你确定下在做好了,cd /etc/vmware-tools/locations/之前的提示,你进去看看

追问

我还是重装系统了。。。桑不起,但是谢谢你,采纳给你

参考技术A 点击vmware上的安装vmware tools按钮,让linux光驱加载上vmware的iso.然后mount /dev/cdrom /mnt;cd /mnt;
#复制vmware的tar包到临时目录
cp vmware-tools.tar.gz /tmp;
gzip -d vamware-tools.tar;
tar -xvf vmware-tools.tar;
cd vmware-tools;
./install.pl
就可以安装了。
参考技术B 确保你之前的卸载成功了 参考技术C 把vmware重装一下吧

vmware linux虚拟机安装vmware tools

一、首先点击vmware客户端菜单的“虚拟机”-》“安装vmware tools”

 

 

 

二、下载完毕后,进入虚拟机安装vmware-tools

当看到如下提示,即下载完毕

 

 

 

三、进入虚拟机,挂载光驱

首先,创建光驱目录

 

 

然后,将光驱设备/dev/sr0挂载到/mnt/cdrom

 

 

 查看/mnt/cdrom

 

 

 

vmware tools安装程序在里面

四、将VmwareTools-9.6.1-1378637.tar.gz复制到/home下,并解压

 

 运行安装脚本

 

 一路回车,安装过程中出现

Searching for a valid kernel header path...
The path "" is not a valid path to the 3.10.0-957.el7.x86_64 kernel headers.
Would you like to change it? [yes] 

需要安装内核,退出安装程序,先用yum list |grep kernel-devel 查看可安装内核

[root@localhost vmware-tools-distrib]# yum list|grep kernel-devel
kernel-devel.x86_64                        3.10.0-1160.49.1.el7        updates  
[root@localhost vmware-tools-distrib]# 

安装

[root@localhost vmware-tools-distrib]# yum install kernel-devel.x86_64 

再安装gcc

[root@localhost vmware-tools-distrib]# yum install gcc -y

再重新安装vmware tools,再reboot

 

五、设置vmware客户端共享目录

点击"虚拟机"-》“设置”

 

 

点击"选项"->"共享文件夹"

 

 设置完毕后,进入虚拟机查看

[root@localhost ~]# vmware-hgfsclient 
jdk

新建一个/mnt/hgfs 目录

[root@localhost ~]# mkdir /mnt/hgfs

挂载jdk到/mnt/hgfs

[root@localhost ~]# mount -t vmhgfs .host:/jdk  /mnt/hgfs                      
Error: cannot mount filesystem: No such device
[root@localhost ~]# 

报错:没有这个设备,需要安装open-vm-tools

[root@localhost ~]# yum install open-vm-tools -y

执行vmhgfs-fuse 命令将jdk挂载到/mnt/hgfs

[root@localhost ~]# vmhgfs-fuse .host:/jdk /mnt/hgfs/

 df -h 查看

[root@localhost ~]# df -h
Filesystem               Size  Used Avail Use% Mounted on
devtmpfs                 480M     0  480M   0% /dev
tmpfs                    491M     0  491M   0% /dev/shm
tmpfs                    491M  7.5M  484M   2% /run
tmpfs                    491M     0  491M   0% /sys/fs/cgroup
/dev/mapper/centos-root   17G  2.9G   15G  17% /
/dev/sda1               1014M  163M  852M  17% /boot
tmpfs                     99M     0   99M   0% /run/user/0
vmhgfs-fuse              864G  161G  703G  19% /mnt/hgfs

查看/mnt/hgfs 已经能看到宿主机上共享的文件夹内容了

[root@localhost ~]# ll /mnt/hgfs/
total 142281
-rwxrwxrwx 1 root root 11671869 Nov  9  2020 apache-tomcat-8.5.59-windows-x64.zip
drwxrwxrwx 1 root root     4096 Dec 16 00:59 apahe_cxf
-rwxrwxrwx 1 root root  1627874 Nov 15  2020 aspectjweaver-1.6.8.jar
drwxrwxrwx 1 root root        0 Dec 16 01:00 axis
drwxrwxrwx 1 root root        0 Dec 16 01:00 axis2
-rwxrwxrwx 1 root root 20443297 Apr 25  2013 axis2-1.4.1-bin.zip
-rwxrwxrwx 1 root root 19222129 Apr 25  2013 axis2-1.4.1-war.zip

 

以上是关于vmware tools for linux安装失败的主要内容,如果未能解决你的问题,请参考以下文章

vmware tools for linux安装失败

sh 自动安装VMware Tools for Mac OS X的静默安装

vmware linux虚拟机安装vmware tools

Linux系统VMware-Tools安装手册

kali linux 怎么安装tools

Linux系统安装VMware tools失败,求解!