I want to run Google Chrome to read my Gmail as it is more optimized than Firefox for that.
I tried to install Chrome in an isolated shell.
env NIX_ALLOW_UNFREE=1 nix shell --impure nixpkgs#google-chrome
Then, I run google-chrome-stable
which crashes after printing the following.
ac: Unknown GPU, using 0 for raster_config
Cannot find target for triple amdgcn-- Unable to find target for this triple (no targets are registered)
[1015/092649.046425:ERROR:process_memory_range.cc(75)] read out of range
[242314:242314:1015/092649.187014:ERROR:object_proxy.cc(576)] Failed to call method: org.freedesktop.ScreenSaver.GetActive: object_path= /org/freedesktop/ScreenSaver: org.freedesktop.DBus.Error.NotSupported: This method is not part of the idle inhibition specification: https://specifications.freedesktop.org/idle-inhibit-spec/latest/
[242314:242314:1015/092649.371443:ERROR:gpu_process_host.cc(980)] GPU process exited unexpectedly: exit_code=139
ac: Unknown GPU, using 0 for raster_config
Cannot find target for triple amdgcn-- Unable to find target for this triple (no targets are registered)
[1015/092649.480400:ERROR:process_memory_range.cc(75)] read out of range
[242314:242314:1015/092649.813286:ERROR:gpu_process_host.cc(980)] GPU process exited unexpectedly: exit_code=139
ac: Unknown GPU, using 0 for raster_config
Cannot find target for triple amdgcn-- Unable to find target for this triple (no targets are registered)
[1015/092649.913922:ERROR:process_memory_range.cc(75)] read out of range
[242314:242314:1015/092650.248759:ERROR:gpu_process_host.cc(980)] GPU process exited unexpectedly: exit_code=139
ac: Unknown GPU, using 0 for raster_config
Cannot find target for triple amdgcn-- Unable to find target for this triple (no targets are registered)
[1015/092650.338924:ERROR:process_memory_range.cc(75)] read out of range
[242314:242314:1015/092650.736074:ERROR:gpu_process_host.cc(980)] GPU process exited unexpectedly: exit_code=139
ac: Unknown GPU, using 0 for raster_config
Cannot find target for triple amdgcn-- Unable to find target for this triple (no targets are registered)
[1015/092650.854160:ERROR:process_memory_range.cc(75)] read out of range
[242314:242314:1015/092651.283120:ERROR:gpu_process_host.cc(980)] GPU process exited unexpectedly: exit_code=139
ac: Unknown GPU, using 0 for raster_config
Cannot find target for triple amdgcn-- Unable to find target for this triple (no targets are registered)
[1015/092651.391864:ERROR:process_memory_range.cc(75)] read out of range
[242314:242314:1015/092651.792934:ERROR:gpu_process_host.cc(980)] GPU process exited unexpectedly: exit_code=139
ac: Unknown GPU, using 0 for raster_config
Cannot find target for triple amdgcn-- Unable to find target for this triple (no targets are registered)
[1015/092651.833116:ERROR:process_memory_range.cc(75)] read out of range
[242314:242314:1015/092652.157865:ERROR:gpu_process_host.cc(980)] GPU process exited unexpectedly: exit_code=139
ac: Unknown GPU, using 0 for raster_config
Cannot find target for triple amdgcn-- Unable to find target for this triple (no targets are registered)
[1015/092652.198291:ERROR:process_memory_range.cc(75)] read out of range
[242314:242314:1015/092652.497838:ERROR:gpu_process_host.cc(980)] GPU process exited unexpectedly: exit_code=139
ac: Unknown GPU, using 0 for raster_config
Cannot find target for triple amdgcn-- Unable to find target for this triple (no targets are registered)
[1015/092652.537955:ERROR:process_memory_range.cc(75)] read out of range
[242314:242314:1015/092652.865803:ERROR:gpu_process_host.cc(980)] GPU process exited unexpectedly: exit_code=139
[242314:242314:1015/092652.865839:FATAL:gpu_data_manager_impl_private.cc(436)] GPU process isn't usable. Goodbye.
[1015/092652.879736:ERROR:elf_dynamic_array_reader.h(64)] tag not found
[1015/092652.880208:ERROR:elf_dynamic_array_reader.h(64)] tag not found
[1015/092652.880232:ERROR:process_memory_range.cc(75)] read out of range
fish: Job 1, 'google-chrome-stable' terminated by signal SIGTRAP (Déroutement de suivi/point d'arrêt)
I tried to disable the use of the GPU (my laptop is a ASUS Zenbook 14 with AMD GPU and CPU), by using the --no-gpu
, and then --disable-gpu
options, but I reached the same outcome.
I also tried to install chromium instead.
nix shell nixpkgs#chromium
But I get the same output (I have not diffed them, but they look very much the same).
I’ve searched some related issues with AMD gpu, another chrome-based browser, but the matter seems quite complicated to me, so I am asking for some feedback here first.
Thanks!