Hello, my Jetson Orin Nano will not boot anymore after I added a systemd service to run a python script to open a tcp server on startup. Initially it was trying to boot over PXE but after telling it to boot from its SD card in the boot manager it just black screens. My service looked like this:
[Unit]
Description=Python TCP Server
After=network.target
[Service]
ExecStart=/usr/bin/python3 /path/to/your/tcp_server.py
WorkingDirectory=/path/to/your
StandardOutput=file:/var/log/tcp-server.log
StandardError=file:/var/log/tcp-server-error.log
Restart=always
User=your-username
Environment="PYTHONUNBUFFERED=1"
[Install]
WantedBy=multi-user.target
And I ran these two commands:
sudo systemctl daemon-reload
sudo systemctl enable tcp-server.service
Then rebooted to cause this issue. How can I get back into the Jetson? We really do not want to reflash but can as a last resort.
Thank you!