Dd
Jump to navigation
Jump to search
Internal
Create a Fixed Size File with Random Content
Write a 10K file:
dd if=/dev/random of=./test.bin bs=10 count=1024
Create a Fixed Size File with Zeroes as Content
Write a 10K file:
dd if=/dev/zero of=./test.bin bs=10 count=1024