I’m using Raspbian as it have full support for Raspberry PI, simple package manager and it’s pretty stable
sudo apt update
sudo apt install git
cd $HOME
git clone https://github.com/reynico/raspberry-noaa.git
cd raspberry-noaa
./install.sh
. You will be asked for your ground station lat/lon position.This is pretty much the entire setup. If you are interested about the behind of scenes please check the following section
sudo apt update -yq
sudo apt install -yq predict \
python-setuptools \
ntp \
cmake \
libusb-1.0 \
sox \
at \
bc \
nginx \
libncurses5-dev \
libncursesw5-dev \
libatlas-base-dev \
python3-pip \
imagemagick \
libxft-dev \
libxft2
sudo pip3 install numpy ephem tweepy Pillow
sudo cp templates/modprobe.d/rtlsdr.conf /etc/modprobe.d/rtlsdr.conf
cd /tmp/
git clone https://github.com/osmocom/rtl-sdr.git
cd rtl-sdr/
mkdir build
cd build
cmake ../ -DINSTALL_UDEV_RULES=ON -DDETACH_KERNEL_DRIVER=ON
make
sudo make install
sudo ldconfig
cd /tmp/
sudo cp ./rtl-sdr/rtl-sdr.rules /etc/udev/rules.d/
There’s a deb package for it
sudo dpkg -i software/wxtoimg-armhf-2.11.2-beta.deb
cd $HOME
git clone https://github.com/reynico/raspberry-noaa.git
cd raspberry-noaa
cp "templates/noaa.conf" "$HOME/.noaa.conf"
cp "templates/predict.qth" "$HOME/.predict/predict.qth"
cp "templates/wxtoimgrc" "$HOME/.wxtoimgrc"
Don’t forget to adjust your settings in those files
git clone https://github.com/dbdexter-dev/meteor_demod.git
cd meteor_demod
make
sudo make install
cd ..
sudo cp software/medet_arm /usr/bin/medet_arm
sudo chmod +x /usr/bin/medet_arm
sudo cp templates/nginx.cfg /etc/nginx/sites-enabled/default
sudo mkdir -p /var/www/wx
sudo chown -R www-data:www-data /var/www/wx
sudo usermod -a -G www-data pi
sudo chmod 775 /var/www/wx
sudo cp templates/index.html /var/www/wx/index.html
sudo cp templates/logo-small.png /var/www/wx/logo-small.png
sudo systemctl restart nginx
sudo mkdir -p /var/ramfs
cat templates/fstab | sudo tee -a /etc/fstab > /dev/null
sudo mount -a
sudo chmod 777 /var/ramfs
cat <(crontab -l) <(echo "1 0 * * * /home/pi/raspberry-noaa/schedule.sh") | crontab -
cp "templates/tweepy.conf" "$HOME/.tweepy.conf"
"$HOME/.tweepy.conf"
export CONSUMER_KEY = ''
export CONSUMER_SECRET = ''
export ACCESS_TOKEN_KEY = ''
export ACCESS_TOKEN_SECRET = ''