如何在 Linux OS 上產生一個空的大檔案 在Linux OS 上產生一個空的大檔案 To create a file of a specified size, like the Solaris mkfile command… # dd if=/dev/zero of=/tmp/bigfile bs=1M count=2048 以上這個動作將會產生一個 (2048 * 1MB) blocks or (2GB) 的檔案 /tmp/bigfile .