将以下脚本保存为文件,执行:cpu.sh
#!/bin/bash # 获取CPU核心数 cpu_cores=$(nproc) # 计算要使用的线程数,以使CPU使用率达到约50% threads=$((cpu_cores*60/100)) # 使用stress命令生成CPU负载 stress --cpu $threads --timeout 60s