Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
tools:gqrx [2021/06/15 01:37] – [RPi] darrontools: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.
  
-==Install==+===Binaries===
  
 <code> <code>
-sudo apt-get install gqrx-sdr +sudo apt-get install gqrx-sdr xterm wmaker wmaker-data wmaker-utils tightvncserver
-sudo apt-get install xterm wmaker tightvncserver+
 </code> </code>
  
-==Run==+===Script=== 
 + 
 +vi ~/bin/GQRX
  
 <code> <code>
 +#! /bin/sh
 sudo /etc/init.d/dbus start sudo /etc/init.d/dbus start
-/usr/bin/pulseaudio & +/usr/bin/pulseaudio --start 
-gqrx+/usr/bin/gqrx -e 
 +/usr/bin/pulseaudio --kill 
 +sudo /etc/init.d/dbus stop
 </code> </code>
 +
 +chmod +x ~/bin/GQRX
 +
 +===VNC server===
 +
 +==Configure password==
 +
 +<code>
 +vncpasswd
 +</code>
 +
 +==Configure server==
 +
 +vi ~/.vnc/xstartup
 +
 +<code>
 +#! /bin/sh
 +export XKL_XMODMAP_DISABLE=1
 +exec wmaker
 +</code>
 +
 +chmod +x ~/.vnc/xstartup
 +
 +==Start server==
 +
 +<code>
 +vncserver -geometry 1542x768
 +</code>
 +
 +===VNC client===
 +
 +Connect to server using your client application.
 +
 +==Xterm==
 +
 +<code>
 +~/bin/GQRX
 +</code>
 +