Hello
I’m currently using the Jetson Nano Developer Kit and JetPack 4.6.3-b17.
I would like to achieve the following behavior:
・Power on the Jetson Nano.
・Automatically start the docker container.
・Run the person detection program inside the docker container.
However, it’s not functioning properly. Error:the input device is not a TTY.
I have created “test.service” file in “/etc/systemd/system”.
It’s “test.service” file.
[Unit]
Description=test
Wants=network-online.target
After=network-online.target
[Service]
User={UserName}
ExecStart=/home/{UserName}/product/run_container.sh
[Install]
WantedBy=multi-user.target
It’s “run_container.sh” script.
“detect_people.py” is person detection program.
cd /home/{UserName}/jetson-inference
docker/run.sh -v /home/{UserName}/product:/tmp -r python3 /tmp/detect_people.py
Is there any solution available?
I would appreciate it if you could provide some guidance or assistance.
I think I need to modify the “sudo docker run” command in “jetson-inference/docker/run.sh”.
Thank you for reading.