Originally posted by: sharkeeper
It sounds like you're confusing striping (RAID0) with JBOD. If one disk fails with striping, it is nearly impossible to get your data back. If a disk fails with JBOD, you should be able to easily recover what's on the good disk.
Cheers!
I think that it kind of "depends". I don't think that either option is really that safe. Consider both the FAT32 and NTFS filesystem. FAT32 stores the file-allocation tables at the beginning of the drive layout, and files tend to get fragmented fairly easily. If the first drive out of the JBOD set goes, the one containing the FAT tables, it will be very difficult to sucessfully recover the rest of your files from the other drive(s), especially in the (likely) event that they are fragmented. Now let's look at NTFS. From what little I know about the actual physical layout of that filesystem, it tends to attempt to place the critical MFT table in the center of the drive, in order to optimize seeking between it and the files on the volume. That means, that with a two-drive JBOD set, if either one of them fails, then they will take half of the MFT with it, leaving precious little to use to recover the files on the remaining drive. If one used a three-drive JBOD set, and lost the middle drive, the entire MFT would most likely be lost.
So in all cases, you are very likely to lose everything, should one drive in a JBOD set go. The only case in which this wouldn't happen, is with FAT32, and losing a drive other than the first in the set.
If you wish to use multiple disks, and not stripe nor span, then consider simply setting up an independent filesystem on each drive, formatted NTFS, and then use the NTFS "directory/partition mount feature", to mount the drives as a subdirectory of some primary mount-point drive (OS boot/system drive, most likely). This is such a fundementally-basic feature in *nix, but most NT users don't know about it or use it very much. That way, each drive has its own indepedent filesystem, and if one drive fails, it only takes out that filesystem, not anything else.