Skip to content

Install

Johann N. Löfflmann edited this page Aug 16, 2026 · 1 revision

Installing Jacksum

← back to the README

System requirements

  • GNU/Linux, Microsoft Windows, or macOS
  • a JRE/JDK that is compatible with Java 21 LTS or later (OpenJDK 25 LTS or later is recommended)
  • 2 MiB disk space

Details

Where to download

The latest released .jar file can be found at https://github.com/jonelo/jacksum/releases/latest

The .zip file also contains simple scripts to call Jacksum on Windows, GNU/Linux, and macOS from the command line.

How to install and configure it

Download the .jar (or .zip) file as described above, open a terminal (on Microsoft Windows it is known as the "Command Prompt") and start Jacksum by typing

java -jar jacksum-4.0.0.jar

I recommend adjusting the Windows batch file (jacksum.bat) resp. the bash script (jacksum) for GNU/Linux and Unix operating systems (e.g. macOS), and putting the script in a folder that is reachable by your PATH environment variable, in order to launch Jacksum easily just by typing

jacksum

Setup on GNU/Linux

The following snippet could help you to set up Jacksum on GNU/Linux. In the example below, the launch script will be stored in $HOME/bin/, which will also be added to your PATH. The jar file will be stored in /opt/java/apps/jacksum/, so other users on the computer have access to it as well.

$ echo 'export PATH="$PATH:$HOME/bin"' >> $HOME/.profile
$ export VERSION=4.0.0
$ unzip jacksum-$VERSION.zip
$ cp jacksum-$VERSION/unix/jacksum ~/bin && chmod +x ~/bin/jacksum
$ sudo mkdir -p /opt/java/apps/jacksum && cp jacksum-$VERSION/jacksum-$VERSION.jar /opt/java/apps/jacksum/
$ rm -R jacksum-$VERSION/

Alternatives

Instead of installing Jacksum manually, you can use one of the platform installers or the Docker image, see Integrations.

Clone this wiki locally