Creation of file with specific size
The command dd allows you to create new files with specific size in order to avoid creating large sized file for testing purposes:
dd if=/dev/zero of=file_to_create bs=1k count=1000
The above command will create a file size of 1000 kb.