Index | Thread | Search

From:
Mikolaj Kucharski <mikolaj@kucharski.name>
Subject:
Re: Is chromium-149.0.7827.196 crashing for you guys?
To:
ports@openbsd.org
Date:
Thu, 9 Jul 2026 09:31:21 +0000

Download raw body.

Thread
  • Mikolaj Kucharski:

    Is chromium-149.0.7827.196 crashing for you guys?

  • Finally made it work, however I don't know why it was crashing :/
    
    Cleaned up all cookies related to any Vinted sites without opening
    the page, via:
    
    	chrome://settings/content/all?searchSubpage=vinted
    
    
    Closed Chromium and cleaned up some dirs:
    
    
    ---8<---
    #!/bin/sh
    
    cd ~/.config/chromium || exit 1
    
    rm -vf ~/.config/chromium/chrome.core
    rm -vf ~/Downloads/chrome.core
    rm -vf ~/chrome.core
    rm -rf ~/.cache/chromium
    
    for dir in \
    	'BrowserMetrics' \
    	'Default/Application Cache' \
    	'Default/AutofillAiModelCache' \
    	'Default/Code Cache' \
    	'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 "$dir"
    done
    --->8---
    
    
    Because I did both, maybe cookies where good enough. I am not sure.
    
    -- 
    Regards,
     Mikolaj
    
    
  • Mikolaj Kucharski:

    Is chromium-149.0.7827.196 crashing for you guys?