Meta
-
Recent Posts
Archives
Categories
Tags
Tag Archives: unix
Creating Testfiles of Given Length
Use the Unix /dev/zero device (which produces an infinite stream of bytes with value zero) together with the dd block copier to create files of any length, useful for testing. dd if=/dev/zero of=test.bin bs=1024\*1024 count=4 … creates a file called … Continue reading