Skip to content

Instantly share code, notes, and snippets.

@TobidieTopfpflanze
Created August 19, 2021 09:01
Show Gist options
  • Save TobidieTopfpflanze/d04af1a70b00a4a611b64bda5646e179 to your computer and use it in GitHub Desktop.
Save TobidieTopfpflanze/d04af1a70b00a4a611b64bda5646e179 to your computer and use it in GitHub Desktop.
Generate random file

Generate random file

dd if=/dev/urandom of=<destination> bs=1048576 count=<filesize>

Example

This will generate a random file with 1000MB

dd if=/dev/urandom of=/home/test/testFile.bin bs=1048576 count=1000
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment