When I go to enable the security settings on anydesk, It asks for my password and then does nothing after. I cannot set up unattended access, which is what I need to be able to work on that machine. Any ideas?
5 Answers
This worked for me: Setting the password using the command line https://support.anydesk.com/Command_Line_Interface
echo mynewpassword | sudo anydesk --set-password
- 181
- 1
- 3
Based on @padje answer, I suggest you this one-line command for restarting completely anydesk :
kill $(ps -aux | grep anydesk | awk '{print $2}') | anydesk --service
Explanation :
ps -auxwould show every active processesgrep anydeskwould find everyanydeskprocesses running, displayed intopsoutputawk '{print $2}'would take the PID column (which is the 2nd)killclosed every commands refered to PIDs given by combinaison of 3 previous command (ps+grep+awk). You can also add the-9option tokill, to force them to close (notably when they are totally frozed)anydesk --servicewould start againanydesk(correct me in comment if I do a mistake here
NB : this type of command line can be used for some software, when you want to restart them manually (and when you can't use service <software_command> restart)
- 2,873
From commandline use anydesk-global-settings where you are able to do the settings using the interface.
Salut! If you have installed AnyDesk using Software Manager then it runs in a container called "flatpak", you can find the command in the link where you start AnyDesk and it looks like this:
/usr/bin/flatpak run --branch=stable --arch=x86_64 --command=anydesk com.anydesk.Anydesk
To solve the problem uninstall AnyDesk using Software Manager and then download and install AnyDesk for Linux.
AnyDesk from Software Manager works perfectly for outbound connections and does not work at all for incoming connections.
If the problem is "flatpak" you can use sudo comand:
sudo /usr/bin/flatpak run --branch=stable --arch=x86_64 --command=anydesk com.anydesk.Anydesk
- 46