This tutorial will show you how to install fldigi, a program for controlling amateur radio transceivers.
These instructions have been compiled from instructions given at:
http://www.psychocats.net/ubuntu/installingsoftware
http://www.w1hkj.com/FldigiHelp-1.3/Installing.html
The download location given is not guaranteed to be the newest version of each piece of software but they should work together. Search if you want to make sure you have the most up to date version!
First we will install hamlib:
Download the archive here.
Now in the terminal:
Code:
sudo aptitude update
If you do not have build essential installed then use this:
Code:
sudo aptitude install build-essential
Now navigate to the location of the downloaded archive, then
Code:
tar -xvzf hamlib-1.2.6.1.tar.gz
cd hamlib-1.2.6.1
./configure
make
sudo make install
I prefer to use checkinstall which you can get with:
Code:
sudo aptitude install checkinstall
Then replace
with
Code:
sudo checkinstall -D
Next we will install FLTK:
Download FLTK here.
Now navigate to the location of the downloaded archive.
Now in the terminal:
Code:
tar -xvzf fltk-1.1.7-source.tar.gz
cd fltk-1.1.7-source
./configure --enable-threads --enable-xft --enable-localjpeg --enable-localpng --enable-localzlib
make
then
or
Code:
sudo checkinstall -D
Now for fldigi, download here.
Navigate to the location of the archive.
In the terminal:
Code:
tar -xvzf fldigi-1.32.src.tar.gz
cd fldigi-1.32.src
make CFG=Release
Now we need to move the binary file to the bin. Be sure to replace "extractionlocation" with the location that you downloaded the archive to.
Code:
sudo mv extractionlocation/fldigi-1.32.src/Release/fldigi /bin
Now you should be able to run the program by:
Errors I had and how to fix them:
While trying to install FTLK the first time I got this error
Code:
checking for X... no
configure: error: Configure could not find required X11 libraries
./configure: line 8268: exit: aborting.: numeric argument required
./configure: line 8268: exit: aborting.: numeric argument required
To fix this I had to install xorg-dev by searching in synaptic and installing it.
I received this error when trying to run fldigi the first time
Code:
fldigi: error while loading shared libraries: libhamlib.so.2: cannot open shared object file: No such file or directory
This is what fixed it
Code:
sudo apt-get install --reinstall libhamlib2
To configure fldigi the first time you run it try the instructions given here.
If you have problems or find errors in this tutorial, post them here and I or someone else can try to help.
Good luck!
Bookmarks