fallocate Aug 14, 2023 • ulysses If you want to create dummy files, there’s a faster command than ‘dd’ called ‘fallocate.’ Create a 30GB called temp_30GB_file. fallocate -l 30G temp_30GB_file Unlike dd which can take minutes depending on file size, fallocate is instantaneous.