Quote:
Originally Posted by srijitdutt
I have just installed fedora 14. I am working behind a proxy and have made changes to the yum.conf file.
Yet I get thos error
yum update
Loaded plugins: langpacks, presto, refresh-packagekit
Adding en_US to language list
Error: Cannot retrieve repository metadata (repomd.xml) for repository: fedora. Please verify its path and try again
|
I stumbled on the same one: Had to set the environment variables
Code:
export http_proxy=http://host:port
export https_proxy=http://host:port
or, if your proxy requires authentication,
Code:
export http_proxy=http://username:password@host:port
export https_proxy=http://username:password@host:port
as root before running yum to make it work
P.S. See also post #20 in this very same thread by Panoz