Raghavi
Raghavi

Reputation: 321

Error: gpg: no valid OpenPGP data found while installing Filezilla

Here I am trying to install Filezilla in ubuntu 16.04. The commands which I use are:

  1. sudo sh -c 'echo "deb http://archive.getdeb.net/ubuntu xenial-getdeb apps" >> /etc/apt/sources.list.d/getdeb.list'
  2. wget -q -O- http://archive.getdeb.net/getdeb-archive.key | sudo apt-key add -
  3. sudo apt update && sudo apt install filezilla

But when I try the second command I am getting an error

gpg: "no valid OpenPGP data found"

Can anyone tell me how to overcome this error? Thanks in advance.

Upvotes: 0

Views: 14290

Answers (1)

Jeff Leung
Jeff Leung

Reputation: 11

Same problem when installing sublime. You can try like below:

$ wget -q -O- http://archive.getdeb.net/getdeb-archive.key
$ sudo apt-key add getdeb-archive.key

Reference: gpg: no valid OpenPGP data found

Upvotes: 1

Related Questions