Linux - create large dummy files

dd if=/dev/zero of=filename bs=1M count=1 seek=50

it should create a 51Mb file by writing 1Mb of data but seeking 50meg into a file first.

Comments