我是使用 VMWare Workstation 在虚拟 PC 上设置 ubuntu 的新用户。在这个阶段,我想安装 VMWare Tools。我已经采取了一些步骤,但是我不知道如何进行 [见图]。
到目前为止我已采取的步骤。
输入三个命令
cd Desktop
cd vmware-tools-distrib
sudo ./vmware-install.pl [en-dash]d
Run Code Online (Sandbox Code Playgroud)我被要求提供 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.
Run Code Online (Sandbox Code Playgroud)
现在下一步该怎么做?
不要安装分布式 VMware Tools。VMware 建议用户安装open-vm-tools(在 Ubuntu 服务器上)或open-vm-tools-desktop(在 Ubuntu 桌面上)。请参见 VMware 知识库文章“ VMware support for Open VM Tools (2073803) ”。使用open-vm-tools的优点是该软件包将与系统上的所有其他软件包一起升级。
sudo apt-get update
sudo apt-get install open-vm-tools-desktop
Run Code Online (Sandbox Code Playgroud)
您可能希望避免安装无用的推荐软件包:
sudo apt-get --no-install-recommends install open-vm-tools-desktop
Run Code Online (Sandbox Code Playgroud)