kmwoley
44p81 comments posted · 0 followers · following 0
7 weeks ago @ Kevin's Blog - RAID on the Cheap: Win... · 0 replies · +1 points
18 weeks ago @ Kevin's Blog - RAID on the Cheap: Win... · 0 replies · +1 points
30 weeks ago @ Kevin's Blog - RAID on the Cheap: Win... · 0 replies · +1 points
35 weeks ago @ Kevin's Blog - RAID on the Cheap: Win... · 0 replies · +1 points
35 weeks ago @ Kevin's Blog - RAID on the Cheap: Win... · 1 reply · +2 points
38 weeks ago @ Kevin's Blog - RAID on the Cheap: Win... · 0 replies · +1 points
You're correct in that there is little to no real hardware advantage that fake RAID controllers provide - I've heard claims that the drivers that enable the RAID often work better than the RAID provided by the OS, or that "Fake-RAID can have solid performance due to high bandwidth, low latency interfaces to the CPU" due to close ties to the CPU's south bridge (http://www.servethehome.com/difference-hardware-raid-hbas-software-raid/).
I think it is important to validate these things for one's self.
38 weeks ago @ Kevin's Blog - RAID on the Cheap: Win... · 3 replies · +1 points
51 weeks ago @ Kevin's Blog - Flat Panel TV Shelf fo... · 0 replies · +1 points
And it allows for easier worship.
53 weeks ago @ Kevin's Blog - RAID on the Cheap: Win... · 0 replies · +1 points
For a RAID 0 config, I'm fairly certain you can transfer the disks from one Windows 7 machine to another, but I have not tried it myself. The key with most RAID configs, as I understand it, is to use the same 'controller' that laid down the bits when you move the disks. In a HW RAID 0 config, you'd have to get the exact same controller card to be able to move the disks across machines. For SW raid, it's the OS doing the controlling so you should need no special hardware - just the same software.
I'd love to hear from anyone that's tried this for themselves. Since I don't have a RAID 0 config, I can't prove or disprove it - and I haven't dug up specific docs on Win 7 saying either way.
53 weeks ago @ Kevin's Blog - How to Fix Garmin DAT ... · 0 replies · +1 points
FYI - the correct fix is to declare the $datfiles as an array, and then add the new lap files to it. That way the [0] reference will always work later in the script:
$datfiles = @();
$datfiles += get-childitem Lap*.dat | Sort-Object;
Production