dd if=/dev/zero of=test bs=1M count=1024
在当前目录下会生成一个1G的test文件
dd if=/dev/zero of=test bs=1M count=1024 &
在执行的语句后加&可以让执行操作在后台进行;