How-to Create a 1M file
Català
Dansk
Deutsch
Ελληνικά
English
Español
suomi
Français
Galego
magyar
Italiano
日本語
Nederlands
Polski
Português
Português Brasileiro
This message is part of the following thread:
the complete thread tree sorted by date
Gilbert T. Gutierrez, Jr. at
2001-05-10 18:30
David A. Sinck at
2001-05-10 21:41
Attachments:
Message as email
(text/plain)
Author:
Brian Cluff
Date:
2001-05-10 20:17
UTC
Subject:
How-to Create a 1M file
> dd if=/dev/null of=TEST bs=1024 count=1000
/dev/null doesn't kick out anything. This just makes a 0 size file.
Better to use /dev/zero or /dev/urandom.
Brian