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

  • 相关阅读:
    for 续1
    8 解决多线程对共享数据出错
    7 多线程 全局变量
    6 线程threading
    5 多进程copy文件
    4 进程间通信Queue [kjuː]
    3 进程池
    2 进程multiprocessing [mʌltɪ'prəʊsesɪŋ] time模块
    1 多任务fork Unix/Linux/Mac
    16 pep8 编码规范
  • 原文地址:https://www.cnblogs.com/itfat/p/15147599.html
Copyright © 2011-2022 走看看