Dd: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
(Created page with "=Internal= * Linux =Create a Fixed Size File with Random Content= Write a 10K file: dd if=/dev/random of=./test.bin bs=10 count=1024 =Create a Fixed S...")
(No difference)

Revision as of 21:53, 14 February 2018

Internal

Create a Fixed Size File with Random Content

Write a 10K file:

dd if=/dev/random of=./test.bin bs=10 count=1024

Create a Fixed Size File with Zeroes as Content

Write a 10K file:

dd if=/dev/zero of=./test.bin bs=10 count=1024