From: Mikolaj Kucharski Subject: Re: Is chromium-149.0.7827.196 crashing for you guys? To: ports@openbsd.org Date: Wed, 8 Jul 2026 16:16:01 +0000 On Fri, Jul 03, 2026 at 01:57:05PM +0200, Kirill A. Korinsky wrote: > On Fri, 03 Jul 2026 13:32:22 +0200, > Mikolaj Kucharski wrote: > > > > Hi. > > > > I see almost instant crash on vinted.com: > > > > $ pkg_info -qI chromium > > chromium-149.0.7827.200 > > > > $ sysctl -n kern.version > > OpenBSD 7.9-current (GENERIC.MP) #14: Thu Jul 2 16:38:24 MDT 2026 > > deraadt@amd64.openbsd.org:/usr/src/sys/arch/amd64/compile/GENERIC.MP > > > > > > Can anyone confirm they can open successfully vinted.com site? > > > > With fresh profile directory via `chrome --user-data-dir="$mktempdir"` I > > have hit and miss. Initially it crashed, now I cannot see any crashes. > > > > I tried to clear as much cache directorries in ~/.config/chromium > > without loosing my profile, but crashes still occur. > > > > Maybe you are aware a directory in ~/.config/chromium which could be > > typically problematic and it's worth to delete. > > > > I already deleted fully ~/.cache/chromium directory. > > > > > > I've tested with: > > ~ $ pkg_info | grep ungoogled-chromium > ungoogled-chromium-149.0.7827.200 Chromium browser sans integration with Google > ~ $ > > which I had started as: > > LC_ALL=C /usr/local/bin/ungoogled-chromium --user-data-dir=/tmp/chrome-test > > works quite stable. > Thanks Kirill. I see the same with Chromium and clean profile. Vinted works now, but with my profile it crashes. I don't want to start fresh, so I'm dragging my feet to wipe it. I don't see debug-chromium package for chromium. To get them based on the Makefile I would need to build debug flavour, right? I'm cleaning some directories, but still no luck and crash is there: ``` #!/bin/sh cd ~/.config/chromium pwd rm -vf ~/.config/chromium/chrome.core rm -vf ~/Downloads/chrome.core rm -vf ~/chrome.core rm -rvf ~/.cache/chromium for directory in \ 'BrowserMetrics' \ 'Default/Application Cache' \ 'Default/AutofillAiModelCache' \ 'Default/Code Cache' \ 'Default/Code Cache/wasm' \ 'Default/DawnCache' \ 'Default/DawnGraphiteCache' \ 'Default/DawnWebGPUCache' \ 'Default/Extensions/Temp' \ 'Default/GPUCache' \ 'Default/History Provider Cache' \ 'Default/Service Worker' \ 'Default/Shared Dictionary/cache' \ 'Default/VideoDecodeStats' \ 'Default/optimization_guide_hint_cache_store' \ 'GPUPersistentCache' \ 'GrShaderCache' \ 'GraphiteDawnCache' \ 'MEIPreload' \ 'ShaderCache' \ 'WasmTtsEngine' \ 'component_crx_cache' \ 'extensions_crx_cache' do rm -rvf "$directory" done ``` ``` $ ulimit -a time(cpu-seconds) unlimited file(blocks) unlimited coredump(blocks) unlimited data(kbytes) 3670016 stack(kbytes) 4096 lockedmem(kbytes) 87381 memory(kbytes) 64318480 nofiles(descriptors) 4096 processes 1310 $ pkg_info -qI chromium chromium-150.0.7871.46 $ sysctl -n kern.version OpenBSD 7.9-current (GENERIC.MP) #24: Wed Jul 8 04:05:05 MDT 2026 deraadt@amd64.openbsd.org:/usr/src/sys/arch/amd64/compile/GENERIC.MP ``` -- Regards, Mikolaj