zoukankan      html  css  js  c++  java
  • ESXI5.5安装内存不知,修改方法

     为了学习,拿了一台台式家用机安装esxi5.5,遇到内存不足提示,如何在不增加内存的情况下,解决问题

    1. Boot from VMware ESXi 5.5;

    2. wait "Welcome to theVMware ESXi 5.5.0 Installation" screen:

    3. Press Alt+F1 for enter console and login as 'root' (no password needed);

    4. go to: 

                    cd /usr/lib/vmware/weasel/util/

        delete file:

                    rm upgrade_precheck.pyc;

    5. remove readonly flags;

                    mv upgrade_precheck.py upgrade_precheck.py.def

                    cp upgrade_precheck.py.def upgrade_precheck.py

    6. set permissions:

                    chmod 755 upgrade_precheck.py

    7. open script in 'vi':

                    vi upgrade_precheck.py

    8. find "MEM_MIN_SIZE", pres "a" (edit mode. "(4 * 1024 - 32)" change to "(2 * 1024 - 32)", pres 'ESC', run command ":wq" (save & exit);

    9. look installer PID:

                    ps -c | grep weasel

    10. kill installer (PID = process Nr.):杀掉python进程,自动返回安装界面

                    kill PID

    Installer process run automatically (with modified config script).

    Continue from "Welcome to theVMware ESXi 5.5.0 Installation"

  • 相关阅读:
    js中的replace 回车符
    HttpHandler 读取Session
    [原]vs2005 修改新增文件时的默认编码方式
    系统托盘NotifyIcon控件及右键菜单功能
    addAttribute
    gpibCmd
    deviceFactory
    string is
    TitledMotorEntry TitledFrame MotorViewEntry TitleMotorEntry
    IOC port
  • 原文地址:https://www.cnblogs.com/hujinbing/p/10392141.html
Copyright © 2011-2022 走看看