Running Fldigi Flmsg and Flwrap on the Raspberry Pi 2

Compiling programs

This section will install the source libraries for Fldigi and download the source code to be compiled.

The steps consist of “configure” “make” and “make install.” These are repeatable if other programs in the Fldigi suite wish to be added and run on the Pi. Exact paths depend on the version downloaded and will vary for future versions.

These steps are also used to update to future releases. I recommend updating when possible because bugs are constantly being fixed and features added. Releases are published frequently.

The rest of this process takes about 45 minutes to complete on a Raspberry Pi 2 (with 4 cores). The earlier Raspberry Pis only have a single-core processor and takes MUCH longer to compile.

Sources

fldigi-pi-07_sources-01_apt-get_update

Connect via SSH to the Pi.

Update the repository archives by entering

sudo apt-get -y update

For a description of this command see the Updating Wheezy Raspbian section.

fldigi-pi-07_sources-02_apt-get_build-dep_fldigi

sudo apt-get -y build-dep fldigi

sudo: runs the package manager as the superuser to avoid any permission issues.
apt-get: is the name of the Debian package manager executable.
-y: with this option, apt-get automatically assumes the default answer to any apt-get prompts.
build-dep: download and install the dependent programs needed for Fldigi.
fldigi: the name of the package(s) to be installed.

[No Screenshot]

Install Iceweasel (FireFox) for Flmsg custom forms use.

sudo apt-get -y install iceweasel

For a description of this command see the Updating Wheezy Raspbian section.

fldigi-pi-07_sources-03_mkdir_sources

Create a temporary place to compile the programs by entering

mkdir -v /home/pi/sources/

fldigi-pi-07_sources-04_w1hkj_webpage

Connect via VNC to the Pi.

Open the Epiphany web browser.

Go to http://www.w1hkj.com/

Click the Source Forge link.

fldigi-pi-07_sources-05_source_forge_fldigi_project_page

Click the fldigi directory.

fldigi-pi-07_sources-06_source_forge_fldigi_directory

Click the fldigi-3.23.04.tar.gz filename. This file contains the source code. The file will download to /home/pi/Downloads.

fldigi-pi-07_sources-07_source_forge_fldigi_project_page

Go back to the SF project page.

Click the flmsg directory.

fldigi-pi-07_sources-08_source_forge_flmsg_directory

Click the flmsg-2.0.12.tar.gz filename. This file contains the source code. The file will download to /home/pi/Downloads.

fldigi-pi-07_sources-09_source_forge_fldigi_project_page

Go back to the SF project page.

Click the flwrap directory.

fldigi-pi-07_sources-10_source_forge_flwrap_directory

Click the flwrap-1.3.4.tar.gz filename. This file contains the source code. The file will download to /home/pi/Downloads.

fldigi-pi-07_sources-11_source_forge_fldigi_downloads

Source archives downloaded.