我是一个使用VMWare工作站在虚拟pc上设置ubuntu的新用户。在这个阶段,我想安装VMWare工具。我已经采取了几个步骤,但我不知道如何获得见图。
到目前为止我已经采取了一些步骤。
我被要求提供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.
接下来怎么办?
发布于 2017-06-30 11:05:25
不要安装分布式VMware工具。VMware建议用户安装open-vm-tools
( Ubuntu )或open-vm-tools-desktop
( Ubuntu )。参见VMware KB的文章"VMware对开放VM工具的支持(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
https://askubuntu.com/questions/930655
复制相似问题