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

35 lines
636 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 rtl_fm &>/dev/null
sudo killall -9 CubicSDR &>/dev/null
sudo killall -9 qsstv &>/dev/null
sudo systemctl stop rtl_tcp
sudo systemctl restart openwebrx
chromium-browser --check-for-update-interval=1 --simulate-critical-update --noerrdialogs --disable-infobars http://127.0.0.1:8073 &>/dev/null &
$SHELL

Powered by TurnKey Linux.