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 |
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/system
and run:
sudo systemctl enable rtl_tcp
sudo systemctl start rtl_tcp