Okay, I have a VM with MX Linux 19, so hopefully you have the same, just went through the steps and build the software. Seemed pretty straight forward, no issues for me, so I made a step by step guide, you should hopefully be able to use it to get it working like I did. I'm also assuming you were using acarsdec from
GitHub - TLeconte/acarsdec: ACARS SDR decoder
Just copy all of step one code and run it, then copy steps 2 and 3 line by line and copy and paste them into your terminal.
step 1
install all requirements, if using SDRPlay, probably install the API from the official website first if building for that, don't have one, can't test it
Code:
sudo apt install build-essential git cmake libusb-1.0-0-dev librtlsdr-dev gr-osmosdr librtlsdr0 libairspy-dev libairspyhf-dev libairspyhf1 libairspy0 zlib1g-dev libxml2-dev
step 2 (optional, but you may want it)
install libacars for decoding ATS applications
Code:
git clone https://github.com/szpajder/libacars
cd libacars
mkdir build
cd build
cmake ../
make
sudo make install
sudo ldconfig
step 3 (clone and make acarsdec, delete previous attempt directory first)
Code:
step 3 (clone and make acarsdec, delete previous attempt directory first)
cd ~
git clone https://github.com/TLeconte/acarsdec
cd acarsdec
mkdir build
cd build
//pick one of the below//
//if building for rtlsdr//
cmake .. -Drtl=ON
//if building for airspy
cmake .. -Dairspy=ON
//if making for sdrplay (need to install api first, not handled here)
cmake .. -Dsdrplay=ONcmake .. -Dsdrplay=ON
//now finish up and viola
make
sudo make install
Hopefully that will get you up and going.
![Screenshot_MX Linux SDR [Running] - Oracle VM VirtualBox_1.png Screenshot_MX Linux SDR [Running] - Oracle VM VirtualBox_1.png](http://forums.radioreference.com/data/attachments/86/86522-aac1d7d5698a5506dd4cdac19ae53a1b.jpg)