I get chrome/brave tabs crashing on my Lenovo IdeaPad 5 15ITL05, 11th Gen Intel® Core™ i3-1115G4 @ 3.00GHz × 4. 8.0 GiB. Sometimes with 3 tabs open, sometimes with 10. sometimes when I open pycharm/android studio(<=understandable), sometimes when I open a Youtube video.
I didn't have this happening on the previous version of Ubuntu, and somewhere this started happening after one of the recent updates of Ubuntu.
One of the solutions i came across was to disable wayland - I run x11, wayland is disabled. without disabling wayland i cannot share my screen on zoom anyway.
Some solutions suggest to turn off hardware acceleration. still doesn't resolve my issue.
Some claim it's
systemd-oomd
, currently the commandsystemctl is-enabled systemd-oomd
returns "masked" for me. the problem still persists.
Update
kernels: After researching the kernel issue, i figured it is best to stick with the current stable kernel by ubuntu which is: 5.19.0-38-generic as for March2023. I installed mainline, i tried updating to 6.2, the problem still occurred.
I am a bit confused because when i run:
$ sudo apt upgrade linux-generic [sudo] password for walid: Reading package lists... Done Building dependency tree... Done Reading state information... Done linux-generic is already the newest version (5.15.0.69.67).
and when i run:
uname -r
i get:5.19.0-38-generic
. Currently running5.19.0-38-generic
butlinux-generic
seem to think i still have5.15
maybe from the previous ubuntu version of 20.04. i really don't know.sudo dmesg
- all red maked rows:[ 0.117642] ACPI BIOS Error (bug): Could not resolve symbol [\_SB.PCI0], AE_NOT_FOUND (20220331/dswload2-162) [ 0.117656] ACPI Error: AE_NOT_FOUND, During name lookup/catalog (20220331/psobject-220) [ 0.136660] ACPI BIOS Error (bug): Could not resolve symbol [\_SB.PC00.DGPV], AE_NOT_FOUND (20220331/psargs-330) [ 0.136668] ACPI Error: Aborting method \_SB.PC00.PEG0.PCRP._ON due to previous error (AE_NOT_FOUND) (20220331/psparse-529) [ 0.509216] integrity: Problem loading X.509 certificate -65 [ 1.259968] i801_smbus 0000:00:1f.4: Transaction timeout [ 1.262171] i801_smbus 0000:00:1f.4: Failed terminating the transaction [ 1.262280] i801_smbus 0000:00:1f.4: SMBus is busy, can't use it! [ 2.994544] spi-nor spi0.0: unrecognized JEDEC id bytes: c2 75 17 c2 75 17 [ 4.707741] Bluetooth: hci0: Malformed MSFT vendor event: 0x02 [ 8.584950] ACPI BIOS Error (bug): Could not resolve symbol [\_TZ.ETMD], AE_NOT_FOUND (20220331/psargs-330) [ 8.584998] ACPI Error: Aborting method \_SB.IETM._OSC due to previous error (AE_NOT_FOUND) (20220331/psparse-529)
My colleague has a fresh Ubuntu installation and experience the same! At first i thought it's something to do with my setup.
We both always worked on Ubuntu in the past with no issues like this.
Edit: I installed POP_OS, and this kinda stuff doesn't happen there. So, it's not a solution, just a recommendation for a different approach.
sudo dmesg
and look for warnings/errors that might provide some clues)? You might also try running Chrome from the command line for some clues as well. – richbl Mar 29 '23 at 00:45dpkg -l | grep '^h'
to identify held packages, and if it's indeed linux-image etc. you can unhold them withapt-mark unhold <package>
.As for the main issue with browser crashing, is it reproducible also using a different browser engine (Firefox)? Brave is using Chromium as the rendering engine, so not that much different from Chrome itself. Also are there any other random processes crashing besides the browser?
– Wanted Mar 31 '23 at 20:27