doc.rustdesk.com
doc.rustdesk.com copied to clipboard
How to Set Up RustDesk to Autostart on Debian 12
I want start RustDesk while my pi4B is power on. And it don't have any moniter.
I created a new systemd service file at /etc/systemd/system/rustdesk.service with the following content:
[Unit]
Description=RustDesk Remote Desktop
After=network.target
[Service]
Type=simple
ExecStart=/usr/bin/rustdesk
Restart=on-failure
User=nevo
[Install]
WantedBy=multi-user.target
but it's not working, and the log says something about gtl-critical: gtk_windows_move.
so anyone can help?