raspberry-rtlsdr-server
raspberry-rtlsdr-server copied to clipboard
RTL SDR Server fails on Status check
Any ideas?
Hi,
Did you have your OS version and distribution ?
Running Raspberry Pi OS 6.1.21-V7+ on a Raspberry Pi Zero 2W
On Sat, Feb 3, 2024 at 11:33 AM Brosseau Valentin @.***> wrote:
Hi,
Did you have your OS version and distribution ?
— Reply to this email directly, view it on GitHub https://github.com/c4software/raspberry-rtlsdr-server/issues/3#issuecomment-1925377493, or unsubscribe https://github.com/notifications/unsubscribe-auth/BF3H5KFFKYV2ZZTBKMSSBFLYRZRF7AVCNFSM6AAAAABCYEKR4OVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMYTSMRVGM3TONBZGM . You are receiving this because you authored the thread.Message ID: @.***>
I'm not a programmer, just a tinkerer...
On Sat, Feb 3, 2024 at 11:33 AM Brosseau Valentin @.***> wrote:
Hi,
Did you have your OS version and distribution ?
— Reply to this email directly, view it on GitHub https://github.com/c4software/raspberry-rtlsdr-server/issues/3#issuecomment-1925377493, or unsubscribe https://github.com/notifications/unsubscribe-auth/BF3H5KFFKYV2ZZTBKMSSBFLYRZRF7AVCNFSM6AAAAABCYEKR4OVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMYTSMRVGM3TONBZGM . You are receiving this because you authored the thread.Message ID: @.***>
Here is the OS for the Zero 2W using Raspberry Pi Imager
On Sat, Feb 3, 2024 at 11:33 AM Brosseau Valentin @.***> wrote:
Hi,
Did you have your OS version and distribution ?
— Reply to this email directly, view it on GitHub https://github.com/c4software/raspberry-rtlsdr-server/issues/3#issuecomment-1925377493, or unsubscribe https://github.com/notifications/unsubscribe-auth/BF3H5KFFKYV2ZZTBKMSSBFLYRZRF7AVCNFSM6AAAAABCYEKR4OVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMYTSMRVGM3TONBZGM . You are receiving this because you authored the thread.Message ID: @.***>
Hi, I've had the same symptoms and solved it by modifying the rtlsdr.service file.
`[Service] ExecStart=/bin/sh -c "rtl_tcp -a $(hostname -I) -p PORTNUM"
WorkingDirectory=/home/USERNAME
StandardOutput=inherit
StandardError=inherit
Restart=always
RestartSec=3`
Remove usr/bin from the first line check the home directory with PWD command and change the USERNAME field also, Input RestartSec=3 to the last [Service] line
If your symptoms are the same as mine, you can fix them with some modifications.
Thanks for the tip!...I'll give it a try...Jim
On Tue, Feb 27, 2024 at 11:44 PM DaLae37 @.***> wrote:
Hi, I've had the same symptoms and solved it by modifying the rtlsdr.service file.
[Service] ExecStart=/bin/sh -c "rtl_tcp -a $(hostname -I) -p PORTNUM" WorkingDirectory=/home/USERNAME StandardOutput=inherit StandardError=inherit Restart=always RestartSec=3
Remove usr/bin from the first line check the home directory with PWD command and change the USERNAME field also, Input RestartSec=3 to the last [Service] line
If your symptoms are the same as mine, you can fix them with some modifications.
— Reply to this email directly, view it on GitHub https://github.com/c4software/raspberry-rtlsdr-server/issues/3#issuecomment-1968219883, or unsubscribe https://github.com/notifications/unsubscribe-auth/BF3H5KERDRONEZ6ORQO675DYV2Y3TAVCNFSM6AAAAABCYEKR4OVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMYTSNRYGIYTSOBYGM . You are receiving this because you authored the thread.Message ID: @.***>
Thanks this worked for me also adjusting the service.