I’ll be breaking down the following command part by part: time dd if=/dev/zero of=test.dat bs=1024 count=100000 What does time do? It runs a process and then captures how long it took to execute. What about DD? Well, it’s a command that copies data from a standard input to a standard output. What about the …
Continue reading “Useful command to test speed of a container, vm, or system”