Configuração de proxy no xfce na máquina virtual

3

Meu Ubuntu está dentro de uma máquina virtual.

Quando faço login com uma sessão do Ubuntu, o navegador funciona bem. Mas quando eu logar com uma sessão xfce , o navegador não funciona ... Eu tento change proxy setting , isso me dá:

When running Google Chrome under a supported desktop environment, the system proxy settings will be used. However, either your system is not supported or there was a problem launching your system configuration.

But you can still configure via the command line. Please see man google-chrome for more information on flags and environment variables.

Alguém poderia ajudar?

    
por SoftTimur 19.04.2012 / 14:34

1 resposta

2

Solução 1

Existe uma opção de linha de comando --proxy-server - portanto, deve ser possível executar o chrome usando uma janela de terminal, usando o comando

google-chrome --proxy-server="<proxy-name>:<proxy-port>"

Solução 2

Outra solução seria definir as variáveis de ambiente :

http_proxy=<proxy-name>:<proxy-port>
https_proxy=<proxy-name>:<proxy-port>
export http_proxy
export https_proxy
google-chrome
    
por tohuwawohu 19.04.2012 / 15:06