Download Adaptec RAID 6805/6805Q Driver



  1. Download Adaptec Raid 6805/6805q Driver Windows 7
  2. Download Adaptec Raid 6805/6805q Driver Download
  3. Download Adaptec Raid 6805/6805q Driver Download
  4. Download Adaptec Raid 6805/6805q Driver 64-bit

Some time ago, we changed the hardware of our VM server. We replaced the RAID controller with an Adaptec 6805 because the old controller had some problems. The server run with ESXi 5.1.

Download adaptec raid 6805/6805q driver windows 7
  • Download PCI VEN9005 PCI VEN9005&DEV0286 Adaptec® AAC-RAID listed as Windows® device id numbers exactly the same as the device manager for easy driver identification, free download. Compatible with Windows 10, 8.1, 8, 7, Vista and Window XP.
  • Downloads 88 Drivers, Manual and Firmware for Adaptec RAID 5805 HD Controller & Removable drive. Here's where you can download the newest software for your RAID 5805.
  • Description: AACRAID driver files v5.2.0.17342 for Windows Server 2008/R2 (32-bit and x64 Edition), Server 2003 (32-bit and x64 Edition), Windows 7 (x86 and x64 Editions), Windows Vista (x86 and x64 Editions) and Windows XP (x64 Edition only).
  • Adaptec RAID Controller - Installation And User's Guide 5/2012 (PDF 3.4MB) Command Line Interface v7.31.18856 - User's Guide (PDF 469KB) Adaptec RAID Controller - Quick Install Guide 5/2012 (Multi Language) (PDF 3.4MB) Adaptec Storage Manager v7.30.18837 - User's Guide (PDF 2.7MB) Adaptec RAID Controller - Installation And User's Guide 12/2011.
Download

Download Adaptec Raid 6805/6805q Driver Windows 7

The problem with our Adaptec controller was that ESXi didn't support it out-of-the-box. It was supported in general but the driver was not included. We thought that the new ESXi 6 could contain the driver, but it didn't. So we had to create our own ESXi image with the Adaptec driver.

As there is inbox = embedded within a 3. ADAPTEC RAID 6805 PCI-E ADAPTER DRIVER DOWNLOAD - uploaded on, downloaded 8 times, receiving a 3.68/5 rating by 11 users. Limits for the supported by 106 users. With the recent four SAS 6. We replaced the RAID controller with an Adaptec 6805 because the old controller had some problems.

We thought it shouldn't be a problem because there was much documentation about custom images:

https://blogs.vmware.com/vsphere/2012/04/using-the-vsphere-esxi-image-builder-cli.html
http://www.virten.net/2015/03/esxi-6-0-image-for-intel-nuc/
(DE) https://www.thomas- krenn.com/de/wiki/Individuelles_ESXi_5....

Some problems:

Download Adaptec Raid 6805/6805q Driver Download

  • We tried to create an image for version 6
  • We used the free version of ESXi with all its limitations

A problem was that the documentation references an 'offline software depot'. You can download the offline depot for the paid version but it's not available for the free version - not as simple download. No offline deplot means no custom image - right? Not right, because it's also possible to use an online depot.

The problem was that the documentation didn't contain a full description. We found some hints in different blogs but no complete description.

Here are the steps how we created our custom ESXi 6 image with Adaptec 6805 driver:

Downloads

Adaptec
  • ESXi
  • PowerCLI 6
  • Adaptec driver

Useful PowerCLI Documentation:
https://pubs.vmware.com/vsphere-55/index.jsp#...ve-EsxSoftwarePackage.html

AdaptecDownload adaptec raid 6805/6805q driver 64-bit

Image creation

  • Install PowerCLI 6 (and all required dependencies)
  • Unzip the Adaptec driver to e.g. C:tempVMServer6
  • Run PowerCLI as Administrator (sometimes, first launch of PowerCLI isn't working - simply close/run again)
  • Execute following commands
    # Preconfigure
    Set-ExecutionPolicy RemoteSigned
    cd c:tempVMServer6

    # Use online depot
    Add-EsxSoftwareDepot https://hostupdate.vmware.com/software/VUM/PRODUCTION/main/vmw-depot-index.xml
    # Add offline bundle for adaptec driver
    Add-EsxSoftwareDepot aacraid-6.0.6.2.1.41024-offline_bundle-2915492.zip

    # Check added depots
    $DefaultSoftwareDepots

    # Lists all ESXi-6.* profiles
    Get-EsxImageProfile -Name'ESXi-6.*'

    # Sets the base profile
    New-EsxImageProfile -CloneProfile'ESXi-6.0.0-20160104001-standard'-name'ESXi-6.0.0-20160104001-standard-Adaptec'-Vendor'rjahn@SIB'-AcceptanceLevel'CommunitySupported'

    # Lists all included drivers
    Get-EsxSoftwarePackage -Name'*aacraid*'

    # Adds adaptec driver from offline bundle
    Add-EsxSoftwarePackage -ImageProfile'ESXi-6.0.0-20160104001-standard-Adaptec'-SoftwarePackage scsi-aacraid

    # Creates boot image
    Export-ESXImageProfile -ImageProfile'ESXi-6.0.0-20160104001-standard-Adaptec'-ExportToISO-filepath C:tempVMServer6buildESXi-6.0.0-20160104001-standard-Adaptec.iso

    # Creates Bundle
    Export-ESXImageProfile -ImageProfile'ESXi-6.0.0-20160104001-standard-Adaptec'-ExportToBundle-filepath C:tempVMServer6buildESXi-6.0.0-20160104001-standard-Adaptec.zip

Download Adaptec Raid 6805/6805q Driver Download

Version numbers may be different, but the procedure should work for you as well. The online depot:
https://hostupdate.vmware.com/software/VUM/PRODUCTION/main/vmw-depot-index.xml

Download Adaptec Raid 6805/6805q Driver 64-bit

was the most important thing. All other steps can be found in the standard documentation.