Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Noob Needs Step by Step Install Directions #104

Open
KE8AFF opened this issue Mar 6, 2023 · 1 comment
Open

Noob Needs Step by Step Install Directions #104

KE8AFF opened this issue Mar 6, 2023 · 1 comment

Comments

@KE8AFF
Copy link

KE8AFF commented Mar 6, 2023

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?

@Nocoderactually
Copy link

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`

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants