#!/bin/bash # install-bench.sh — install the #709 benchmark toolset (fio + iperf3 + jq) # on a Debian-based guest or LXC. Idempotent. Not for Proxmox hosts directly: # on hosts, create the bench LXC (see lxc-bench-setup.sh) and run this inside. set -eu export DEBIAN_FRONTEND=noninteractive apt-get update -qq apt-get install -y -qq fio iperf3 jq libaio1 >/dev/null echo "bench toolset installed: fio=$(fio --version 2>/dev/null | awk '{print $3}') iperf3=$(iperf3 --version 2>/dev/null | awk 'NR==1{print $2}')"