{"id":42877518,"url":"https://github.com/c4software/raspberry-rtlsdr-server","last_synced_at":"2026-01-30T14:24:04.315Z","repository":{"id":40946330,"uuid":"134001085","full_name":"c4software/raspberry-rtlsdr-server","owner":"c4software","description":"Quick guide to setup a RTL SDR Server on a Raspberry Pi.","archived":false,"fork":false,"pushed_at":"2018-05-21T20:58:52.000Z","size":2,"stargazers_count":27,"open_issues_count":1,"forks_count":3,"subscribers_count":3,"default_branch":"master","last_synced_at":"2023-03-12T06:48:15.869Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/c4software.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2018-05-18T20:28:14.000Z","updated_at":"2023-02-07T13:02:42.000Z","dependencies_parsed_at":"2022-08-29T07:31:01.766Z","dependency_job_id":null,"html_url":"https://github.com/c4software/raspberry-rtlsdr-server","commit_stats":null,"previous_names":[],"tags_count":null,"template":null,"template_full_name":null,"purl":"pkg:github/c4software/raspberry-rtlsdr-server","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/c4software%2Fraspberry-rtlsdr-server","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/c4software%2Fraspberry-rtlsdr-server/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/c4software%2Fraspberry-rtlsdr-server/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/c4software%2Fraspberry-rtlsdr-server/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/c4software","download_url":"https://codeload.github.com/c4software/raspberry-rtlsdr-server/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/c4software%2Fraspberry-rtlsdr-server/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28914093,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-30T12:13:43.263Z","status":"ssl_error","status_checked_at":"2026-01-30T12:13:22.389Z","response_time":66,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2026-01-30T14:24:03.426Z","updated_at":"2026-01-30T14:24:04.306Z","avatar_url":"https://github.com/c4software.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# Raspberry Pi rtl-sdr server setup\n\nQuick guide to setup a RTL SDR Server on a Raspberry Pi.\n\n\n## Base\n\n- Raspbian-litie (https://downloads.raspberrypi.org/raspbian_lite_latest)\n- Raspberry Pi (2 or 3)\n\n⚠️⚠️ The Pi Zero W seems not enough powerfull to handle rtl_tcp.\n\n## Flash the Sdcard\n\n```sh\n$ sudo dd bs=1m if=path_of_your_image.img of=/dev/rdiskn conv=sync\n```\n\n## Base Setup\n\n```sh\n$ sudo apt-get update\n$ sudo apt-get upgrade\n$ sudo rpi-update\n```\n\n## Install rtl-sdr software\n\nIn 2018 no need to compile rtl-sdr package, everything is already available in repo.\n\n```sh\n$ sudo apt-get install rtl-sdr\n```\n\nPlug your TNT/DVB Dongle.\n\nDone ?! Everything is installed. You can test your setup with :\n\n```sh\n$ rtl_tcp\n```\n\n## Service \u0026 Auto-startup\n\nWith systemd the process to create a startup service is a little different than previous version.\n\n```sh\nsudo nano /etc/systemd/system/rtlsdr.service\n```\n\nPaste the following content :\n\n```systemd\n[Unit]\nDescription=RTL-SDR Server\nAfter=network.target\n\n[Service]\nExecStart=/bin/sh -c \"/usr/bin/rtl_tcp -a $(hostname -I)\"\nWorkingDirectory=/home/pi\nStandardOutput=inherit\nStandardError=inherit\nRestart=always\n\n[Install]\nWantedBy=multi-user.target\n```\n\nSave and quit\n\n```sh\n$ sudo systemctl daemon-reload\n$ sudo systemctl start rtlsdr\n$ sudo systemctl status rtlsdr # Everything should be green\n$ sudo systemctl enable rtlsdr\n```\n\nAlmost done\n\n## Reboot and test\n\n```sh\nsudo reboot\n```\n\nYour SDR Server is ready to accept connection on port ```raspberrypi.local:1234```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fc4software%2Fraspberry-rtlsdr-server","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fc4software%2Fraspberry-rtlsdr-server","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fc4software%2Fraspberry-rtlsdr-server/lists"}