Test Disk Read/Write Speed

1. Create a large file

Here, we create a tmp.txt file with size of 2 Gigabytes

truncate -s 2G ./tmp.txt

2. File Transfer

dd if=./tmp.txt of=./tmp.out bs=1G count=1024

Last updated