Comment Re:Gonna get lambasted for this but... (Score 1) 699
Comment Re:Gonna get lambasted for this but... (Score 3, Interesting) 699
Comment Re:Isn't this what --preserve-root is for? (Score 4, Informative) 699
Comment Re:What the doctor ordered... (Score 4, Insightful) 699
1. Don't type fast when your command starts with rm -rf;
2. Never rm -rf by absolute path at all;
3. Never start typing rm -rf at all, but type the rest of the command first and then edit in the rm; and
4. Don't use root shells, but sudo, and edit in the sudo last on potentially destructive commands.
There may be good reason to break one or more of these rules at one time, but never all four.
Comment Re:LOL, what? (Score 4, Insightful) 699
Comment Re:Gonna get lambasted for this but... (Score 4, Informative) 699
Comment What the doctor ordered... (Score 4, Insightful) 699
so for now there is no good solution to avoid potentially bricking your system
Have you tried not running rm -rf
Comment Re:Please change the name! (Score 1) 360
Comment Re:here's how stupid this is (Score 1) 146
Comment Re:here's how stupid this is (Score 1) 146
Only to still replace it with air cooling further down the line.
Sure, admittedly so, of course. The point, though, is clearly to be able to use a larger or otherwise better air cooler in the end, which I can certainly see being the point in this case, seeing is how the PCI specification gives too little room for a proper cooler on the card itself, especially if it's going to fit in only two slots.
Comment Re:here's how stupid this is (Score 5, Informative) 146
Comment Re:Uh... okay (Score 1) 607
Comment Re:What happened to Java? (Score 4, Informative) 265
It's mostly a matter of incompetence in the implementation, indeed. The Java vulnerabilities I have followed have always included calling some obscure part of the Java class library which is implemented using native code (mostly for optimization reasons) that happened to be buggy in some way.
It should be said in this case, however, that the new Java 7 dynamic language support infrastructure, which is one of the things Oracle added since they took Java over. Many of the things Oracle has done to Java lately (and especially as additions in Java 7) have struck me as poorly designed features that just allowed Oracle to check of some feature-lists to make Java appear as "feature-complete" as dotnet.
Comment Re:BTRFS experiences? (Score 1) 143
You don't normally use LVM for RAID1 (you can, but it kind of sucks and is a bit immature). Normally, you'd use mdraid for that, and then construct a LVM PV from the resulting mdraid device(s).
Neither ext3, LVM nor mdraid checks for silent corruption, however. That's strictly a feature of filesystems like ZFS or btrfs that explicitly checksum all data.