0

W: http://deb.anydesk.com/dists/all/InRelease: Key is stored in legacy trusted.gpg keyring (/etc/apt/trusted.gpg), see the DEPRECATION section in apt-key(8) for details.

karel
  • 122,292
  • 133
  • 301
  • 332

1 Answers1

0
# apt-key list philandro
   pub   ...
         xxx xxx xxx xxx
   uid    [ unknown] philandro Software GmbH <info@philandro.com>
   sub   ...

Copy xxx xxx xxx xxx

# sudo apt-key del "xxx xxx xxx xxx"

From https://anydesk.com/en - "Download now" - Linux - "Use DEB Repository".

"wget -qO - https://keys.anydesk.com/repos/DEB-GPG-KEY | apt-key add -"

"apt-key add -" replace "sudo gpg --dearmor -o /etc/apt/trusted.gpg.d/anydesk.gpg"

# wget -qO - https://keys.anydesk.com/repos/DEB-GPG-KEY | sudo gpg --dearmor -o /etc/apt/trusted.gpg.d/anydesk.gpg

check exist file "/etc/apt/trusted.gpg.d/anydesk.gpg"

oops8
  • 1