Last active
January 6, 2021 08:17
-
-
Save sam210723/09bfeb306639316ffb3d66fa18f36de1 to your computer and use it in GitHub Desktop.
GK-2A quick setup
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Install dependencies | |
sudo apt-get update | |
sudo apt-get -y upgrade | |
sudo apt-get -y install build-essential cmake zlib1g-dev libairspy-dev rtl-sdr librtlsdr-dev | |
sudo reboot | |
# Install goesrecv | |
cd ~ | |
git clone --recursive https://github.com/sam210723/goestools | |
cd goestools | |
mkdir build | |
cd build | |
cmake .. -DCMAKE_INSTALL_PREFIX=/usr/local | |
make | |
sudo make install | |
cd ~ | |
cp goestools/etc/goesrecv-coms-lrit.conf . | |
rm -rf goestools/ | |
goesrecv -i 1 -c goesrecv-coms-lrit.conf | |
# Setup xrit-rx | |
cd ~ | |
git clone https://github.com/sam210723/xrit-rx | |
cd xrit-rx | |
pip install pycryptodome jdcal | |
python3 xrit-rx.py |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment