Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to fix "ERROR:buffer_manager.cc(488)] [.DisplayCompositor]GL ERROR :GL_INVALID_OPERATION : glBufferData:"

Trying to run alias command that should open two tabs in chrome via bash in Ubuntu.

alias mb="google-chrome url; google-chrome url"

After executing the alias, I will get this error message:

[1520:1520:0822/202900.742938:ERROR:sandbox_linux.cc(369)] InitializeSandbox() called with multiple threads in process gpu-process.
[1520:1520:0822/202900.838165:ERROR:buffer_manager.cc(488)] [.DisplayCompositor]GL ERROR :GL_INVALID_OPERATION : glBufferData: <- error from previous GL command

Since this is some kind of gpu problem I tried params:

--disable-gpu
--disable-software-rasterizer

Neither of them worked.

Expected result: two tabs in one browser will open.

Actual result: One tab will open, command will get stuck on error message and second tab will not open. Process has to be killed manually.

like image 504
KOFI_113 Avatar asked Aug 22 '19 18:08

KOFI_113


1 Answers

In my case, this error did not appear in my .xsession-errors when I started Xorg with

/usr/bin/startx -- -extension GLX

Got this from this answer: https://unix.stackexchange.com/questions/408582/how-to-disable-hardware-acceleration-in-linux.

like image 140
Brian Flaherty Avatar answered Sep 22 '22 10:09

Brian Flaherty