首页 > 代码库 > Dell R730默认LSI阵列卡驱动替换方法

Dell R730默认LSI阵列卡驱动替换方法

  1. 通过SSH连接主机(ESXi启动SSH支持,在【配置】->【安全策略】->【服务】->【SSH】->【操作】->启动SSH服务)

    #运行命令

    esxcfg-scsidevs -a   //确认当前主机RAID卡使用的驱动模块为native driver:lsi_mr3


    注意:系统自带的替换驱动版本可能无法匹配设备,因此禁用native driver前,必须先安装版本匹配的替换驱动,否则可能导致主机重启后无法发现RAID卡并且无法恢复。


  2. Copy the VIB or offline bundle to the ESXi server in ‘/tmp‘.

    # scp VMware-driver.1.1.0-1vmw.0.0.372183.vib root@10.10.10.10:/tmp

    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-driver.1.1.0-1vmw.0.0.372183.vib

    reboot ESXi server


  3. 将主机进入维护模式并重启后,运行命令esxcli software vib list,确认新安装的驱动已经生效并且版本正确.

  4. 运行命令esxcli system module set --enabled=false --module=lsi_mr3

  5. 重启主机后,再次使用命令esxcfg-scsidevs -a确认RAID卡已经使用替换的驱动。

  6. 运行命令esxcli system module set --enabled=true --module=megaraid_sas并重启主机后,系统会自动重新加载native driver。



本文出自 “专注云计算” 博客,请务必保留此出处http://sgshuai.blog.51cto.com/4656729/1874922

Dell R730默认LSI阵列卡驱动替换方法