Thats a great info.
Exactly what I was looking for, really appreciate it.
On Thursday, February 26, 2026 at 04:27:04 AM GMT+9, Kirill A. Korinsky
<[email protected]> wrote:
On Wed, 25 Feb 2026 08:15:01 +0100,
All <[email protected]> wrote:
>
> Hi,
>
> Just wanted to see if OpenBSD community has some advice on this.
>
> When I open several youtube tabs - sooner or later firefox crashes.
>
> When I open zoom conference call - it will crash after 1 - 2 minutes.
> I did fiddle with limits and stuff but it seems that firefox just likes to
> crash.
>
> I tried Iridium, but it has the same issue - crash with youtube.
>
> Anyone had luck with a web browser and youtube/zoom etc?
> Will be trying chromium, but thought to reach out for guidance.
>
I use Zoom time to time, and it survies an hour long video call without an
issue. I use ungoogled-chromium which I start as.
export ENABLE_WASM=1
/usr/local/bin/ungoogled-chromium \
--new-window \
--enable-unveil \
--disable-beforeunload \
--fingerprinting-canvas-image-data-noise \
--fingerprinting-canvas-measuretext-noise \
--fingerprinting-client-rects-noise \
--force-punycode-hostnames \
--disable-top-sites \
--show-avatar-button=never \
--enable-features=MinimalReferrers \
--enable-features=ReducedSystemInfo \
--enable-features=IncreaseIncognitoStorageQuota \
--disable-features=IndexedDBCompressValuesWithSnappy \
--no-pings \
"$@"
and ulimits are:
~ $ ulimit -a
time(cpu-seconds) unlimited
file(blocks) unlimited
coredump(blocks) unlimited
data(kbytes) 134217728
stack(kbytes) 4096
lockedmem(kbytes) 87381
memory(kbytes) 15936900
nofiles(descriptors) 512
processes 256
~ $
also, I had noticed that chromium is hungry for /tmp, but 10G is enough for it.
--
wbr, Kirill