How-to Create a 1M file

Etusivu
Liitteet:
Viesti alkuperäisessä muodossaan
+ (text/plain)
Poista viesti
Vastaa
Lähettäjä: Brian Cluff
Päiväys:  
Aihe: 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