Differences

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

Link to this comparison view

Next revision
Previous revision
tools:gqrx [2021/06/14 23:52] – external edit 127.0.0.1tools: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===
  
 <code> <code>
-wget https://github.com/csete/gqrx/releases/download/v2.11.5/gqrx-sdr-2.11.5-linux-rpi3.tar.xz +sudo apt-get install gqrx-sdr xterm wmaker wmaker-data wmaker-utils tightvncserver 
-unxz gqrx-sdr-2.11.5-linux-rpi3.tar.xz +</code> 
-tar xvf gqrx-sdr-2.11.5-linux-rpi3.tar+ 
 +===Script=== 
 + 
 +vi ~/bin/GQRX 
 + 
 +<code> 
 +#! /bin/sh 
 +sudo /etc/init.d/dbus start 
 +/usr/bin/pulseaudio --start 
 +/usr/bin/gqrx -
 +/usr/bin/pulseaudio --kill 
 +sudo /etc/init.d/dbus stop 
 +</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> </code>
  
-Perform operations in readme.txt