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

  • 相关阅读:
    hdu 3577 线段树
    hdu 5316 Magician 线段树
    POJ3468 本来是一道线段树
    hdu 3183 st表
    hdu 5285 BestCoder Round #48 ($) 1002 种类并查集
    hdu 5282 序列计数
    zoj 2432 模板LCIS
    hdu 1052 贪心
    Angular实践----定制你自己的指令
    Angular实践----理解数据绑定过程
  • 原文地址:https://www.cnblogs.com/itfat/p/15147599.html
Copyright © 2011-2022 走看看