在Ubuntu 10.04.1上安装VMware Server 2.0的时候报错,网上有人说需要先安装open-vm-tools,现将其安装过程记录下来(找解决办法的过程忽略不计。。。)。 1. 下载安装包 2. 解压缩 tar zxvf open-vm-tools-2010.11.17-327185.tar.gz configure: error: glib >= 2.6.0 is required. 2) 重新执行./configure , 遇到第二个错误: configure: error: The X11 libraries were not found. Please configure without X11 (using --without-x), or install the libX11 devel package(s). 解决办法:配置时添加参数--without-x configure: error: dnet-config was not found on your PATH. Please configure without dnet (using --without-dnet) or install dnet - http://libdnet.sourceforge.net 解决办法:配置时添加参数--without-dnet configure: error: C++ compiler not found. Make sure you have a C++ compiler installed or configure without X11 (using --without-x) and without ICU (using --without-icu). 解决办法:继续添加参数--without-icu 6) 重新执行./configure --without-pam --without-x --without-dnet --without-icu 终于不报错了。。。。。。。 5. 编译 备注:我是以root用户进行的安装 (责任编辑:IT) |