Google Chrome black screen on ubuntu 18.04

HannuV

Bit poster
Any ideas how to solve the black window issue? This used to work fine until the most recent Ubuntu/Chrome upgrades about three weeks ago. (parallels 14.1.3, Ubuntu 18.04 all recent patches installed, Google Chrome up to date (74? Cannot see as the window is black).

When I start Chrome with --no-gpu option, it works fine but is ridiculously slow.

How do I resolve this?
 
--use-gl=angle does fix the problem but it also makes Chrome ridiculously slow. In the log messages I can see it then fails to initialise 3d acceleration.

It has now been awhile. New Ubuntu versions, new Chrome versions but the problem still persists. It seems like Parallels related to me.
 
Chrome and VS Code worked on 18.04 for me yesterday. Did not work after upgrading to 19.10 today. Workaround was to disable 3D acceleration, but I'd rather not do that.
 
The following seems to work on Parallels + Ubuntu 18.04:


Code:
google-chrome --use-gl=swiftshader

Note, this also fixes an identical issue with Microsoft Edge Beta Channel for Linux:

Code:
microsoft-edge --use-gl=swiftshader
 
Turns out, --disable-gpu is better, you can get to menus and stuff...
Code:
google-chrome --disable-gpu

Code:
microsoft-edge --disable-gpu

I get this error when I try to disable the GPU:

[28710:28710:0728/140117.014517:ERROR:gpu_init.cc(441)] Passthrough is not supported, GL is swiftshader
 
Back
Top