红联Linux门户
Linux帮助

VMware下安装好UbuntuKylin16.04后需要配置VM-tools

发布时间:2016-05-22 22:38:52来源:linux网站作者:jahentao

前言

可以使用VMware中安装vm-tools
也可以使用open-vm-tools


区别

open-vm-tools的文档

http://open-vm-tools.sourceforge.net/faq.php

VMware产品中自带开源和闭源的部分而open-vm-tools只是其中开源的那部分,同时VMware推荐使用open-vm-tools在开源操作系统上。
VMware recommends using open-vm-tools redistributed by operating system vendors.


安装

我之前安装的VMware中的vm-tools感觉可能没有安装好,这次干脆安装open-vm-tools

sudo apt install open-vm-tools-desktop

安装好后重启就行了。


测试

重启后如果屏幕大小显示率和窗口吻合,并且能够共享复制粘贴,说明安装好了。


我的环境

VMware下安装好UbuntuKylin16.04后需要配置VM-tools


参考

1.安装open-vm-tools
在Ubuntu上安装VMware Server的时候报错,网上有人说需要先安装open-vm-tools,现将其安装过程记录下来(找解决办法的过程忽略不计。)。
1. 下载安装包
到http://sourceforge.net/projects/open-vm-tools/files/下载一个最新的包,我下的是open-vm-tools-2010.11.17-327185.tar.gz
2. 解压缩
tar zxvf open-vm-tools-2010.11.17-327185.tar.gz
3. 进入解压后的目录
cd open-vm-tools-2010.11.17-327185
4. 依据INSTALL中说明进行操作,首先是进行配置
./configure
1) 遇到第一个错误:
configure: error: glib >= 2.6.0 is required.
解决办法: apt-get install libglib2.0-dev
2) 重新执行./configure , 遇到第二个错误:
configure: error: Cannot find PAM library. Please configure without PAM (using --without-pam), or install the PAM libraries and devel package(s).
解决办法:配置时添加参数--without-pam
3) 重新执行./configure --without-pam , 遇到第三个错误:
configure: error: The X11 libraries were not found. Please configure without X11 (using --without-x), or install the libX11 devel package(s).
解决办法:配置时添加参数--without-x
4) 重新执行./configure --without-pam --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
5) 重新执行./configure --without-pam --without-x --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. 编译
make
6. 安装
make install
大功告成!安装open-vm-tools
 
备注:我是以root用户进行的安装。

这是下载源码包,安装的过程。
2.VMware Compatibility Guide
http://www.vmware.com/resources/compatibility/search.php


本文永久更新地址:http://www.linuxdiyf.com/linux/20858.html