You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
CubeSatSim/groundstation/sdr.sh

31 lines
516 B

#!/bin/bash
# script to run OpenWebRX SDR
echo "Script to run Web SDR for ARISS Radio Pi"
echo
ip=$(hostname -I|cut -f1 -d ' ')
echo "IP Address to use in web browsers is: $ip:8073"
echo
ssid=$(iwgetid -r)
echo "Note: you need to be on the Wifi network: $ssid"
echo
sudo killall -9 java &>/dev/null
sudo killall -9 CubicSDR &>/dev/null
sudo systemctl stop rtl_tcp
sudo systemctl restart openwebrx
/usr/bin/chromium-browser --noerrdialogs --disable-infobars http://localhost:8073 &>/dev/null &
$SHELL

Powered by TurnKey Linux.