Skip to content

Instantly share code, notes, and snippets.

@stawiu
Last active October 5, 2019 16:08
Show Gist options
  • Save stawiu/1171904e4a9744d12f203b6d20c74c4a to your computer and use it in GitHub Desktop.
Save stawiu/1171904e4a9744d12f203b6d20c74c4a to your computer and use it in GitHub Desktop.
#This shows how to build RAID 60 with 15 drives grouped into 3 legs (looks like division of drive is automatic).
In this case with 5 drives per each leg (5x3 = 15 drives).
RAID60
=
RAID0 3xLEG
______________|____________
| | |
RAID6 5xHDD + RAID6 5xHDD + RAID6 5xHDD
#https://wiki.hetzner.de/index.php/Adaptec_RAID_Controller/en#Backing_up_and_restoring_the_configuration_of_the_controller
#https://docs.oracle.com/cd/E19045-01/blade.x6250/820-2145-12/chapter2.html
#Priority LOW
#legs 3
Below line is raid 0 with 2 drives. It is not used for raid60 but is a good example to see where extra parameters go (betwen logicaldrive and MAX words)
arcconf create 1 logicaldrive STRIPESIZE 64 MAX 0 1 0 1 1 noprompt
#http://www.bonneville.be/post/adaptec-arcconf-a-selected-device-is-not-available-for-use/
#A selected device is not available for use.
arcconf TASK START 1 DEVICE ALL INITIALIZE
arcconf create 1 LOGICALDRIVE STRIPESIZE 64 Priority LOW legs 3 MAX 60 0 4 0 5 0 6 0 7 0 8 0 9 0 10 0 11 0 12 0 13 0 14 0 15 0 16 0 17 0 18 noprompt
arcconf RESCAN 1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment