I have a disk attached to my RHEL client, where I have to run IO continuously for very long time. But I have a storage limitations, where disk size is only 300GB.
Usually I use Vdbench Tool to run IO. There is one existing vdbench running in the background and I came to know that we can not create two instances of vdbench to run IO.( correct me if I am wrong)
As I need to fill my disk, tried dd command.
dd if=/dev/zero of=zeros bs=1M
This will literally fill the hard drive until disk is out of disk space. Thens stops.
My question here, how to run dd continuously for infinite time, even after disk is full ? Can dd overwrite the data once disk is full and run IO for ever ?
Any other tool to run io, which serves the purpose ? Please suggest.
Thanks in advance.