IMPLEMENTING MASS STORAGE
INSTALL O.S. ONTO A NEW DRIVE. THAT'S HOW YOU PARTITION & FORMAT a new drive Example: Windows costs money. "ubuntu" on Linux is open source **PARTITIONING & FORMATTING must happen before you use any new mass storage drive!** . . . . . . . . . RAID LEVELS / FILE STORAGE: RAID 0 (striping) = 2 drives sharing bits of data from a big file. SPEEDS THINGS UP . RAID 1 (mirroring) = 2 drives share identical bits via mirroring each other on both drives. Protects against losing everything. Necessary? It's REDUNDANT. Slows things down . RAID 5 (striping w/parity) = uses 3 drives. First two drives save the old RAID 0 way but new 3rd drive saves a weird "math parity." clones files via binary math . RAID 6 = uses 4 drives. First two drives save the old RAID 0 way but new drives make "math parity" clones of file (via binary math) **Two drives can fail and everything will still be saved** . RAID 10 (striping mirrors) = 4 drives with 2 ...