25

I am unable to add a repository via the command line on Ubuntu 14.04. Apt-get works perfectly fine, and I am able to update the system. I have configured my /etc/apt/apt.config file as follows:

Acquire::http::proxy "http://<username>:<password>@<proxy address>:<port>/";

For example, when trying to add the repository for y-ppa-manager, I receive:

add-apt-repository ppa:webupd8team/y-ppa-manager
Cannot add PPA: 'ppa:webupd8team/y-ppa-manager'.
Please check that the PPA name or format is correct.

If you need any more info., feel free to ask.

bjd857
  • 303

1 Answers1

48

You need to export your proxy environment variables using

export http_proxy=http://username:password@host:port/
export https_proxy=https://username:password@host:port/

and then tell sudo to use them using:

 sudo -E add-apt-repository ppa:webupd8team/y-ppa-manager

or open your /etc/sudoers file (using sudo visudo) and append

Defaults env_keep="https_proxy"

to the end of the file.

I have a blog on this, have a look at it for more details.

mwhite
  • 103
jobin
  • 27,708
  • 1
    Thank you so much Jobin for the prompt reply! I used Method 1 from your blog, so I don't have to remember the "-E" each time. – bjd857 Apr 22 '14 at 06:34
  • In my case the problem was solved by this method: http://askubuntu.com/questions/355729/cant-add-any-ppas

    I mention this because it was not so easy to find in google (in my case the results point to this kind of solutions).

    – Damian Nadales Jul 11 '14 at 06:39
  • 2
    alias sudo=sudo -E – DmitrySandalov Nov 26 '14 at 15:40