HOWTO CREATE A TESTFILE OF A GIVEN SIZE?
I needed files of certain size so I could test an upload threshold. I used the dd command on Ubuntu Linux to create a file of 25MB.
dd if=/dev/zero of=test-size25M.bin bs=25000000 count=1
— ♦ —
I needed files of certain size so I could test an upload threshold. I used the dd command on Ubuntu Linux to create a file of 25MB.
dd if=/dev/zero of=test-size25M.bin bs=25000000 count=1