Results 1 to 3 of 3
I've been looking for a good data integrity test tool for linux, but I'm having trouble finding one. Basically I'm looking for an application that will generate a heavy I/O ...
- 01-06-2010 #1Just Joined!
- Join Date
- Jan 2010
- Posts
- 7
Data integrity tool...?
I've been looking for a good data integrity test tool for linux, but I'm having trouble finding one. Basically I'm looking for an application that will generate a heavy I/O load to a raw device and then perform some kind of data verification on the device. I my case the raw device will be md raid5 array. Any suggestions?
- 01-06-2010 #2Code:
man badblocks
will overwrite the whole <DEVICE> four times with these patterns: 10,01,11,00Code:badblocks -svw <DEVICE>
After each write, there is a read of the whole device.
So this takes a while.
Warning:
The option -w will do _writes_
So all data on the device will be overwritten and lost.You must always face the curtain with a bow.
- 01-06-2010 #3Just Joined!
- Join Date
- Jan 2010
- Posts
- 7
Thanks, I'll give that a try.


Reply With Quote
