
How to install Geekbench 4, 5 and 6 on Linux
Last updated on January 7, 2026
If you want to install and run Geekbench 4, 5 or Geekbench 6 on Linux, follow this tutorial. The following instructions can be used on:
- a local computer running any Linux distribution
- a remote Linux server (VPS, shared or dedicated hosting…) with access to the command line
I mostly use Geekbench to compare the performance of small VPS instances running Ubuntu Server.
1. Install Geekbench 4, 5 or Geekbench 6 on Linux
You do not need to run Geekbench as root (or use sudo).
1.1 In your home directory, create a temporary directory and enter it:
cd
mkdir geekbench-tmp
cd geekbench-tmp
1.2 Download the Geekbench 4 or 5 or the latest Geekbench 6 and extract the archives:
wget https://cdn.geekbench.com/Geekbench-4.4.4-Linux.tar.gz
tar -zxvf Geekbench-4.4.4-Linux.tar.gz
wget https://cdn.geekbench.com/Geekbench-5.5.1-Linux.tar.gz
tar -zxvf Geekbench-5.5.1-Linux.tar.gz
wget https://cdn.geekbench.com/Geekbench-6.5.0-Linux.tar.gz
tar -zxvf Geekbench-6.5.0-Linux.tar.gz
2. Run Geekbench 4, 5 and Geekbench 6 on Linux
2.1 Enter Geekbench 4 directory and run it:
cd Geekbench-4.4.4-Linux/
./geekbench_x86_64
2.2 Enter Geekbench 5 directory and run it:
cd Geekbench-5.5.1-Linux/
./geekbench_x86_64
2.3 Enter Geekbench 6 directory and run it:
cd Geekbench-6.5.0-Linux/
./geekbench_x86_64
Once Geekbench has finished running, it will display a link to the results, which could look like this:

3. Uninstall Geekbench
To uninstall Geekbench on Linux, simply remove the temporary Geekbench directory:
cdrm -r geekbench-tmp
By Johannes Eva, January 2011 – January 2026
4 thoughts on “How to install a LEMP stack on Ubuntu Server 20.04, 22.04 or 24.04”
Hi Eva…
Thanks for this complete tutorial, it is really very helpful for the community. But, for those who don’t want to bother installing the LEMP stack one by one, you can use the auto installer tools.
For this, I usually use the LEMPer Stack, it might be useful for auto-installing the LEMP stack and at the same time managing a vps/cloud server for hosting PHP websites without the need for cpanel 🙂
LEMPer Stack
This tool is free and open source, you can contribute to its development via the Github repo => https://github.com/joglomedia/LEMPer
Looking forward to your feedback/review..
🙏🏻🤗
MySQL might takeover MariaDB in the near future for at least like WordPress servers, unless Maria gets a lot more money/team size.
See the SlickStack readme https://github.com/littlebizzy/slickstack
However interesting seems Ubuntu 20.04 is now supporting both of them.
Hi, this question is answered in this article, have a look here:
2.4 Test Nginx
Short answer: for basic tasks, use
service.On some blogs, I see
sudo service mysql startfor starting mariadb server whereas on other sites I see the command assudo systemctl start mariadb.service.I want to know what’s the difference and which works correctly on Ubuntu 18.04?
Comments are closed.