Check if the PPA name or format is correct.

On my Ubuntu 14.04, I am trying to install the Captiva icon pack listed in this omgubuntu post . So I copied the following command to the terminal:

sudo add-apt-repository ppa:captiva/ppa

      

but i get the following result:

Cannot add PPA: 'ppa:captiva/ppa'.
Please check that the PPA name or format is correct. 

      

Am I doing something wrong here? Any help is appreciated.

+3


source to share


2 answers


Also make sure your time and date are correct. I had an offset two months ago and got the same error.



+1


source


I tried adding this ppa and it works. As a workaround to add it to your system, do the following as root ( sudo su

before running the following code):



echo deb http://ppa.launchpad.net/captiva/ppa/ubuntu trusty main > /etc/apt/sources.list.d/captiva-ppa-trusty.list
apt-key adv --keyserver keyserver.ubuntu.com --recv-keys B12AB791
apt-get update
apt-get install -y captiva-icon-theme

      

0


source







All Articles