linux 跑分测试性能和网络传输能力,有哪些好用的命令(比如wget)以及具体使用案例介绍一下?
在 Linux 系统中,有多种命令可以用于测试系统性能和网络传输能力。以下是一些常用的命令及其使用案例:
sysbench
sudo apt-get install sysbench
sysbench --test=cpu --cpu-max-prime=20000 run
sysbench --test=memory --memory-block-size=1M --memory-total-size=10G run
hdparm
sudo apt-get install hdparm
sudo hdparm -Tt /dev/sda
fio
sudo apt-get install fio
fio --name=randread --ioengine=libaio --iodepth=1 --rw=randread --bs=4k --direct=1 --size=1G --numjobs=4 --runtime=60 --group_reporting
wget
wget -O /dev/null http://speedtest.tele2.net/1GB.zip
curl
wget
,也可以用于下载文件。curl -o /dev/null http://speedtest.tele2.net/1GB.zip
iperf
sudo apt-get install iperf3
iperf3 -s
iperf3 -c <server_ip>
ping
ping -c 4 google.com
traceroute
sudo apt-get install traceroute
traceroute google.com
这些命令可以帮助你评估 Linux 系统的性能和网络传输能力。根据具体需求选择合适的工具和参数进行测试。