zoukankan      html  css  js  c++  java
  • esxi5.5安装nvme驱动

    esxi5.5的驱动包

    https://files.cnblogs.com/files/itfat/VMW-ESX-5.5.0-nvme-1.0e.0.30-2284103.zip

    1. Copy the VIB or offline bundle to the ESX server. Technically, you can
    place the file anywhere that is accessible to the ESX console shell,
    but for these instructions, we'll assume the location is in '/tmp'.

    Here's an example of using the Linux 'scp' utility to copy the file
    from a local system to an ESX server located at 10.10.10.10:
    scp VMware_bootbank_net-driver.1.1.0-1vmw.0.0.372183.vib root@10.10.10.10:/tmp

    2. Issue the following command (full path to the file must be specified):
    esxcli software vib install -v {VIBFILE}
    or
    esxcli software vib install -d {OFFLINE_BUNDLE}

    In the example above, this would be:
    esxcli software vib install -v /tmp/VMware_bootbank_net-driver.1.1.0-1vmw.0.0.372183.vib

    Note: Depending on the certificate used to sign the VIB, you may need to
    change the host acceptance level. To do this, use the following command:
    esxcli software acceptance set --level=<level>
    Also, depending on the type of VIB being installed, you may have to put
    ESX into maintenance mode. This can be done through the VI Client, or by
    adding the '--maintenance-mode' option to the above esxcli command.

    执行以下命令进入维护模式并允许安装第三方包

    # esxcli system maintenanceMode set -e true -t 0

    # esxcli software acceptance set --level=CommunitySupported

  • 相关阅读:
    软件工程导论P53,习题2.4
    视图和数据表的区别
    无法从“object”转换为“string”
    Oracle 密码重置
    Struts2 上传下载
    Spring 事务管理
    JSP 指令和动作
    JS 禁用回车、后退事件、form 表单不可编辑
    关于 in 和 exist 的理解
    Oracle clob 操作函数
  • 原文地址:https://www.cnblogs.com/itfat/p/15147599.html
Copyright © 2011-2022 走看看