Andrew Baxter
Andrew Baxter
Per https://www.reddit.com/r/bcachefs/comments/l74b4n/why_bcachefs_does_not_support_specifying_disk_by/ > There's also a mount.bcachefs tool that supports mounting by UUID, it needs to be documented - also, it's written in rust so it's not built by default....
It seems like it was added (moved from somewhere else?) here a couple months ago: https://github.com/koverstreet/bcachefs-tools/commit/1f8fc31ddc1975a1f2e7c2fa8f7f611eab761680
At least on NixOS mountng by UUID (ex `mount -t bcachefs abcdefgh-abcd-abcd-abcdef /my/mountpoint`) works using the package provided scripts. This works with everything - mount, fstab, and systemd AFAICT. I...
> At least on NixOS mountng by UUID (ex `mount -t bcachefs abcdefgh-abcd-abcd-abcdef /my/mountpoint`) works using the package provided scripts. This works with everything - mount, fstab, and systemd AFAICT....
I had a comment about `Help()` command methods, then deleted it because I thought it might be user error, but it seems still there. Indenting lines with a few spaces...
> So I think this already exists? Oh I didn't realize NameServerPool implemented DnsHandle, and yeah that looks like maybe it's exactly what I want? So is that basically Resolver...
And yeah, didn't mean to imply that I specifically wanted this in Resolver.
Oh awesome, I'll try that out! And thanks for the detailed replies! So it looks like idiomatic usage (forwarding a request) is basically ```rust let mut name_servers = NameServerConfigGroup::new(); name_servers.push(NameServerConfig::new(SocketAddr::new(...),...
This is working for me! The only trick was empty responses get turned into errors, but I think transforming them back is pretty safe and it had all the info...
Sorry, my hands are full with other things atm! I thought leaving the info here might be useful, since it's easy to lose track of things like this.