How to create a file with a given size in Linux?

后端 未结 13 1091
既然无缘
既然无缘 2020-11-28 17:57

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?

相关标签:
13条回答
  • 2020-11-28 18:28
    dd if=/dev/zero of=upload_test bs=file_size count=1
    

    Where file_size is the size of your test file in bytes

    0 讨论(0)
  • 2020-11-28 18:28

    As shell command:

    < /dev/zero head -c 1048576 >  output
    
    0 讨论(0)
  • 2020-11-28 18:35

    This will generate 4 MB text file with random characters in current directory and its name "4mb.txt" You can change parameters to generate different sizes and names.

    base64 /dev/urandom | head -c 4000000 > 4mb.txt
    
    0 讨论(0)
  • 2020-11-28 18:39

    Use fallocate if you don't want to wait for disk.

    Example:

    fallocate -l 100G BigFile
    

    Usage:

    Usage:
     fallocate [options] <filename>
    
    Preallocate space to, or deallocate space from a file.
    
    Options:
     -c, --collapse-range remove a range from the file
     -d, --dig-holes      detect zeroes and replace with holes
     -i, --insert-range   insert a hole at range, shifting existing data
     -l, --length <num>   length for range operations, in bytes
     -n, --keep-size      maintain the apparent size of the file
     -o, --offset <num>   offset for range operations, in bytes
     -p, --punch-hole     replace a range with a hole (implies -n)
     -z, --zero-range     zero and ensure allocation of a range
     -x, --posix          use posix_fallocate(3) instead of fallocate(2)
     -v, --verbose        verbose mode
    
     -h, --help           display this help
     -V, --version        display version
    
    0 讨论(0)
  • 2020-11-28 18:42

    Please, modern is easier, and faster. On Linux, (pick one)

    truncate -s 10G foo
    fallocate -l 5G bar
    

    It needs to be stated that truncate on a file system supporting sparse files will create a sparse file and fallocate will not. A sparse file is one where the allocation units that make up the file are not actually allocated until used. The meta-data for the file will however take up some considerable space but likely no where near the actual size of the file. You should consult resources about sparse files for more information as there are advantages and disadvantages to this type of file. A non-sparse file has its blocks (allocation units) allocated ahead of time which means the space is reserved as far as the file system sees it. Also fallocate nor truncate will not set the contents of the file to a specified value like dd, instead the contents of a file allocated with fallocate or truncate may be any trash value that existed in the allocated units during creation and this behavior may or may not be desired. The dd is the slowest because it actually writes the value or chunk of data to the entire file stream as specified with it's command line options.

    This behavior could potentially be different - depending on file system used and conformance of that file system to any standard or specification. Therefore it is advised that proper research is done to ensure that the appropriate method is used.

    0 讨论(0)
  • 2020-11-28 18:42

    Some of these answers have you using /dev/zero for the source of your data. If your testing network upload speeds, this may not be the best idea if your application is doing any compression, a file full of zeros compresses really well. Using this command to generate the file

     dd if=/dev/zero of=upload_test bs=10000 count=1
    

    I could compress upload_test down to about 200 bytes. So you could put yourself in a situation where you think your uploading a 10KB file but it would actually be much less.

    What I suggest is using /dev/urandom instead of /dev/zero. I couldn't compress the output of /dev/urandom very much at all.

    0 讨论(0)
提交回复
热议问题