Ich benutze Ubuntu hinter einem (Windows) Proxy. Ich möchte das cabal
Dienstprogramm verwenden.
jem@Respect:~$ cabal update
Config file path source is default config file.
Config file /home/jem/.cabal/config not found.
Writing default configuration to /home/jem/.cabal/config
Downloading the latest package list from hackage.haskell.org
Warning: invalid http proxy uri:
"http://domain\\user:pass@internetproxy:3128/"
Warning: proxy uri must be http with a hostname
Warning: ignoring http proxy, trying a direct connection
^C
Die Proxy-URL wurde aus der Umgebung gelesen. Mein Proxy erfordert eine Authentifizierung, aber cabal möchte, dass die Proxy-URL mit einem Hostnamen beginnt, sodass ich möglicherweise zur Eingabe von Anmeldeinformationen aufgefordert werde ...
jem@Respect:~$ http_proxy=http://internetproxy:3128/ cabal update
Downloading the latest package list from hackage.haskell.org
No action for prompting/generating user+password credentials provided (use: setAuthorityGen); returning Nothing
cabal: Failed to download index 'ErrorMisc "Unsucessful HTTP code: (4,0,7)"'
Was ist setAuthorityGen
und wie benutze ich es? Kann ich den Zugriff über den authentifizierenden Proxy aktivieren? Muss ich tunneln?