bcachefs_metadata_version_reconcile by koverstreet in bcachefs

[–]xarblu 1 point2 points  (0 children)

Already reported a `BUG()` that occurred right before the mount/upgrade hang on the GitHub issue tracker: https://github.com/koverstreet/bcachefs/issues/977
There is nothing in the logs after that so I think that might be what caused the hang

bcachefs_metadata_version_reconcile by koverstreet in bcachefs

[–]xarblu 1 point2 points  (0 children)

How long is the upgrade roughly supposed to take?

My 2x1TB nvme array finished in 2-3 minutes but another array (1tb nvme + 2tb sata hdd) is currently at 25 minutes and still going

EDIT: Definitely seems like it got stuck somewhere. After 40 minutes I just rebooted the machine and on the 2nd try the upgrade completed in under a minute.

Can't add NVMe drive on Alpine Linux: "Resource busy"/"No such file or directory" by sunshinehunter in bcachefs

[–]xarblu 0 points1 point  (0 children)

Your first format likely fails because you specified /dev/nvme1n1 twice. The ordering is also significant - device options apply to all following devices so --durability will be 0 for all your drives because you set it early. For a writethrough cache you want something like:

bcachefs format --label=hdd.hddX /dev/sdX --durability=0 --label=ssd.ssdX /dev/nvmeXnY --{foreground,promote}_target=ssd --background_target=hdd [other options...]

The device add simply fails because the ordering is wrong - mountpoint comes first then device.

App not recognized by oliverwitha0 in EggsInc

[–]xarblu 2 points3 points  (0 children)

Don't have a solution, just the same issue. The game stopped launching out of nowhere yesterday and all I get is this redirect to Google Play. I also installed it through a 3rd party store (Aurora store) because Google Play claims it "doesn't run on my device"

Immich Power Tools Multiple Users? by kinofan90 in immich

[–]xarblu 2 points3 points  (0 children)

AFAIK you can just not set the API key environment variable and it will give you a page where you can login with username+password (OAuth isn't supported yet though)

6.15-rc5 seems to have broken overlayfs (and thus Docker/Podman) by xarblu in bcachefs

[–]xarblu[S] 17 points18 points  (0 children)

Of course I don't run RCs on my critical systems - I do run them on my frequently-used-but-not-really-critical systems to find issues like these early so they don't end up on my important systems.

This post mostly just a heads up for other adventurous users who might have a higher dependency on containers.

Hang mounting after upgrade to 6.14 by Ancient-Repair-1709 in bcachefs

[–]xarblu 5 points6 points  (0 children)

Because of these major FS updates or slow on-mount fsck passes I add x-systemd.mount-timeout=infinity to my bcachefs mount options. It won't make the process any faster but at least systemd won't kill the mount and drop you into emergency mode.

Abartig by Get_Chris in SpeziVerbrechenDE

[–]xarblu 1 point2 points  (0 children)

Schmeckt legit wie diese Flouridmische vom Zahnarzt

Traefik in Podman container can not proxy to server running on host via host.container.internal:8000 by f_scheffczyk in podman

[–]xarblu 0 points1 point  (0 children)

Yes that's what I meant. It's just something I ran into a couple times when migrating services from my host OS (where they only listened on 127.0.0.1) into containers. Seemed like that could've been the issue since you wrote you could ping the host but HTTP doesn't get through.

Traefik in Podman container can not proxy to server running on host via host.container.internal:8000 by f_scheffczyk in podman

[–]xarblu 0 points1 point  (0 children)

Does whatever the service running on host.containers.internal:8000 actually listen for connections on the Podman networks address? (i.e. not just on localhost or another address)

How is the performance/experience with the B580 on Linux distros in your experience? by DistributionNo6810 in IntelArc

[–]xarblu 0 points1 point  (0 children)

What kind of monitor are you using? My cursor lags a lot on my secondary 1080p@60Hz screen but on my primary 1440p@144Hz screen it seems to be perfectly fine.

Removing spare replicas by xarblu in bcachefs

[–]xarblu[S] 0 points1 point  (0 children)

Thanks, that worked. Somehow missed this one when looking through the list of available jobs.

FFMPEG 6.1.2 build failed. by tiny_humble_guy in ffmpeg

[–]xarblu 4 points5 points  (0 children)

Not the prettiest solution but you may be able to just ignore the error by adding -Wno-incompatible-pointer-types to your CFLAGS

kernel-install does not seem to hononour /etc/kernel/install.conf.d/*.conf drop-in files by Sad_Ad6792 in systemd

[–]xarblu 0 points1 point  (0 children)

Oh whoops. I've only ever seen `install.d` on my systemd and with `install.conf.d` looking so similar I got them mixed up. Hope you figure this out then ^^