Skip to content

Instantly share code, notes, and snippets.

@rephlex
Last active June 22, 2022 18:48
Show Gist options
  • Save rephlex/8e8d12657263559a52ab98120c29d9ec to your computer and use it in GitHub Desktop.
Save rephlex/8e8d12657263559a52ab98120c29d9ec to your computer and use it in GitHub Desktop.
Performance testing Proxmox Storage with fio
#!/bin/bash
dd if=/dev/zero of=./test.10G bs=100M count=100
fio --rw=randrw --name=iops-randrw --bs=4k --direct=1 --filename=./test.10G --numjobs=4 --ioengine=libaio --iodepth=32 --refill_buffers --group_reporting --runtime=60 --time_based
rm -f test.10G
exit 0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment