<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	
	>
<channel>
	<title>
	Comments on: Using the Raspberry Pi as an RTL-SDR dongle Server	</title>
	<atom:link href="https://photobyte.org/using-the-raspberry-pi-as-an-rtl-sdr-dongle-server/feed/" rel="self" type="application/rss+xml" />
	<link>https://photobyte.org/using-the-raspberry-pi-as-an-rtl-sdr-dongle-server/</link>
	<description>Freelance Technical Author, Illustrator &#38; Photographer</description>
	<lastBuildDate>Thu, 30 May 2024 18:37:47 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.8.1</generator>
	<item>
		<title>
		By: Art		</title>
		<link>https://photobyte.org/using-the-raspberry-pi-as-an-rtl-sdr-dongle-server/#comment-508830</link>

		<dc:creator><![CDATA[Art]]></dc:creator>
		<pubDate>Thu, 30 May 2024 18:37:47 +0000</pubDate>
		<guid isPermaLink="false">https://photobyte.org/?p=697#comment-508830</guid>

					<description><![CDATA[These instructions are great.

However the git command needs to be edited, this works: 
git clone https://gitea.osmocom.org/sdr/rtl-sdr.git

I just got a Nooelec v5 and it is up and working.

This is the same &quot;Art&quot; that posted the comment in September 2016.]]></description>
			<content:encoded><![CDATA[<p>These instructions are great.</p>
<p>However the git command needs to be edited, this works:<br />
git clone <a href="https://gitea.osmocom.org/sdr/rtl-sdr.git" rel="nofollow ugc">https://gitea.osmocom.org/sdr/rtl-sdr.git</a></p>
<p>I just got a Nooelec v5 and it is up and working.</p>
<p>This is the same &#8220;Art&#8221; that posted the comment in September 2016.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Mike Richards		</title>
		<link>https://photobyte.org/using-the-raspberry-pi-as-an-rtl-sdr-dongle-server/#comment-356543</link>

		<dc:creator><![CDATA[Mike Richards]]></dc:creator>
		<pubDate>Mon, 20 Jun 2022 09:46:45 +0000</pubDate>
		<guid isPermaLink="false">https://photobyte.org/?p=697#comment-356543</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://photobyte.org/using-the-raspberry-pi-as-an-rtl-sdr-dongle-server/#comment-355593&quot;&gt;Iain&lt;/a&gt;.

Hi Iain,

Pleased to hear it worked well for you. Thanks for taking the time to let me know.

Mike - G4WNC]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://photobyte.org/using-the-raspberry-pi-as-an-rtl-sdr-dongle-server/#comment-355593">Iain</a>.</p>
<p>Hi Iain,</p>
<p>Pleased to hear it worked well for you. Thanks for taking the time to let me know.</p>
<p>Mike &#8211; G4WNC</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Iain		</title>
		<link>https://photobyte.org/using-the-raspberry-pi-as-an-rtl-sdr-dongle-server/#comment-355593</link>

		<dc:creator><![CDATA[Iain]]></dc:creator>
		<pubDate>Sun, 19 Jun 2022 08:10:14 +0000</pubDate>
		<guid isPermaLink="false">https://photobyte.org/?p=697#comment-355593</guid>

					<description><![CDATA[Hi Mike,

Thanks for all this information, just set up and sdr server as per your instructions and it worked first time! 

Keep doing all the good work]]></description>
			<content:encoded><![CDATA[<p>Hi Mike,</p>
<p>Thanks for all this information, just set up and sdr server as per your instructions and it worked first time! </p>
<p>Keep doing all the good work</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Mike Richards		</title>
		<link>https://photobyte.org/using-the-raspberry-pi-as-an-rtl-sdr-dongle-server/#comment-293473</link>

		<dc:creator><![CDATA[Mike Richards]]></dc:creator>
		<pubDate>Sun, 30 Jan 2022 12:34:18 +0000</pubDate>
		<guid isPermaLink="false">https://photobyte.org/?p=697#comment-293473</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://photobyte.org/using-the-raspberry-pi-as-an-rtl-sdr-dongle-server/#comment-292928&quot;&gt;Ferry PD9FER&lt;/a&gt;.

Hi Ferry,

Look carefully at my instructions; you have two errors in your script:
1 - The sleep 15 statement should be immediately after the line: #Print the IP address
2 - The line that runs the server (/usr/local/bin/rtl_tcp -a $_IP&amp;) should be before the line containing fi
Here&#039;s an example of how it should look:

# Print the IP address
sleep 15
_IP=$(hostname -I) &#124;&#124; true
if [ “$_IP” ]; then
printf “My IP address is %s\n” “$_IP”
/usr/local/bin/rtl_tcp -a $_IP &amp;
fi

exit 0]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://photobyte.org/using-the-raspberry-pi-as-an-rtl-sdr-dongle-server/#comment-292928">Ferry PD9FER</a>.</p>
<p>Hi Ferry,</p>
<p>Look carefully at my instructions; you have two errors in your script:<br />
1 &#8211; The sleep 15 statement should be immediately after the line: #Print the IP address<br />
2 &#8211; The line that runs the server (/usr/local/bin/rtl_tcp -a $_IP&#038;) should be before the line containing fi<br />
Here&#8217;s an example of how it should look:</p>
<p># Print the IP address<br />
sleep 15<br />
_IP=$(hostname -I) || true<br />
if [ “$_IP” ]; then<br />
printf “My IP address is %s\n” “$_IP”<br />
/usr/local/bin/rtl_tcp -a $_IP &#038;<br />
fi</p>
<p>exit 0</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Ferry PD9FER		</title>
		<link>https://photobyte.org/using-the-raspberry-pi-as-an-rtl-sdr-dongle-server/#comment-292928</link>

		<dc:creator><![CDATA[Ferry PD9FER]]></dc:creator>
		<pubDate>Thu, 27 Jan 2022 21:52:39 +0000</pubDate>
		<guid isPermaLink="false">https://photobyte.org/?p=697#comment-292928</guid>

					<description><![CDATA[Don&#039;t know whats going on

Running from the cmd line it works fine.
But running via rc.local I can&#039;t connect.

#!/bin/sh -e
# rc.local
#
# This script is executed at the end of each multiuser runlevel.
# Make sure that the script will &quot;exit 0&quot; on success or any other
# value on error.
#
# In order to enable or disable this script just change the execution
# bits.
#
# By default this script does nothing.

# Print the IP address
_IP=$(hostname -I) &#124;&#124; true
if [ &quot;$_IP&quot; ]; then
  printf &quot;My IP address is %s\n&quot; &quot;$_IP&quot;
fi

sleep 15
/usr/local/bin/rtl_tcp -a $_IP &#038;

exit 0


Any idea&#039;s?

73, Ferry PD9FER]]></description>
			<content:encoded><![CDATA[<p>Don&#8217;t know whats going on</p>
<p>Running from the cmd line it works fine.<br />
But running via rc.local I can&#8217;t connect.</p>
<p>#!/bin/sh -e<br />
# rc.local<br />
#<br />
# This script is executed at the end of each multiuser runlevel.<br />
# Make sure that the script will &#8220;exit 0&#8221; on success or any other<br />
# value on error.<br />
#<br />
# In order to enable or disable this script just change the execution<br />
# bits.<br />
#<br />
# By default this script does nothing.</p>
<p># Print the IP address<br />
_IP=$(hostname -I) || true<br />
if [ &#8220;$_IP&#8221; ]; then<br />
  printf &#8220;My IP address is %s\n&#8221; &#8220;$_IP&#8221;<br />
fi</p>
<p>sleep 15<br />
/usr/local/bin/rtl_tcp -a $_IP &amp;</p>
<p>exit 0</p>
<p>Any idea&#8217;s?</p>
<p>73, Ferry PD9FER</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Mike Richards		</title>
		<link>https://photobyte.org/using-the-raspberry-pi-as-an-rtl-sdr-dongle-server/#comment-252249</link>

		<dc:creator><![CDATA[Mike Richards]]></dc:creator>
		<pubDate>Sun, 17 Oct 2021 11:42:51 +0000</pubDate>
		<guid isPermaLink="false">https://photobyte.org/?p=697#comment-252249</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://photobyte.org/using-the-raspberry-pi-as-an-rtl-sdr-dongle-server/#comment-252241&quot;&gt;Ben&lt;/a&gt;.

Ben,

The final message reports that it&#039;s listening on 192.168.0.25, so it all looks fine. I suspect the problem is connected with how you&#039;re accessing the dongle.

Here&#039;s what you should be doing:

** Run SDR Sharp on another PC on the same local network.
** In the Sources box select RTL-SDR TCP
** Go to the cogs icon at the top and enter the Pi IP address in the host box (192.168.0.25)
** The Port box will probably already be set to 1234 but, if not, correct it
** Click the Play arrow at the top and the receiver should start
** It will probably be very deaf, so go to the cogs icon again and move the RF gain slider till you start hearing signals. Don&#039;t push this too far or you&#039;ll cause overload.

NB: Ideally the PC and the Pi should be using wired Ethernet unless you have a particularly good local WI-Fi system. The dongle needs to be able to send a 32Mb/s continuous data stream and few Wi-Fi systems can manage that reliably.

Hope that helps,

Regards,

Mike - G4WNC]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://photobyte.org/using-the-raspberry-pi-as-an-rtl-sdr-dongle-server/#comment-252241">Ben</a>.</p>
<p>Ben,</p>
<p>The final message reports that it&#8217;s listening on 192.168.0.25, so it all looks fine. I suspect the problem is connected with how you&#8217;re accessing the dongle.</p>
<p>Here&#8217;s what you should be doing:</p>
<p>** Run SDR Sharp on another PC on the same local network.<br />
** In the Sources box select RTL-SDR TCP<br />
** Go to the cogs icon at the top and enter the Pi IP address in the host box (192.168.0.25)<br />
** The Port box will probably already be set to 1234 but, if not, correct it<br />
** Click the Play arrow at the top and the receiver should start<br />
** It will probably be very deaf, so go to the cogs icon again and move the RF gain slider till you start hearing signals. Don&#8217;t push this too far or you&#8217;ll cause overload.</p>
<p>NB: Ideally the PC and the Pi should be using wired Ethernet unless you have a particularly good local WI-Fi system. The dongle needs to be able to send a 32Mb/s continuous data stream and few Wi-Fi systems can manage that reliably.</p>
<p>Hope that helps,</p>
<p>Regards,</p>
<p>Mike &#8211; G4WNC</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Ben		</title>
		<link>https://photobyte.org/using-the-raspberry-pi-as-an-rtl-sdr-dongle-server/#comment-252241</link>

		<dc:creator><![CDATA[Ben]]></dc:creator>
		<pubDate>Sun, 17 Oct 2021 11:24:14 +0000</pubDate>
		<guid isPermaLink="false">https://photobyte.org/?p=697#comment-252241</guid>

					<description><![CDATA[pi@raspberrypi:~ $ rtl_test -t
Found 1 device(s):
  0:  Realtek, RTL2838UHIDIR, SN: 00000001

Using device 0: Generic RTL2832U OEM
Found Rafael Micro R820T tuner
Supported gain values (29): 0.0 0.9 1.4 2.7 3.7 7.7 8.7 12.5 14.4 15.7 16.6 19.7 20.7 22.9 25.4 28.0 29.7 32.8 33.8 36.4 37.2 38.6 40.2 42.1 43.4 43.9 44.5 48.0 49.6 
[R82XX] PLL not locked!
Sampling at 2048000 S/s.
No E4000 tuner found, aborting.
pi@raspberrypi:~ $ rtl_tcp -a 192.168.0.25
Found 1 device(s):
  0:  Realtek, RTL2838UHIDIR, SN: 00000001

Using device 0: Generic RTL2832U OEM
Found Rafael Micro R820T tuner
[R82XX] PLL not locked!
Tuned to 100000000 Hz.
listening...
Use the device argument &#039;rtl_tcp=192.168.0.25:1234&#039; in OsmoSDR (gr-osmosdr) source
to receive samples in GRC and control rtl_tcp parameters (frequency, gain, ...).


Can&#039;t get it to work still]]></description>
			<content:encoded><![CDATA[<p>pi@raspberrypi:~ $ rtl_test -t<br />
Found 1 device(s):<br />
  0:  Realtek, RTL2838UHIDIR, SN: 00000001</p>
<p>Using device 0: Generic RTL2832U OEM<br />
Found Rafael Micro R820T tuner<br />
Supported gain values (29): 0.0 0.9 1.4 2.7 3.7 7.7 8.7 12.5 14.4 15.7 16.6 19.7 20.7 22.9 25.4 28.0 29.7 32.8 33.8 36.4 37.2 38.6 40.2 42.1 43.4 43.9 44.5 48.0 49.6<br />
[R82XX] PLL not locked!<br />
Sampling at 2048000 S/s.<br />
No E4000 tuner found, aborting.<br />
pi@raspberrypi:~ $ rtl_tcp -a 192.168.0.25<br />
Found 1 device(s):<br />
  0:  Realtek, RTL2838UHIDIR, SN: 00000001</p>
<p>Using device 0: Generic RTL2832U OEM<br />
Found Rafael Micro R820T tuner<br />
[R82XX] PLL not locked!<br />
Tuned to 100000000 Hz.<br />
listening&#8230;<br />
Use the device argument &#8216;rtl_tcp=192.168.0.25:1234&#8217; in OsmoSDR (gr-osmosdr) source<br />
to receive samples in GRC and control rtl_tcp parameters (frequency, gain, &#8230;).</p>
<p>Can&#8217;t get it to work still</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Mike Richards		</title>
		<link>https://photobyte.org/using-the-raspberry-pi-as-an-rtl-sdr-dongle-server/#comment-252240</link>

		<dc:creator><![CDATA[Mike Richards]]></dc:creator>
		<pubDate>Sun, 17 Oct 2021 11:10:45 +0000</pubDate>
		<guid isPermaLink="false">https://photobyte.org/?p=697#comment-252240</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://photobyte.org/using-the-raspberry-pi-as-an-rtl-sdr-dongle-server/#comment-252233&quot;&gt;Ben&lt;/a&gt;.

Hi Ben,

I think you&#039;ve now spotted that you missed the space in the cmake command.  Spaces are difficult to show reliably as it depends how your browser renders the page and what size screen you&#039;re using. 
The message you&#039;re getting from rtl_test -t is correct. The aborting message is normal. It occurs because the test program checks to see if your dongle uses an R820T or E4000 tuner. When it finds a tuner it reports the details and then aborts when the alternative tuner is not found. You should be all running now.

Regards,


Mike]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://photobyte.org/using-the-raspberry-pi-as-an-rtl-sdr-dongle-server/#comment-252233">Ben</a>.</p>
<p>Hi Ben,</p>
<p>I think you&#8217;ve now spotted that you missed the space in the cmake command.  Spaces are difficult to show reliably as it depends how your browser renders the page and what size screen you&#8217;re using.<br />
The message you&#8217;re getting from rtl_test -t is correct. The aborting message is normal. It occurs because the test program checks to see if your dongle uses an R820T or E4000 tuner. When it finds a tuner it reports the details and then aborts when the alternative tuner is not found. You should be all running now.</p>
<p>Regards,</p>
<p>Mike</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Ben		</title>
		<link>https://photobyte.org/using-the-raspberry-pi-as-an-rtl-sdr-dongle-server/#comment-252233</link>

		<dc:creator><![CDATA[Ben]]></dc:creator>
		<pubDate>Sun, 17 Oct 2021 10:54:02 +0000</pubDate>
		<guid isPermaLink="false">https://photobyte.org/?p=697#comment-252233</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://photobyte.org/using-the-raspberry-pi-as-an-rtl-sdr-dongle-server/#comment-29405&quot;&gt;Mike Richards&lt;/a&gt;.

Mine does the same

Using device 0: Generic RTL2832U OEM
Found Rafael Micro R820T tuner
Supported gain values (29): 0.0 0.9 1.4 2.7 3.7 7.7 8.7 12.5 14.4 15.7 16.6 19.7 20.7 22.9 25.4 28.0 29.7 32.8 33.8 36.4 37.2 38.6 40.2 42.1 43.4 43.9 44.5 48.0 49.6
[R82XX] PLL not locked!
No E4000 tuner found, aborting

I ran RTL_test-t from the terminal session as per the guide.]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://photobyte.org/using-the-raspberry-pi-as-an-rtl-sdr-dongle-server/#comment-29405">Mike Richards</a>.</p>
<p>Mine does the same</p>
<p>Using device 0: Generic RTL2832U OEM<br />
Found Rafael Micro R820T tuner<br />
Supported gain values (29): 0.0 0.9 1.4 2.7 3.7 7.7 8.7 12.5 14.4 15.7 16.6 19.7 20.7 22.9 25.4 28.0 29.7 32.8 33.8 36.4 37.2 38.6 40.2 42.1 43.4 43.9 44.5 48.0 49.6<br />
[R82XX] PLL not locked!<br />
No E4000 tuner found, aborting</p>
<p>I ran RTL_test-t from the terminal session as per the guide.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Ben		</title>
		<link>https://photobyte.org/using-the-raspberry-pi-as-an-rtl-sdr-dongle-server/#comment-252216</link>

		<dc:creator><![CDATA[Ben]]></dc:creator>
		<pubDate>Sun, 17 Oct 2021 10:05:35 +0000</pubDate>
		<guid isPermaLink="false">https://photobyte.org/?p=697#comment-252216</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://photobyte.org/using-the-raspberry-pi-as-an-rtl-sdr-dongle-server/#comment-252215&quot;&gt;Ben&lt;/a&gt;.

My bad

cmake ../ -DINSTALL_UDEV_RULES=ON

should have been

cmake  ../  -DINSTALL_UDEV_RULES=ON]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://photobyte.org/using-the-raspberry-pi-as-an-rtl-sdr-dongle-server/#comment-252215">Ben</a>.</p>
<p>My bad</p>
<p>cmake ../ -DINSTALL_UDEV_RULES=ON</p>
<p>should have been</p>
<p>cmake  ../  -DINSTALL_UDEV_RULES=ON</p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>

<!--
Performance optimized by W3 Total Cache. Learn more: https://www.boldgrid.com/w3-total-cache/

Page Caching using Disk: Enhanced 

Served from: photobyte.org @ 2025-06-30 19:55:59 by W3 Total Cache
-->