From the Areca manual:
Stripe Size - This parameter sets the size of segment written to each disk in a RAID 0, 1, 10, 5, or 6 logical drive. You can set the stripe size to 4 KB, 8 KB, 16 KB, 32 KB, 64 KB, or 128 KB.
I set it to 128KB for my RAID 6.
Code:
(parted) unit s
(parted) p
Model: Areca ARC-1280-VOL#00 (scsi)
Disk /dev/sda: 11721064448s
Sector size (logical/physical): 512B/512B
Partition Table: gpt
Number Start End Size File system Name Flags
1 2048s 11721062399s 11721060352s primary
(parted)
The End isn't aligned to 128 KB boundaries...what should I specify for the end of the partition? Looks like the very last sector is a multiple of 128, can I just use that or do I need an offset from the end as well?
[Edit] I might need an offset:
Code:
(parted) unit s
(parted) p
Model: Areca ARC-1280-VOL#00 (scsi)
Disk /dev/sda: 11721064448s
Sector size (logical/physical): 512B/512B
Partition Table: gpt
Number Start End Size File system Name Flags
(parted) mkpart primary xfs 2048s 11721064448s
Error: The location 11721064448s is outside of the device /dev/sda.