Create a file of a specific size in the Linux system

Create files of specific size

Create a file with a size of 10M (bs × count ), and the file name is test1 (of)

dd if=/dev/zero of=test1 bs=1M count=10

Insert picture description here

Guess you like

Origin blog.csdn.net/qq_39599464/article/details/114523211