Reputation: 54013
In my Ubuntu 14.04 I'm trying to install the Captiva icon pack as listed on this omgubuntu post. So I copy pasted the following command in 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.
Upvotes: 3
Views: 5795
Reputation: 101
Also make sure that your datetime is correct. I had an offset of two months into the past and got the exact same error.
Upvotes: 1
Reputation: 679
I tried to add this ppa and it's working. As a workaround to add it to your system execute the following under root (sudo su
before executing 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
Upvotes: 0