美文网首页
2020-08-06

2020-08-06

作者: 懂你的 | 来源:发表于2020-08-06 17:12 被阅读0次

ubuntu 三方打开google浏览器后,无法上网

https://blog.csdn.net/fengzijinliang/article/details/77720848

The issue is with google-chrome.desktop, and it is missing the %U argument .

Open file: sudo $HOME/.local/share/applications/google-chrome.desktop

Find the line:

Exec=/opt/google/chrome/chrome

Add a space and %U:

Exec=/opt/google/chrome/chrome --proxy-server=http://127.0.0.1:1080 %U

Then save the file.

翻译一下:

出现这个问题跟 google-chrome.desktop 有关,它缺少一个参数 %U。

打开文件:sudo $HOME/.local/share/applications/google-chrome.desktop

找到下面这行:

Exec=/opt/google/chrome/chrome

在末尾添加一个空格和%U:

Exec=/opt/google/chrome/chrome --proxy-server=http://127.0.0.1:1080 %U

然后保存文件即可。

相关文章

网友评论

      本文标题:2020-08-06

      本文链接:https://www.haomeiwen.com/subject/buktdktx.html