在终端中运行 google-chrome 时出现问题

在终端中运行 google-chrome 时出现问题

运行时:

google-chrome

在里面终端,我得到了以下错误信息

[3103:3103:0920/114029.496629:ERROR:sandbox_linux.cc(374)] InitializeSandbox() called with multiple threads in process gpu-process.

尽管出现错误消息,谷歌浏览器 浏览器打开没有任何问题

问题是什么?解决方案是什么?

操作系统名称:Ubuntu 20.04.1 LTS
操作系统模式:具有持久存储的 Live USB 驱动器

答案1

这似乎是个问题越来越多的人,我个人也有:

$ google-chrome 
[45844:45844:1007/232622.863002:ERROR:sandbox_linux.cc(374)] InitializeSandbox() called with multiple threads in process gpu-process.

与此同时,如果您不希望这个错误信息再次出现(因为即使出现这个错误,Google Chrome 似乎也能正常工作),您可以在中添加这个别名~/.bash_aliases

alias google-chrome="google-chrome 2>/dev/null"

此别名使命令将其所有错误输出google-chrome( ) 重定向( ) 到。如果您希望进程在终端后台运行,也可以在末尾添加 。>2/dev/null&

相关内容