Create File Of Any Size: Revision history

Jump to navigation Jump to search

Diff selection: Mark the radio buttons of the revisions to compare and hit enter or the button at the bottom.
Legend: (cur) = difference with latest revision, (prev) = difference with preceding revision, m = minor edit.

21 February 2023

  • curprev 16:5116:51, 21 February 2023Qljca talk contribsm 482 bytes +36 No edit summary
  • curprev 16:4916:49, 21 February 2023Qljca talk contribs 446 bytes +446 Created page with "<pre>$ dd if=/dev/zero of=test.img bs=1024 count=0 seek=1024 Example: Create a file of 10M: dd if=/dev/zero of=daygeek2.txt bs=10M count=1 Create a file of 100M: dd if=/dev/zero of=daygeek2.txt bs=100M count=1 Create a file of 1G: dd if=/dev/zero of=daygeek2.txt bs=1024M count=1 Create a file of 2G: dd if=/dev/zero of=daygeek2.txt bs=2048M count=1 create a file of 10G: dd if=/dev/zero of=daygeek2.txt bs=1024M count=10 </pre>"