RAID: Difference between revisions

From DWIKI
mNo edit summary
mNo edit summary
 
(4 intermediate revisions by the same user not shown)
Line 5: Line 5:
*[[Linux_Software_Raid|Linux Software Raid]]  
*[[Linux_Software_Raid|Linux Software Raid]]  
*[http://www.raid-calculator.com/raid-types-reference.aspx Raid Calculator]  
*[http://www.raid-calculator.com/raid-types-reference.aspx Raid Calculator]  
*[https://kb.open-e.com/information-on-configuring-for-optimal-raid-performance_1323.html https://kb.open-e.com/information-on-configuring-for-optimal-raid-performance_1323.html]
*[https://magj.github.io/raid-failure/ raid failure calculator]


'''ACHTUNG''' don't forget block/partition alignment!
'''ACHTUNG''' don't forget block/partition alignment!
 
= Cache settings =
*[https://www.dell.com/community/PowerEdge-HDD-SCSI-RAID/difference-between-write-back-and-write-thru/td-p/633627 Difference between write back and write through]
== write through ==
== write back ==
== always write back ==
=HOWTO=
==Remove raid metadata from disk==
DISK=/dev/sdc
# the last bit
dd if=/dev/zero of=$DISK bs=512 seek=$(( $(blockdev --getsz $DISK) - 1024 )) count=1024
# the first bit
dd if=/dev/zero of=$DISK bs=512 count=1
=FAQ=
==BBU==
===Relative State of Charge===
Should be well above 90%

Latest revision as of 16:54, 27 September 2023

Redundant Array of Inexpensive Disks

ACHTUNG don't forget block/partition alignment!

 

Cache settings

write through

write back

always write back

HOWTO

Remove raid metadata from disk

DISK=/dev/sdc
# the last bit
dd if=/dev/zero of=$DISK bs=512 seek=$(( $(blockdev --getsz $DISK) - 1024 )) count=1024
# the first bit
dd if=/dev/zero of=$DISK bs=512 count=1


FAQ

BBU

Relative State of Charge

Should be well above 90%