zoukankan      html  css  js  c++  java
  • CentOS安装VMware Tools

    新建cdrom挂载目录

    mkdir /mnt/cdrom
    挂载光驱
    mount -t auto /dev/cdrom /mnt/cdrom这命令就是把CentOS CDROM挂载在/mnt/cdrom目录中,就可以访问里面的内容了;
    使用光驱中的文件,进行安装
     
    [root@CentOS6 /]# cd /mnt/cdrom
    [root@CentOS6 /]# ls -a
    [root@CentOS6 /]# cp VMwareTools-8.6.1-19175.tar.gz /tmp
    [root@CentOS6 /]# cd /tmp
    [root@CentOS6 /]# tar zxpf VMwareTools-8.6.1-19175.tar.gz
    [root@CentOS6 /]# cd vmware-tools-distrib
    [root@CentOS6 vmware-tools-distrib]# ./vmware-install.pl
    Creating a new installer database using the tar3 format.
     
    Installing the content of the package. 
     
    # 安装过程的画面,全部使用默认值,一直按 Enter 就对了
     
    一直到出现:
    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
     
    出现以上,则基本安装完!
     
    5 shutdown -r now 重启
     
    6 重新启动计算机再次登入之后,我们就会发觉到,当我们要离开 Guest OS 的时候,不再需要按「Ctrl + Alt」了,
     
    现在我们来分享 Host OS 的数据夹给 Guest OS 使用,〔VM〕→〔Settings〕
    注:左下角原本都会显示「You do not have VMware Tools installed」,现在我们装了 VMware Tools,就不再显示;
  • 相关阅读:
    网页制作初期,必须的东西
    网页制作知识100问(五)
    打開新窗口
    [转]如何用Delphi开发网游外挂
    钩子技术
    [转]计算两点间的角度
    [转]快速寻找子位图的位置
    (转)Delphi读写UTF8、Unicode格式文本文件
    GridView中控件列使用方法小结
    ASP.NET2.0 生成Word 2007并下载方案
  • 原文地址:https://www.cnblogs.com/itfat/p/7267932.html
Copyright © 2011-2022 走看看