`

[转+总结]Linux虚拟系统安装VMware Tools总结

阅读更多

转自中国网络

一、VMware Tools安装手记(For Linux Guest OS)


为什么要装 VMware Tools?

因为它可以改善 Virtual Machine 的运行性能,而且可以让 Host OS 和 Guest OS 互通有无,这样我们就不用伤脑筋,要架设什么服务器,来沟通两个 OS,现在就让我们开始吧!

VMware Tools所在位置:VMware 安装路径 \VMware\VMware Workstation\linux.iso

[root@rd01 ~]# mount /cdrom
# 有时可能加载不了,这时就要先将系统关闭,再手动指定 ISO 映像,看下图
[root@rd01 ~]# cd /cdrom
[root@rd01 ~]# ls -a
[root@rd01 ~]# cp VMwareTools-5.5.1-19175.tar.gz /tmp
[root@rd01 ~]# cd /tmp
[root@rd01 ~]# tar zxpf VMwareTools-5.5.1-19175.tar.gz
[root@rd01 ~]# cd vmware-tools-distrib
[root@rd01 vmware-tools-distrib]# ./vmware-install.pl
Creating a new installer database using the tar3 format.

Installing the content of the package.

# 安装过程的画面,全部使用默认值,一直按 Enter 就对了

In which directory do you want to install the binary files?
[/usr/bin]

What is the directory that contains the init directories (rc0.d/ to rc6.d/)?
[/etc/rc.d]

What is the directory that contains the init scripts?
[/etc/rc.d/init.d]

In which directory do you want to install the daemon files?
[/usr/sbin]

In which directory do you want to install the library files?
[/usr/lib/vmware-tools]

Thepath "/usr/lib/vmware-tools" does not exist currently. This programisgoingto create it, including needed parent directories. Is thiswhatyou want?
[yes]

In which directory do you want to install the documentation files?
[/usr/share/doc/vmware-tools]

Thepath "/usr/share/doc/vmware-tools" does not exist currently.Thisprogram isgoing to create it, including needed parent directories.Isthis what you want?
[yes]

The installation of VMware Tools 5.5.1 build-19175 for Linux completed
successfully. You can decide to remove this software from your system at any
time by invoking the following command: "/usr/bin/vmware-uninstall-tools.pl".

Before running VMware Tools for the first time, you need to configure it by
invoking the following command: "/usr/bin/vmware-config-tools.pl". Do you want
this program to invoke the command for you now? [yes]


Stopping VMware Tools services in the virtual machine:

Guest operating system daemon: [ 确定 ]
Trying to find a suitable vmhgfs module for your running kernel.

The module bld-2.6.9-5.EL-i686-RHEL4 loads perfectly in the running kernel.

pcnet32 30153 0
Unloading pcnet32 module

Trying to find a suitable vmxnet module for your running kernel.

The module bld-2.6.9-5.EL-i686-RHEL4 loads perfectly in the running kernel.



Detected X.org version 6.8.

关闭控制台鼠标服务: [ 确定 ]
启动控制台鼠标服务: [ 确定 ]

Please choose one of the following display sizes (1 - 13):

# 显示分辨率,这里是以 1024x768 为例

# VMware Tools 安装的时候,会自动修改 X server 的配置文件

[1] "640x480"
[2]< "800x600"
[3] "1024x768"
[4] "1152x864"
[5] "1280x800"
[6] "1152x900"
[7] "1280x1024"
[8] "1376x1032"
[9] "1400x1050"
[10] "1680x1050"
[11] "1600x1200"
[12] "1920x1200"
[13] "2364x1773"
Please enter a number between 1 and 13:

[2] 3



X Window System Version 6.8.2
Release Date: 9 February 2005
X Protocol Version 11, Revision 0, Release 6.8.2
Build Operating System: Linux 2.6.9-34.EL i686 [ELF]
Current Operating System: Linux rd01.domain 2.6.9-34.EL #1 Wed Mar 8 00:07:35 CST 2006 i686
Build Date: 04 May 2006
Build Host: x8664-build.centos.org

Before reporting problems, check http://wiki.X.Org
to make sure that you have the latest version.
Module Loader present
OSKernel: Linux version 2.6.9-34.EL (buildcentos@build-i386) (gccversion3.4.5 20051201 (Red Hat 3.4.5-2)) #1 Wed Mar 8 00:07:35 CST 2006P
Markers: (--) probed, (**) from config file, (==) default setting,
(++) from command line, (!!) notice, (II) informational,
(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
(++) Log file: "/tmp/vmware-config0/XF86ConfigLog.3131", Time: Mon Jun 12 20:57:34 2006
(++) Using config file: "/tmp/vmware-config0/XF86Config.3131"
(WW) VMWARE(0): Failed to set up write-combining range (0xf0000000,0x1000000)

X is running fine with the new config file.

Starting VMware Tools services in the virtual machine:
Switching to guest configuration: [ 确定 ]
Guest filesystem driver: [ 确定 ]
DMA setup: [ 确定 ]
Guest operating system daemon: [ 确定 ]

The configuration of VMware Tools 5.5.1 build-19175 for Linux for this running
kernel completed successfully.

You must restart your X session before any mouse or graphics changes take
effect.

You can now run VMware Tools by invoking the following command:
"/usr/bin/vmware-toolbox" during an XFree86 session.

To use the vmxnet driver, restart networking using the following commands:
/etc/init.d/network stop
rmmod pcnet32
rmmod vmxnet
depmod -a
modprobe vmxnet
/etc/init.d/network start

Enjoy,

--the VMware team

[root@rd01 vmware-tools-distrib]# shutdown -r now

# 修改完成之后,重新启动计算机,让 VMware Tools 生效 

# 重新启动计算机之后,我们就会发觉到,当我们要离开 Guest OS 的时候,不再需要按 Ctrl + Alt 了,

分享到:
评论

相关推荐

    Linux虚拟系统安装VMwareTools总结收集.pdf

    ### Linux虚拟系统安装VMware Tools知识点详述 #### 一、引言 在虚拟化技术领域,VMware Tools是一款由VMware公司开发的增强工具包,用于提高虚拟机(Virtual Machine, VM)与宿主机(Host OS)之间的交互性和性能...

    Linux虚拟系统安装VMwareTools总结.pdf

    ### Linux虚拟系统安装VMware Tools知识点详解 #### 一、VMware Tools的作用及意义 - **性能提升**:安装VMware Tools能够显著提高虚拟机(Virtual Machine, VM)的性能表现,尤其体现在图形处理能力、磁盘I/O速度...

    Linux虚拟机安装VMware Tools

    ### Linux虚拟机安装VMware Tools知识点详解 #### 一、VMware Tools简介 VMware Tools 是一套由 ...通过以上步骤,你应该能够在Linux虚拟机上成功安装VMware Tools。这将极大地提升虚拟机的性能,并增加其可用性。

    介绍2种方法如何安装linux下的vmwareTools

    在虚拟化环境中,VMware Tools 是一套增强虚拟机性能和管理功能的软件,它能提供更高效的硬件兼容性,改善虚拟机与宿主机之间的...因此,对于使用 VMware 虚拟化的 Linux 系统来说,安装 VMware Tools 是非常必要的。

    Oracle Enterprise Linux 5 无法安装VMware tools

    综上所述,Oracle Enterprise Linux 5 无法安装VMware Tools的问题主要是由于系统内核与VMware Tools之间存在的兼容性问题所导致的。通过避免安装Xen相关的组件或者禁用Xen内核启动的方式,可以有效解决这一问题。...

    在Linux系统上安装Vmware tools

    在Linux系统上安装VMware Tools是一个关键步骤,它能极大地提升虚拟机性能和用户体验。VMware Tools是一套优化虚拟化环境的软件,提供了诸如增强的图形性能、时间同步、文件共享、拖放功能以及全屏模式等特性。以下...

    VMWare tools for Linux下载地址.docx

    8. **自动安装**:对于新安装的Linux系统,可以通过VMware的菜单选项来自动安装VMWare Tools,或者手动下载tar.gz包,然后解压并按照提供的指南进行安装。 9. **版本更新**:VMWare会定期发布新的VMWare Tools版本...

    vmware-tools for linux 各版本下载

    1. **检查版本信息**:安装完成后,在Linux虚拟机终端中输入 `vmware-toolbox` 或 `vmware-user` 命令,查看当前已安装的VMware Tools版本信息。 2. **确认功能正常**:测试包括屏幕分辨率自动调整、时间同步等功能...

    Red_Hat_Enterprise_Linux_安装vmware-tools

    2. 解压文件:`tar zxf VMwareTools-&lt;version&gt;.tar.gz` 3. 进入解压后的目录:`cd vmware-tools-distrib` 4. 执行安装脚本:`./vmware-install.pl` 这个脚本会自动处理配置和依赖问题,通常比图形化安装更可靠。 ...

    VM中Linux虚拟机下安装VMware_Tools可以解决鼠标使用方便问题

    ### 安装VMware Tools以优化Linux虚拟机用户体验 #### 背景介绍 在使用虚拟化技术时,用户经常会遇到各种操作上的不便,尤其是在Linux虚拟机中使用鼠标时可能会出现移动不便的情况。为了解决这类问题并提高用户体验...

    vmware tools linux 下的安装 步骤

    在Linux系统中,VMware Tools是虚拟化软件VMware提供的一套增强工具,它能显著提升虚拟机的性能和交互性。本篇文章将详细介绍在Linux环境下安装VMware Tools的步骤,以及如何通过命令行手动安装并导出安装日志。 ...

    VMware12 安装 macos 10.12 后可用的 VMware Tools

    总之,通过 VMware12 我们可以在 Windows 或 Linux 主机上顺畅地运行 macOS 系统,而安装 VMware Tools 则是提升这种体验的关键。无论是为了学习、开发还是其他目的,熟练掌握这一过程都能让你在多平台环境中...

    CentOS系统安装+设置共享文件夹+VMware Tools安装.docx

    ### CentOS系统安装与配置 #### 一、CentOS开发环境搭建 **1. 安装系统** ...通过以上步骤,您不仅成功安装了CentOS系统,还设置了共享文件夹以及安装了VMwareTools,大大提高了虚拟机的可用性和便捷性。

    linux系统下通过VMwareTools修改系统分辨率

    通常,当您在Linux虚拟机上安装了VMware Workstation或Player后,会在虚拟机的光驱中自动挂载一个ISO镜像,其中就包含了VMware Tools的安装包。接下来,您可以通过以下步骤进行安装: 1. **切换到光盘挂载目录**:...

    windows系统中的虚拟机vmware如何安装vmware Tools

    在Windows系统中,VMware Tools的安装是提升...以上就是在Windows、Linux和Mac系统中安装VMware Tools以及在Mac虚拟机中设置共享文件夹的详细步骤。正确安装和配置VMware Tools将极大提高虚拟机的性能和用户体验。

    VMware TOOLS 9.0 FOR linux

    VMware Tools 9.0 for Linux 是一个专为在Linux操作系统上运行的虚拟机设计的重要组件,它极大地提升了虚拟环境的性能和管理能力。VMware Tools 包含一系列驱动程序、实用程序和服务,用于优化虚拟硬件与主机之间的...

    vmwaretools windows.iso 下载包

    这个“vmwaretools windows.iso”下载包,就是专门为在虚拟机中安装Windows系统而准备的VMware Tools镜像文件。 VMware Tools的主要功能在于提高虚拟机的性能和用户体验,它包含了驱动程序、系统优化工具和其他实用...

    在 Linux (Ubuntu)虚拟机中手动安装 VMware Tools

    在Ubuntu这样的Linux系统中安装VMware Tools,可以实现以下关键功能: 1. 提升图形性能:VMware Tools包含了一个优化的X Window系统驱动,使得虚拟机中的图形界面运行更流畅,响应更快。 2. 文件共享:通过VMware ...

    VMware tools安装软件及步骤

    在Linux环境中安装VMware Tools是虚拟化环境中不可或缺的一步,它能让宿主机(例如VMware Workstation或vSphere)与虚拟机之间进行更高效的通信,提高I/O操作速度,提供更好的图形支持,并简化管理任务。 以下是在...

    VMwareTools-10.3.21-14772444.tar.gz

    VMware Tools是一款重要的软件工具集,它为在虚拟化环境中运行的Linux操作系统提供优化和增强功能。这个压缩包“VMwareTools-10.3.21-14772444.tar.gz”是VMware Tools的一个特定版本,其版本号10.3.21,对应的构建...

Global site tag (gtag.js) - Google Analytics