Posted On August 12, 2021

Should I Choose the Motherboard (Fake) Hardware Raid Or Software RAID?

kimconnect 0 comments
blog.KimConnect.com >> Windows >> Should I Choose the Motherboard (Fake) Hardware Raid Or Software RAID?

Motherboard Hardware Raid:

- Advantages:
- OS Independence
- Easier to setup and use
- Disadvantages:
- Motherboard dependence. It may require an identical model and firmware to transfer RAID hard drives.
- Typically slower to boot

Software RAID:

- Advantages:
- Motherboard independence
- Portable toward systems with a similar operating system
- Disadvantages:
- Will not be able to rebuild RAID volumes that have been created via Hardware
- Dual boot OS'es will not recognize each other's software RAID volumes

Other considerations:
– Newer computers would have fast CPUs that enhances software RAID performance to be on par with hardware RAID.
– Linux users may have access to more advanced RAID config, such as RAID50

My answer: when it is about servers and non-dual boot setups, go for software RAID if an expensive dedicated hardware RAID card is not being an option. Motherboard (fake) RAID has no real advantages on newer computers.

Leave a Reply

Your email address will not be published. Required fields are marked *

Related Post

SSL Certificates with LetsEncrypt

The following configuration is for demonstration purposes, only. It is of vital importance that the…

PowerShell: Handling Windows Product Key

There are two ways to obtain product keys: Way 1: https://learn.microsoft.com/en-us/windows-server/get-started/automatic-vm-activation Way 2: Issue a…

PowerShell: Disable Windows Defender

Simultaneous Uninstalls: # removeWindowsDefender.ps1 # Version 0.02 $computerNames=@( 'server1', 'server2' ) function removeWindowsDefender($computerNames){ function uninstallWindefend($computername){…