zoukankan      html  css  js  c++  java
  • 在虚拟机Debian3.1上安装Vmware Tools

    在虚拟机Debian3.1上安装Vmware Tools(英文版)


    1. Install software needed by VMware Tools

    (1)Install packages to build the kernel modules
    apt-get install autoconf automake binutils make cpp cpp-3.3 gcc gcc-3.3 kernel-headers-$(uname -r)

    (2)Find out where the kernel headers are (you may need this later)
    ls -d /usr/src/kernel-headers-$(uname -r)*/include

    2. Prepare and install VMware ToolsChoose one of a), b), c) or d).

    a) If you are running the VM inside VMware Workstation 5.5

    (1)From VMware Workstation: go to VM> Install VMware Tools
    (2)From the VM: mount the virtual cd drive
    mount /dev/cdrom /mnt/
    (3)Extract VMware Tools to /tmp/
    tar -C /tmp -zxvf /mnt/VMwareTools-5.5.2-29772.tar.gz
    (4)Unmount the virtual cd drive
    umount /mnt
    (5)Now run the installer
    /tmp/vmware-tools-distrib/vmware-install.pl
    (6)When asked Do you want to run vmware-config-tools.pl?, answer "Yes".

    b) If you have VMware-workstation-5.5.2-29772.tar.gz on disk
    (1)Make sure VMware-workstation-5.5.2-29772.tar.gz is on disk inside the VM.
    (2)Extract the VMware Tools iso
    tar --strip-components=3 -zxvf VMware-workstation-5.5.2-29772.tar.gz \
    vmware-distrib/lib/isoimages/linux.iso
    (3)Create a temporary mount point
    mkdir /mnt/vmtools-temp
    (4)Mount the iso image
    mount -o loop linux.iso /mnt/vmtools-temp
    (5)Copy VMware Tools from the mount
    cp /mnt/vmtools-temp/VMwareTools-5.5.2-29772.tar.gz /tmp/
    (6)Extract VMware Tools to /tmp/
    tar -C /tmp -zxvf /mnt/vmtools-temp/VMwareTools-5.5.2-29772.tar.gz
    (7)Tidy up
    umount /mnt/vmtools-temp
    rmdir /mnt/vmtools-temp
    rm linux.iso
    (8)Now run the installer
    /tmp/vmware-tools-distrib/vmware-install.pl
    (9)When asked Do you want to run vmware-config-tools.pl?, answer "Yes".

    c) If you have VMwareTools-5.5.2-29772.tar.gz on disk

    (1)Extract VMware Tools to /tmp/
    tar -C /tmp -zxvf VMwareTools-5.5.2-29772.tar.gz
    (2)Now run the installer
    /tmp/vmware-tools-distrib/vmware-install.pl
    (3)When asked Do you want to run vmware-config-tools.pl?, answer "Yes".

  • 相关阅读:
    iOS开发—在ARC环境中,要使用第三方框架,但是这个框架是MRC(非ARC),怎么做?
    iOS开发—nil、Nil、NULL、NSNull详解
    iOS开发—使用VIPER构建iOS应用
    iOS开发—深入了解控制器View的加载
    iOS开发问题总结
    iOS开发实用技巧—Xcode Tips & Tricks(代码调试)
    jsp——学习篇:HTML基础
    jsp——学习篇:所需软件环境的搭建与配置
    jsp——学习篇:初始激励
    Linux文件权限详解 文件和目录权限概述
  • 原文地址:https://www.cnblogs.com/wen12128/p/1666646.html
Copyright © 2011-2022 走看看