-
When trying to start my docker container, I'm getting this as my output:
This is running on a headless machine running Ubuntu 20. It appears rtl_tcp outputs something that utf-8 doesn't know how to decode... Any ideas on how to fix this? Happy to provide more info and open an issue if this belongs there. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Figured this out myself, for some reason my rtl-sdr dongle wasn't getting mapped into the docker container properly -> caused rcl_tcp to fail -> caused the above failure when the subprocess couldn't handle some byte in the error log. Was able to figure it out by removing "universal_newlines=True" from the subprocess command. |
Beta Was this translation helpful? Give feedback.
Figured this out myself, for some reason my rtl-sdr dongle wasn't getting mapped into the docker container properly -> caused rcl_tcp to fail -> caused the above failure when the subprocess couldn't handle some byte in the error log.
Was able to figure it out by removing "universal_newlines=True" from the subprocess command.