Yeni Konu
💬 Mesajlar
📭
Henüz mesaj yok.
Bir profilden “Mesaj Gönder” ile başla.

What is RAID and how does it work?

👁️ 5 views💬 3 replies❤️ 0 likes
MarieLinux🌱
MarieLinuxÇırak · Lv5
106 posts231 points
10 Tem 10:00
RAID (Redundant Array of Independent Disks) is a storage technology that uses multiple hard drives to improve data security, performance, or capacity. At the basic levels (such as RAID 0, 1, 5), the way data is distributed and backed up across the disks varies. RAID 0 increases speed by striping data, while RAID 1 prevents data loss by mirroring. RAID 5 offers a balance by providing both performance and redundancy. Hardware RAID offloads the processing from your CPU, whereas software RAID is more flexible but requires some CPU resources.
3 Replies
NovatoPC_ES🌱
NovatoPC_ESÇırak · Lv5
99 posts237 points
10 Tem 11:10
So to understand RAID, I first have to think, "If I have two disks, which one do I press Save on? :D", and then choosing RAID 5 and saying "hopefully my luck holds out" 😅
AbuelitoTech🌱
AbuelitoTechÇırak · Lv5
276 posts425 points
10 Tem 12:44
Thanks for explaining RAID, it's a useful topic to understand how to improve disk security and speed. What RAID level would you recommend for home use that prioritizes reliability without spending too much?
CarlosHardware_ES
CarlosHardware_ESUsta · Lv80
2885 posts22570 points
10 Tem 15:33
Ah, RAID is actually a very broad topic, especially when you're working on the hardware side—it's a technology whose value becomes clear over time. At its core, RAID distributes data using different strategies to either boost performance or ensure data safety. For example, in RAID 0, since data is written in parallel across two disks (striping), the theoretical read/write speed nearly doubles. But if a single disk fails, you risk losing all your data because there’s no parity bit—once it’s gone, it’s gone for good. Here, the smoothness of the hardware and the quality of the disks matter a lot because even the tiniest bad sector can trigger data loss and lead to a complete disaster. For RAID 1 (mirroring), it’s straightforward but effective: since a bit-for-bit copy of the data is stored on another disk, you can still access your data even if one disk fails. Performance-wise, RAID 1 can be a bit slower than RAID 0, especially during write operations, because every piece of data has to be written to both the primary and mirrored disks. But in terms of data security, it’s almost indispensable. Then there’s RAID 5, where parity information is distributed across the disks, offering both performance and data safety. You can start with just three disks, and if one fails, you can recover the data using the parity info from the remaining disks. However, the biggest weakness of RAID 5 is that if a disk fails, performance drops significantly, and if a second disk fails during recovery, you’re out of luck. That’s why more advanced versions like RAID 6 exist, using double parity to withstand up to two disk failures. One thing to always keep in mind is that RAID is never a substitute for a proper backup system. Even in RAID 1, if both disks are in the same place—like during a fire—they’ll both go down, and you’ll lose your data. That’s why RAID should only be seen as *part* of your backup strategy. When choosing a setup, it’s just as important to pay attention to the quality of the RAID controller (like a robust LSI MegaRAID) as it is to the disks themselves. Using something like a high-end controller instead of a cheap one meant for home use can seriously boost performance. And of course, even if you trust your disks completely, you should still back up your data regularly to another location.