[[PageOutline]] * [參考] [http://alephnull.com/perf.html Linux Performance and Development Tools] = CPU : POV-RAY = * Persistence of vision raytracer (3D renderer) * 由於 Ray Tracing 的 3D 繪圖運算會消耗非常多 CPU 資源,因此我們經常使用 POV-RAY 來作為 CPU-intensive 的 Workload 模擬。 = Network : netcat = * 使用 netcat 搭配 dd 測試 TCP 與 UDP 的速度 {{{ ==TCP== [recive firstly] ncat -l 60000 > /dev/null [then send] cat /dev/zero | ncat 140.110.X.X 60000 ==UDP== [recive firstly] ncat -u -l 60000 > /dev/null [then send] cat /dev/zero | ncat -u 140.110.X.X 60000 }}}