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

  • 相关阅读:
    HashSet源码分析
    Mysql的体系结构和存储引擎
    触发器
    存储过程和函数
    索引
    SpringBoot 中的日志使用
    log4j2
    Logback
    slf4j
    日志门面
  • 原文地址:https://www.cnblogs.com/itfat/p/15147599.html
Copyright © 2011-2022 走看看