I'm not sure where you heard that -- I believe Debian has one of the
largest archives of any distribution. According to this page,
http://www.debian.org/intro/why_debian , there are over 25,000 packages
available through apt.
> - I have 2 hardware RAID arrays on the server previously. RAID 1 and
> RAID 10. I tried to put Debian mostly on RAID 1 and data on RAID 10.
> My research tells me that I may not benefit much from 2 arrays. Is
> this true.
Having your OS and data on separate partitions allows you to install a
different distribution without affecting your data. It also means that
if you run out of room on your data partition, your OS will not be
affected.
The downside is the complexity of managing two different arrays, and the
fact that you have to pre-allocate a set amount of disk space for your
OS.
- Jon
While RAID 5 and 6 are cheaper in terms of the amount of storage you
need to buy vs. the amount of usable storage, the write performance is
not as good as RAID 10.
- Jon
RAID 10 is a stripe of mirrors, so you can lose a drive without losing
any data. RAID 0 is the level that provides no redundancy. Array
rebuilds are also faster with RAID 10 (vs. RAID 5) and do not degrade
read performance as much. You can actually lose 2 drives in a 4-drive
RAID 10, but not *any* two drives. (You can lose 1 drive from each
mirrored set.)
> So the trade off is speed vs. safety. It seems to me that Javid was
> more interested in safety and the convenience of just replacing a
> damaged drive and not having to rebuild, reinstall, and reconfigure.
RAID 5 can only suffer a single drive loss, so it has no advantage over
RAID 10 except for cost. RAID 6 is safer because you can lose any two
drives.
My point was not to argue for the use of one RAID vs. another, but just
to point out that there may be reasons to use something besides RAID 5.
- Jon
> had to take a new drive. All the RAID 1+0 systems had to be rebuilt and
> there was data loss in every case. Based on extensive discussions with Linux
> techies that know a heck of a lot more than me it turns out that RAID 1+0
> provides fantastic performance but is very complex to implement. You need a
> really good quality RAID controller (such as 3Ware).
Do not confuse RAID specifications with real-world implementation issues. I
do not know about your specific circumstances.
RAID 1+0 is redundant. It is widely used. More information is
available here: http://en.wikipedia.org/wiki/RAID (in the "Nested
(hybrid) RAID" section).
- Ben