acarsdec icon indicating copy to clipboard operation
acarsdec copied to clipboard

Noob Needs Step by Step Install Directions

Open KE8AFF opened this issue 1 year ago • 1 comments

First off, Im sorry for asking, but Im a noob when it comes to linux based anything ( i know some of the basics, just enough to get my into trouble).... I have tried to get acars dec running on a Rpi 4 and have yet to get it working. Is anyone aware of a STEP-by STEP, spoon feed it to me, copy and paste it into the ssh terminal window and hit enter, set of setup instructions for acarsdec?

KE8AFF avatar Mar 06 '23 00:03 KE8AFF

as explained here [https://www.youtube.com/watch?v=Tv-AmF3BEPc] by Tall Paul Tech here is the step by step instructable:

`Install rtl_tcp

sudo bash apt-get update apt-get install cmake -y apt-get install git -y apt-get install libusb-1.0-0.dev -y git clone git://git.osmocom.org/rtl-sdr.git cd rtl-sdr/ mkdir build cd build/ cmake ../ -DDETACH_KERNEL_DRIVER=ON -DINSTALL_UDEV_RULES=ON make make install ldconfig

Install libacars

wget https://github.com/szpajder/libacars/... unzip master.zip cd libacars-master/ mkdir build cd build cmake .. make make install cd ../.. rm master.zip

Install acarsdec

wget https://github.com/TLeconte/acarsdec/... unzip master.zip cd acarsdec-master/ mkdir build cd build/ cmake .. -Drtl=ON make make install cd ../.. rm master.zip ldconfig

Run it

acarsdec -r 0 131.55`

Nocoderactually avatar Dec 04 '23 19:12 Nocoderactually