How to Install WSJT-X on Linux Mint

Feb. 28, 2023



Prerequisites to Install WSJT-X on Linux

Prerequisites to Install WSJT-X on Linux

Before you can install WSJT-X for radio communication, let’s see what prerequisites you need to have:

There are multiple ways to install WSJT-X on Linux Mint, but we recommend you install it either using the apt or flatpak package manager.

Installing WSJT-X using the apt package manager is straightforward; generally, you get the latest stable version of the software using this method. Also, the software gets updated to the latest stable version whenever you update the whole system. Here’s how it works:

  1. Open the Terminal from the start menu or use the keyboard shortcut “CTRL + ALT + T”.

  2. Then, type the following command to update the system libraries to the latest version.

sudo apt update

  1. Then,run the command below to install WSJT-X. This will download all the latest packages required.

sudo apt install wsjtx

  1. Navigate to the start menu and open the application from there or type the following command in the terminal to start using WSJT-X on your Linux PC.

wsjtx

  1. The Flatpak method will work for most Linux distros, including Linux Mint. To install WSJT-X using Flatpak, use the below command:

flatpak install flathub edu.princeton.physics.WSJTX

  1. Once WSJT-X finishes installing, open the application from the Linux Mint start menu or type the following command in the terminal:

flatpak run flathub edu.princeton.physics.WSJTX

  1. Download the latest version of WSJT-X from its official download page using thislink here, as per your distribution.

  2. Then, open the terminal and navigate to the folder where you downloaded the package using thecdcommand. Then, use the following command to install it:

sudo dpkg -i wsjtx-2.6.1.deb

  1. Next, open the application from the start menu or using the following command in the Terminal:

wsjtx

Finally, if you wish to customize your WSJT-X installation on Linux Mint, you can use the source code. When you install it by compiling the source code, you have the freedom to customise it to any extent. We have explained the process in detail here:

  1. First, install the required libraries with the following command:

sudo apt-get install -y asciidoctor libfftw3-dev qtdeclarative5-dev texinfo libqt5multimedia5 libqt5multimedia5-plugins qtmultimedia5-dev libusb-1.0.0-dev libqt5serialport5-dev asciidoc libudev-dev qttools5-dev-tools qttools5-dev libboost-tools-dev libboost-log-dev libboost-system-dev libboost-thread-dev libboost-dev libboost-thread-dev libboost-program-options-dev libboost-system-dev libboost-math-dev libboost-test-dev libboost-python-dev libboost-program-options-dev libboost-test-dev libeigen3-dev zlib1g-dev libbz2-dev liblzma-dev

  1. Download the WSJT-X source code from the official WSJT-X download page (visit).

  2. Now, navigate to the location where you have downloaded the source code using the cd command and extract it with the following command:

tar -xvzf wsjtx-2.6.1.tgz

In the above command, the tar command is used to compress and decompress files. Here we are extracting the .tgz file with the options-xto specify we need to extract the from the file, -vto show information on every step taking place,-zto specify we are dealing with gzip file (the file is in tarball-gzip format) and finally-fto specify the filename to extract from. After extraction, a new folder will be created with the name wsjtx-2.6.1.

  1. Then, switch over to the new WSJT-X folder in Linux Mint using the following command:

cd wsjtx-2.6.1

  1. You will need a new folder to store all your build files are stored. You the following command to create a new folder and switch over to it:

mkdir build && cd build

  1. Use the following commands to build (compile) the files. This step will take some time to finish depending on your system specifications.

cmake -DWSJT_SKIP_MANPAGES=ON -DWSJT_GENERATE_DOCS=OFF ../wsjtx-2.6.1

  1. Once the above command finishes executing, use the command below toinstall WSJT-Xfrom the compiled files. This will install the build application inside the/usr/locallocation.

sudo cmake –build . –target install

  1. You can now finally launch the application from the start menu or the terminal by typing the following command:

wsjtx

Uninstalling WSJT-X is simple using the apt command. The syntax to remove WSJT-X from your Linux distro using the APT package manager is as under:

sudo apt remove wsjtx

If you have installed WSJT-X using flatpak, paste this command in the Terminal to uninstall the tool:

flatpak remove edu.princeton.physics.WSJTX

WSJT-X is a fantastic software built for radio enthusiasts, complete with all the tools at their disposal. They can tinker with all the knobs and bells in the software and learn about various communication modes. Moreover, don’t be afraid of breaking things, as you can always reinstall the tool using this guide. I hope this article helped you install WSJT-X on Linux Mint or any other distros. If you face any issues during installation, do let us know in the comments section.

Bringing the latest in technology, gaming, and entertainment is our superhero team of staff writers. They have a keen eye for latest stories, happenings, and even memes for tech enthusiasts.