#computers #linux
Created: 2023-12-08 13:30
The Linux dm-flakey target is the same as the linear target except that it exhibits unreliable behaviour periodically. It’s been found useful in simulating failing devices for testing purposes.
To use it do the following:
sudo dmsetup create <name> --table "<begin-sector> <size> flakey <source-device> <offset> <period-normal> <period-faulty>"
This would create a block device under /dev/mapper/<name>
which forwards IO to <source-device>
for <period-normal>
after which it returns IO errors for <period-fault>
.