Problema ao instalar o dropbox

1

Estou tentando instalar o "Dropbox" no meu laptop e ele continua enviando o seguinte erro para mim o tempo todo.

laptop@laptop:~$ dropbox start -i

Starting Dropbox...
Dropbox is the easiest way to share and store your files online. Want to learn more? 

Error: Trouble connecting to Dropbox servers. Maybe your internet connection is down, or you need to set your http_proxy environment variable
The installation of Dropbox failed.

Eu tentei

cd ~ && wget -O - "https://www.dropbox.com/download?plat=lnx.x86_64" | tar xzf -

que resulta em

--2013-01-17 17:53:28--  Resolving proxy.hs-karlsruhe.de (proxy.hs-karlsruhe.de)... 193.196.64.2
Connecting to proxy.hs-karlsruhe.de (proxy.hs-karlsruhe.de)|193.196.64.2|:8888... connected.
Proxy tunneling failed: Proxy Authentication RequiredUnable to establish SSL connection.

gzip: stdin: unexpected end of file
tar: Child returned status 1
tar: Error is not recoverable: exiting now

Então eu tentei

https_proxy=http://proxy.hs-karlsruhe.de:8888 dropbox start -i

e isso também gera uma mensagem de erro. Por favor ajude!

    
por Varun 10.07.2013 / 18:49

1 resposta

1

  

Falha no túnel de proxy: autenticação de proxy necessária

Você tem que fornecer nome de usuário e senha para autenticar com o proxy. Tente o seguinte:

export http_proxy="http://<username>:<password>@proxy.hs-karlsruhe.de:8888"
export https_proxy="http://<username>:<password>@proxy.hs-karlsruhe.de:8888"

execute dropbox start -i .

    
por Eric Carvalho 10.07.2013 / 19:04