Dec 312009
How to create a dummy file with a given size in Linux?
Answer:
Use the dd command
Example:
dd if=/dev/zero of=test.txt bs=1 count=1MB
The above command will create a 1MB dummy file and stored as test.txt
Linux Ask! is a Q & A web site specific for Linux related questions. Questions are collected, answered and audited by experienced Linux users.
How to create a dummy file with a given size in Linux?
Answer:
Use the dd command
Example:
dd if=/dev/zero of=test.txt bs=1 count=1MB
The above command will create a 1MB dummy file and stored as test.txt