Geekbench Benchmark Pages

e.g. ES7 results here.

Geekbench doesn’t let you run a benchmark directly from the website — that’s why you can’t find a “Benchmark this device” button. The results pages are only for displaying scores that were uploaded by the Geekbench app itself. To benchmark a VPS or server, you must download and run the Geekbench CLI tool on the VPS, then it uploads the result automatically.

Here’s how you normally do it:

How to run Geekbench on a VPS (Linux)

  1. SSH into your VPS
ssh user@your.server.ip
  1. Download Geekbench 6 for Linux
wget https://cdn.geekbench.com/Geekbench-6.3.0-Linux.tar.gz

(The version number changes occasionally — but the download page always lists the latest.)

  1. Extract it
tar -xvf Geekbench-6.3.0-Linux.tar.gz
cd Geekbench-6.3.0-Linux
  1. Run the benchmark
./geekbench6
  1. Wait 1–2 minutes.
    When it finishes, it prints a link like:
https://browser.geekbench.com/v6/cpu/xxxxxxxxx

That’s your result page.

Where to find the download link?

Geekbench hides it a bit, but it’s here:

Geekbench → Downloads → Linux
https://www.geekbench.com/download/

Here’s a one-line command that downloads, extracts, runs Geekbench and prints the result link automatically.

Geekbench 6 one-liner for Linux (64-bit)

wget -q https://cdn.geekbench.com/Geekbench-6.3.0-Linux.tar.gz && \
tar -xf Geekbench-6.3.0-Linux.tar.gz && \
cd Geekbench-6.3.0-Linux && \
./geekbench6

Geekbench sometimes bumps the version number (e.g., 6.3.1, 6.4, etc).
If it fails to download, check the latest Linux tarball here:

https://www.geekbench.com/download/

Auto-detecting Geekbench One-Liner

url=$(curl -s https://www.geekbench.com/download/linux/ | grep -oP 'https://cdn\.geekbench\.com/Geekbench-.*?-Linux\.tar\.gz' | head -n1) && \
wget -q "$url" && \
file=$(basename "$url") && \
tar -xf "$file" && \
cd "${file%.tar.gz}" && \
./geekbench6