How to create a dummy file with a given size in Linux?
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
Related posts:
- Generate dummy file in Linux
- Create an empty file in Linux
- How to create an empty file in Linux
- Create a temp file in Linux
- How to determine the type of a file in Linux
Post a Comment