Reputation: 321
Here I am trying to install Filezilla in ubuntu 16.04. The commands which I use are:
sudo sh -c 'echo "deb http://archive.getdeb.net/ubuntu xenial-getdeb apps" >> /etc/apt/sources.list.d/getdeb.list'
wget -q -O- http://archive.getdeb.net/getdeb-archive.key | sudo apt-key add -
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
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