$ dd if=/dev/zero of=junk.data bs=1M count=1
参数:
if (input file)
of (output file)
bs(block size)
count(需要复制的块数)
bs 单位(c w B K M G)
/dev/zero 特殊的字符设备,返回0值字节( )
$ dd if=/dev/zero of=junk.data bs=1M count=1
参数:
if (input file)
of (output file)
bs(block size)
count(需要复制的块数)
bs 单位(c w B K M G)
/dev/zero 特殊的字符设备,返回0值字节( )