如何继续?安装 VMWareTools

如何继续?安装 VMWareTools

我是一名新用户,正在使用 VMWare Workstation 在虚拟 PC 上设置 ubuntu。目前我想安装 VMWare Tools。我已经采取了一些步骤,但我不知道如何继续 [见图]。

我迄今已采取的措施。

  1. 安装 Ubuntu 14.04
  2. 将包含 vmware 工具的 tar.gz 文件解压到 Desktopm
  3. 输入三个命令

    cd Desktop  
    cd vmware-tools-distrib  
    sudo ./vmware-install.pl [en-dash]d
    

我被要求输入 sudo 密码。屏幕上接下来显示的是此消息

VMWare Tools 10.1.6 build-5214329 for Linux installer
Usage: ./vmware-install.pl
[[-][-]d[efault]]
default: Automatically answer questions with the proposed answer.
[[-][-]f[orce-install]]
force-install: install even if open-vm-tools packages are available for this
distribution.
[[-][-]prefix=<path to install product: bin, lib, doc>]
Put the installation at <path> instead of the default location.
This implies '--default'.
[[-][-]r[egenerate-cert]]
Force to regenerate server key/cert files if they already exist.
--clober -kernel-modules=<module1,module2,...
Forcefully removes any VMware related modules installed by any other installer 
and installs the modules provided by this installer. 
This is a comma separated list of modules.

现在下一步该做什么?

答案1

不要安装分布式 VMware Tools。VMware 建议用户安装open-vm-tools(在 Ubuntu Server 上)或open-vm-tools-desktop(在 Ubuntu Desktop 上)。请参阅 VMware 知识库文章“VMware 对 Open VM Tools 的支持 (2073803)“。使用的open-vm-tools优点是该软件包将与系统上的所有其他软件包一起升级。

sudo apt-get update
sudo apt-get install open-vm-tools-desktop

您可能希望避免安装无用的推荐软件包:

sudo apt-get --no-install-recommends install open-vm-tools-desktop

相关内容