linux 跑分测试性能,有哪些好用的命令介绍一下?
在 Linux 系统上进行性能测试和跑分,可以使用多种命令和工具。以下是一些常用的工具和命令,适用于不同的性能测试需求:
sysbench:
sysbench --test=cpu --cpu-max-prime=20000 run
Phoronix Test Suite:
phoronix-test-suite benchmark
iperf:
iperf -s
(在服务器端启动)和iperf -c <server_ip>
(在客户端启动)fio:
fio --name=test --rw=read --size=1G --numjobs=4 --time_based --runtime=60
htop:
htop
stress-ng:
stress-ng --cpu 4 --timeout 60s
glmark2:
glmark2
UnixBench:
./Run
perf:
perf stat ls
vmstat、iostat、mpstat:
vmstat 1
、iostat 1
、mpstat 1
这些工具可以帮助你全面了解系统的性能表现,并找出可能的瓶颈。根据具体的测试需求,选择合适的工具进行测试。