1

When i Install the OpenVPN repository key used by the OpenVPN 3 Linux packages

when i try running this command: curl -fsSL https://swupdate.openvpn.net/repos/openvpn-repo-pkg-key.pub | gpg --dearmor > /etc/apt/trusted.gpg.d/openvpn-repo-pkg-keyring.gpg

I get the following error: bash: /etc/apt/trusted.gpg.d/openvpn-repo-pkg-keyring.gpg: Permission denied (23) Failed writing body

1 Answers1

0

"Permission denied (23) Failed writing body" is the computer's way of telling you that it can't write to that file because you did not give it permission with sudo. That file is part of the system and you need to use sudo. like this: sudo curl -fsSL https://swupdate.openvpn.net/repos/openvpn-repo-pkg-key.pub | gpg --dearmor > /etc/apt/trusted.gpg.d/openvpn-repo-pkg-keyring.gpg

Gerge
  • 69