Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
tools:gqrx [2021/06/15 01:21] – [RPi] darron | tools:gqrx [2021/06/16 11:27] (current) – [Script] darron | ||
---|---|---|---|
Line 1: | Line 1: | ||
====GQRX SDR==== | ====GQRX SDR==== | ||
- | ===RPi=== | + | For this setup we install gqrx on debian and access it remotely using vnc. |
- | ==Simple install== | + | ===Binaries=== |
< | < | ||
- | sudo apt-get install gqrx-sdr | + | sudo apt-get install gqrx-sdr |
+ | </ | ||
+ | |||
+ | ===Script=== | ||
+ | |||
+ | vi ~/ | ||
+ | |||
+ | < | ||
+ | #! /bin/sh | ||
sudo / | sudo / | ||
- | / | + | / |
- | gqrx | + | /usr/bin/gqrx -e |
+ | / | ||
+ | sudo / | ||
</ | </ | ||
+ | chmod +x ~/bin/GQRX | ||
+ | |||
+ | ===VNC server=== | ||
+ | |||
+ | ==Configure password== | ||
+ | |||
+ | < | ||
+ | vncpasswd | ||
+ | </ | ||
+ | |||
+ | ==Configure server== | ||
+ | |||
+ | vi ~/ | ||
+ | |||
+ | < | ||
+ | #! /bin/sh | ||
+ | export XKL_XMODMAP_DISABLE=1 | ||
+ | exec wmaker | ||
+ | </ | ||
+ | |||
+ | chmod +x ~/ | ||
+ | |||
+ | ==Start server== | ||
+ | |||
+ | < | ||
+ | vncserver -geometry 1542x768 | ||
+ | </ | ||
+ | |||
+ | ===VNC client=== | ||
+ | |||
+ | Connect to server using your client application. | ||
+ | |||
+ | ==Xterm== | ||
+ | |||
+ | < | ||
+ | ~/bin/GQRX | ||
+ | </ | ||