The Notebook Review forums were hosted by TechTarget, who shut down them down on January 31, 2022. This static read-only archive was pulled by NBR forum users between January 20 and January 31, 2022, in an effort to make sure that the valuable technical information that had been posted on the forums is preserved. For current discussions, many NBR forum users moved over to NotebookTalk.net after the shutdown.
Problems? See this thread at archive.org.

    I love how you can make a RAID of anything in Unix.

    Discussion in 'Linux Compatibility and Software' started by AlexOnFyre, Jul 23, 2007.

  1. AlexOnFyre

    AlexOnFyre Needs to get back to work NBR Reviewer

    Reputations:
    307
    Messages:
    1,580
    Likes Received:
    0
    Trophy Points:
    55
  2. Pitabred

    Pitabred Linux geek con rat flail!

    Reputations:
    3,300
    Messages:
    7,115
    Likes Received:
    3
    Trophy Points:
    206
  3. lupin..the..3rd

    lupin..the..3rd Notebook Evangelist

    Reputations:
    154
    Messages:
    589
    Likes Received:
    0
    Trophy Points:
    30
    That's the big benefit to software RAID. That you're performing the RAID functions at the partition level instead of the block device level. You can RAID anything that you can write a partition to.

    I'm using software RAID1 to mirror my two internal notebook drives.

    If you have an external firewire (or USB, yuck) drive, you can even do simple system backups by adding it in as a "3rd mirror" and breaking it off after the sync is complete.

    Software RAID is fun!
     
  4. Ethyriel

    Ethyriel Notebook Deity

    Reputations:
    207
    Messages:
    1,531
    Likes Received:
    0
    Trophy Points:
    55
    Hmmm... I just got this wonderful vision of RAID 0 ram disks in my mind...
     
  5. Pitabred

    Pitabred Linux geek con rat flail!

    Reputations:
    3,300
    Messages:
    7,115
    Likes Received:
    3
    Trophy Points:
    206
    RAID0 isn't always faster. It really depends on what kind of data you store on it. And a regular RAM disk would be faster than a RAIDed one anyway because with RAID you'd have to do the parity checking and so on in the processor, rather than just passing the data through.
     
  6. fafler

    fafler Notebook Enthusiast

    Reputations:
    0
    Messages:
    42
    Likes Received:
    0
    Trophy Points:
    15
    I once needed to create a 5 gb tar file on a system with FAT32 filesystem and a LiveCD. FAT32 doesn't support files larger than 2 gb. The solution? Create 3 2 gb loopback filesystems on the FAT32 device and use software RAID to stripe them into one 6 gb filesystem. Simple and beautiful.
     
  7. Ethyriel

    Ethyriel Notebook Deity

    Reputations:
    207
    Messages:
    1,531
    Likes Received:
    0
    Trophy Points:
    55
    Interesting point. Maybe using a couple of those Gigabyte PCI/SATA ram disks. Of course, that could be done anywhere, including with a hardware controller.