For testing purposes I have to generate a file of a certain size (to test an upload limit).
What is a command to create a file of a certain size on Linux?
|
2
|
For testing purposes I have to generate a file of a certain size (to test an upload limit). What is a command to create a file of a certain size on Linux?
|
||
|
|
|
|
Where |
||||
|
|
|
You can do it programmatically:
This proceeding is especially useful to subsequently mmap the file into memory. use the following command to check that the file has the correct size: But: see also: man 2 open and man 2 truncate |
|||
|
|
|
|
Just to follow up Tom's post, you can use dd to create sparse files as well:
This will create a file with a "hole" in it on most unixes - the data won't actually be written to disk, or take up any space until something other than zero is written into it. |
|||
|
|
The trouble with the approaches using dd and perl is that they actually have to write every byte of the file. Using an approach like this you wouldn't have to.
This will just allocate a large file and doesn't actually need to write many bytes to do so. Disclaimer: I have not compiled or tested this code. |
||||||
|
|
|
you could do:
Where you replace 100 with the number of bytes you want written. |
||
|
|
|
|
|
||
|
|
|
Use this command: dd if=$INPUT-FILE of=$OUTPUT-FILE bs=$BLOCK-SIZE count=$NUM-BLOCKS To create a big (empty) file, set $INPUT-FILE=/dev/zero. |
||||||||||
|