What's the fastest way to combine two or more files in Linux?
You could try a variation on the dd command, such as:
dd if=small_file bs=4k of=SUM_OF_FILES
dd if=LARGE_FILE bs=4k of=SUM_OF_FILES oflag=append
dd if=LARGER_FILE bs=4k of=SUM_OF_FILES oflag=append