Basic steps to get the server up and running on a Raspberry Pi with 2019-09-26-raspbian-buster-lite
Install OS, go through raspi-setup and set password, hostname, locale, time-zone, etc. Update all the things:
$ sudo apt-get update && sudo apt-get upgrade -y
Install Git and GoLang
$ sudo apt-get install git golang rtl-sdr
Add /home/pi/go to the path in .profile and source it
Install RTLAMR pieces
$ go get github.com/bemasher/rtlamr
$ go get github.com/bemasher/rtlamr-collect
To autostart everything, copy below files into /etc/systemd/system/
and update params as needed
$ sudo systemctl daemon-reload
$ sudo systemctl start rtl-tcp rtlamr-collect
Check /var/log/daemon.log
for status
If everything looks good, set up the Pi to load those services on reboot
$ sudo systemctl enable rtl-tcp rtlamr-collect