Created
January 31, 2022 19:18
-
-
Save alex27riva/938a795a6d1ec610f4dccdf7193dc827 to your computer and use it in GitHub Desktop.
Systemd service for running rtl_tcp on startup
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [Unit] | |
| Description=Software Defined Radio TCP Server | |
| Requires=network.target | |
| After=network.target | |
| [Service] | |
| ExecStart=/usr/bin/rtl_tcp -a 0.0.0.0 | |
| Restart=on-failure | |
| KillMode=control-group | |
| [Install] | |
| WantedBy=multi-user.target |
Author
thanks
if you use this manual to install, the executable file is /usr/local/bin/rtl_tcp
Had to do this indeed, thank you @Rin010
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Place this file in:
/usr/lib/systemd/systemand run:
sudo systemctl enable rtl_tcpsudo systemctl start rtl_tcp