AnyDesk runs in Ubuntu startup and I couldn't find any setting in order to disable it in its settings. How can I disable AnyDesk autostart?
Asked
Active
Viewed 6.9k times
89
-
2Actually this issue still happens in all Ubuntu versions 22 and 23 (tested in 23.04) – Etore Marcari Jr. Aug 25 '23 at 13:14
3 Answers
148
I've found the following approach to disable the AnyDesk service. In this way, you can run it manually.
systemctl disable anydesk.service
You can also check its service status:
systemctl status anydesk
nb: you might want to stop it first (or after) if it is running:
service anydesk stop
Benyamin Jafari
- 4,284
-
5
-
1This also used to work in Fedora 36, but in 37 it doesn't anymore. The service can be disabled, and stays disabled, but the system tray icon keeps appearing. – Jerther Mar 03 '23 at 13:15
-
-
-
3
-
1@AtifShafi it actually is the solution, because AnyDesk registers itself as service instead of using an autostart script. – Patrick Aug 20 '25 at 00:01
0
go to the .anydesk/ path(for example: mine is /home/pyruz/.anydesk), find autostart.conf and delete it. just this.
anydesk version: 6.1.1 , ubuntu version: 22.04 LTS
-
9
-
2As @HosseinKurd mentioned, the file doesn't exist in recent versions. Also,
grep -rinw 'autos' /home/user/.anydeskreturns nothing. – PavoDive Nov 19 '23 at 13:38
0
For 24.04 you can delete /home/username/.config/autostart/anydesk_global_tray.desktop
It does not show up in the autostart list via apps. I don't know if this is a failing of the app or whether it is not recognising the desktop file as an executable.
Kimbo
- 1