Como tornar o servidor proxy do usuário do Chrome no ArchLinux

1

Gostaria de definir o proxy HTTP para o Google Chrome no ArchLinux.

Quando abro a secção de definições de proxy na GUI do Chrome, obtenho:

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.

A execução com google-chrome-stable --proxy-server=127.0.0.1:8080 não tem efeito.

Ir para chrome://net-internals/#proxy revela:

Effective proxy settings

Use DIRECT connections. Source: GSETTINGS Original proxy settings

Auto-detect Source: GSETTINGS

Então eu uso gsettings para definir esses valores.

gsettings get org.gnome.system.proxy.http enabled
true
gsettings get org.gnome.system.proxy.http host
localhost
gsettings get org.gnome.system.proxy.http port
8080

Mas ainda não é bem-sucedido - chrome://net-internals/#proxy ouput permanece o mesmo.

    
por Arkonix 08.05.2017 / 11:01

1 resposta

0

Para o google-chrome-stable no Manjaro Linux, mesmo ao configurar o proxy na rede, ele não estava detectando; Mas quando você o executa como

/usr/bin/google-chrome-stable --http-proxy=xxxx.net:8080 --https-proxy=xxxxx.net:8080 %U

funciona

    
por 01.08.2017 / 07:58