Fast: dd if=/dev/zero of=out.img bs=1m iflag=fullblock,count_bytes count=1G
Faster(kind of): truncate -s 1G out.img
Fastest : fallocate -l 1G out.img
Fast: dd if=/dev/zero of=out.img bs=1m iflag=fullblock,count_bytes count=1G
Faster(kind of): truncate -s 1G out.img
Fastest : fallocate -l 1G out.img