如何手动安装 vmware 工具?
我在 Windows 7 系统上安装了带有 Vmware Player 的 UBUNTU。由于某种原因,Vmware Player 无法从 Internet 获取 Vmware Tools 文件,这可能是由于防火墙限制导致的连接问题。我想获取压缩格式的 Vmware Tools 文件(如果有),然后手动安装它。两个问题: 1- 有可以下载 Vmware Tools 文件的链接吗? 2-如何手动安装?我在 Windows 7 系统上使用 Vmware Player。如果我下载它,我应该将内容解压到哪个文件夹?如您所知,UBUNTU 在虚拟磁盘上运行,要复制该磁盘上的文件,我想我必须使用 Vmware Tools。但我还没有。 请帮忙!
I installed UBUNTU with Vmware Player on my Windows 7 system. For some reason Vmware Player cannot get the Vmware Tools files from internet, possibly a connection problem due to firewall limitations. I want to get the Vmware Tools files in compressed format if there is any, and then manually install it. Two questions:
1- Is there a link where i can download Vmware Tools files?
2- How do i install it manually? I'm using Vmware Player on a Windows 7 system. And if i download it, which folder should i unzip the contents? As you know, UBUNTU runs on a virtual disk, and to copy files on this disk i guess i have to use Vmware Tools. But i don't have it already.
Please help!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
以下是我用于安装 VMWare Tools 的三个步骤。我从 Ubuntu 帮助中得到了步骤。
安装内核头文件,以便模块可以
在 Fusion 3 主机中运行的 10.04 来宾上工作
apt-get install linux-headers-virtual
安装内核模块
apt-get install --no-install-recommends open-vm-dkms
EITHER: install xorg 安装工具
apt-get install open-vm-tools
或:无头安装
apt-get install --no-install-recommends open-vm-tools
Here are three steps I used to install the VMWare Tools. I got the steps from Ubuntu help.
install kernel headers so modules will work
needed this on a 10.04 guest running in a Fusion 3 host
apt-get install linux-headers-virtual
install kernel modules
apt-get install --no-install-recommends open-vm-dkms
EITHER: install tools for an xorg install
apt-get install open-vm-tools
OR: a headless install
apt-get install --no-install-recommends open-vm-tools