Question: no_sandbox

Posted lnlidawei

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Question: no_sandbox相关的知识,希望对你有一定的参考价值。

说明:这是一篇转载的文章,文章版权属于原作者。原文网址:https://www.cnblogs.com/jing-tian/p/10853850.html

 

 

 

 

 

======

1.安装浏览器

# apt-get install gonme

# apt-get update 

# apt-get install google-chrome-stable

 

2.启动Chrome浏览器

# google-chrome

这时会报错:
[31560:31560:0207/085601.085852:ERROR:zygote_host_impl_linux.cc(90)] Running as root without --no-sandbox is not supported. See 

# google-chrome --no-sandbox    //之后重启系统

 

3.设置快捷方式 
# whereis google-chrome
 google-chrome: /usr/bin/google-chrome /usr/share/man/man1/google-chrome.1.gz
# vim /usr/bin/google-chrome

 

将 exec -a "$0" "$HERE/chrome" "$@"  改为

exec -a "$0" "$HERE/chrome" "$@" --user-data-dir --no-sandbox

以后只要 #google-chrome 就可以打开Chrome了

虽然也会弹出一堆错误,但是终于成功打开了!!

 

静则思,思则变,变则通,通则达
 
 
 

以上是关于Question: no_sandbox的主要内容,如果未能解决你的问题,请参考以下文章

763. 划分字母区间

在 GraphQL 中重用输入类型作为片段 [重复]

ktor HTTP API 练习

无法单击列表元素

MessageBox没有关注MessageBoxButton

817. Linked List Components - LeetCode