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 02:19] – [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>
  
-==VNC server==+===Script===
  
-Configure password+vi ~/bin/GQRX 
 + 
 +<code> 
 +#! /bin/sh 
 +sudo /etc/init.d/dbus start 
 +/usr/bin/pulseaudio --start 
 +/usr/bin/gqrx -e 
 +/usr/bin/pulseaudio --kill 
 +sudo /etc/init.d/dbus stop 
 +</code> 
 + 
 +chmod +x ~/bin/GQRX 
 + 
 +===VNC server=== 
 + 
 +==Configure password==
  
 <code> <code>
Line 18: Line 32:
 </code> </code>
  
-Configure server+==Configure server==
  
-.vnc/xstartup:+vi ~/.vnc/xstartup
  
 <code> <code>
Line 28: Line 42:
 </code> </code>
  
-Start server+chmod +x ~/.vnc/xstartup 
 + 
 +==Start server==
  
 <code> <code>
-vncserver -geometry 1368x768+vncserver -geometry 1542x768
 </code> </code>
  
-==VNC terminal==+===VNC client===
  
-<code>+Connect to server using your client application.
  
-sudo /etc/init.d/dbus start +==Xterm== 
-/usr/bin/pulseaudio --daemon + 
-gqrx+<code> 
 +~/bin/GQRX
 </code> </code>
 +