好的,所以我尝试使用这些说明从命令行使用tar安装程序来安装VMware工具: http://www.vmware.com/support/ws5/doc/ws_newguest_tools_linux.html#wp1118025
我在lubuntu上安装vmware工具,我使用vmplayer作为虚拟机运行。 在步骤5之后,当在屏幕上响应配置问题时,它说
the installatinon of vmware tools 9.2.3 build-1031360 for linux completed sucessfully. you can devide to
remove this software form your system at any time by invoking the following command:
"/usr/bin/vmware-uninstall-tools.pl".
before running vmware tools for the first time, you need to configure it by invoking the following command:
"usr/bin/vmware-config-tools.pl". Do you want this program to invoke the command for you now?
[yes]
我按Enter键并接受默认的[yes]值,现在它显示
Before you can compile modules, you need to have the following installed...
make
gcc
kernel headers of the running kernel
Searching for GCC...
the path "" is not valid path to the gcc binary.
Would you like to change it? [yes]
What is the location of the gcc program on your machine?
我做了
locate gcc
并发现有一个名为/ usr / lib / gcc的文件夹,所以我试着把它放在位置但它说路径“/ usr / lib / gcc”不是gcc库的有效路径。 如何找到gcc二进制文件在我的机器上的位置?
答案 0 :(得分:27)
sudo apt-get install build-essential
足以让它发挥作用。
答案 1 :(得分:12)
安装必备软件VMware Tools for LinuxOS:
如果你有RHEL / CentOS:
yum install perl gcc make kernel-headers kernel-devel -y
如果你有Ubuntu / Debian:
sudo apt-get -y install linux-headers-server build-essential
摘自:http://www.sysadmit.com/2016/01/vmware-tools-linux-instalar-requisitos.html
答案 2 :(得分:5)
找到答案。我做的是第一次
sudo apt-get install aptitude
sudo aptitude install libglib2.0-0
sudo aptitude install gcc-4.7 make linux-headers-`uname -r` -y
并尝试了但它没有用,所以我继续做了
sudo apt-get install build-essential
sudo apt-get install gcc-4.7 linux-headers-`uname -r`
完成这两个步骤并再次尝试后,它就可以了。
答案 3 :(得分:5)
输入:/ usr / bin / gcc为我工作。
答案 4 :(得分:0)
避免CDROM的问题: sudo nano /etc/apt/sources.list
找到你的cdrom并用#
对其进行评论保存更改:“cntrl + o”,而不是退出文件:“cntrl + x”
并尝试重新安装
答案 5 :(得分:-1)
首先执行此
sudo apt-get install gcc binutils make linux-source
然后再次运行
/usr/bin/vmware-config-tools.pl
这就是你需要做的。现在你的系统有gcc make和linux内核源代码。