-
alepzi
want me to try anything with bsdinstall_chroot or go right to the ls -l kevans?
-
kevans
just go straight there
-
alepzi
k, building
-
sfox
destructing
-
alepzi
ok for ls and cat got: /tmp/bsdinstall-install*: no such file or dir
-
kevans
which branch are you installing, to be precise?
-
kevans
oh right, in the chroot it doesn't have that prefiz
-
alepzi
i'm installing from 13.3 repo pull
-
alepzi
releng/13.3
-
alepzi
just checked and up to date with that branch
-
kevans
hmm
-
kevans
everything should be mounted at that point... the lack if any bsdinstall-install prefixed files would seem to ndicate that we are infact chrooted
-
alepzi
what else can i do to help you debug? i'm at the extent of my knowledge
-
kevans
maybe inspect the fs state a bit in the scripr
-
kevans
ls -l /mnt /usr/local
-
alepzi
is that /mnt/usr/local or 2 separate paths like you typed?
-
kevans
two separate
-
alepzi
k building
-
alepzi
well /mnt has 0 and /usr/local has bin etc share www
-
alepzi
is there some kinda wait command that'llmake the setup script pause for 1 second? it's kinda hard to catch the data sometimes
-
alepzi
or sleep?
-
kevans
ok, so you are chrooted
-
kevans
but then why is the thing you're expecting not there
-
alepzi
oh this doesn't have that. this is way stripped down to just what i pasted
-
alepzi
and the extras distro is empty just to simplify testing
-
alepzi
know how i can make the setup part sleep? i can add the other stuff back in and test
-
kevans
right, but /mnt is empty
-
kevans
just sleep, yeah
-
alepzi
oh lol
-
alepzi
building
-
alepzi
-
alepzi
putting jail dir at / root for less typing
-
alepzi
seems when i create a zfs mountpoint, it doesn't use the chroot because of the altroot property?
-
kevans
it is in the chroot, though
-
kevans
ls -la /mnt
-
kevans
# --> empty
-
alepzi
so the altroot property is affecting how it works IN the chroot
-
kevans
this feels like a bug so far
-
alepzi
is it INTENDED for zfs altroot to be set to /mnt during the setup phase of a scripted bsdinstall?
-
kevans
almost certainly, yes
-
alepzi
so what do you think the bug is?
-
kevans
oh, I see what happened now
-
kevans
ls -la /
-
kevans
# --> 22 items (no "/jail")
-
kevans
er
-
kevans
the next one, /mnt/jail exists
-
alepzi
ya, the new /jail mountpoint is being created in the /mnt dir, not at /
-
kevans
because it looked up altroot but didn't consider that it's in a chroot
-
alepzi
because of altroot
-
alepzi
yep
-
alepzi
what do?
-
alepzi
are you sure it's not working as intended? if the altroot is /mnt, shouldn't it be creating the mountpoint in /mnt/jail instead of /jail? it's still within the chroot
-
kevans
it is, in a way
-
alepzi
why is altroot even set? i remember asking about it in #zfs last week because i expected the mountpoint to be off of /, and they said it was in an altroot because during install it's on a tmproot or smth. but if it's in chroot, why does it need altroot at all?
-
kevans
because you can't let it mount at /
-
kevans
you can't chroot until it's mounted, and you can't let it mount at /
-
kevans
therefore you need an altroot to safely move it out of the way
-
alepzi
why can't let it mount at /?
-
kevans
because you don't want it covering the install media while you're trying to build it out
-
alepzi
feels like some part of the design here is painting us into a corner
-
alepzi
if not then tell me how i can start and jexec against a jail in the installerconfig's setup phase?
-
kevans
try symlinking /mnt/jails into the root
-
kevans
you might need to cleanup the symlink on success, not sure yet
-
alepzi
whoa
-
alepzi
lemme try
-
kevans
alternative `zfs create -u` and just mount it manually
-
alepzi
with symlink method i gotta clean it up before rebooting, with zfs create -u it's a temporary change that i don't have to clean up. i think the latter sounds cleaner
-
alepzi
ill try symlink method first just to see if it works
-
kevans
you can also copy ZFSBOOT_DATASETS out of the bsdinstall scripts and set that in your script
-
kevans
adding in your jails dataset or any other you need
-
alepzi
how would that fix it?
-
kevans
because ZFSBOOT_DATASETS get created by the installer before your script runs
-
kevans
thus avoiding the chroot issue entirely
-
alepzi
so it wouldn't have the /mnt issue?
-
alepzi
it would just be right off /
-
alepzi
btw man page for bsdinstall ZFSBOOT_DATASETS seems to have an error. it says "about who to write" should be "about how to write" ya?
-
kevans
it's since been changed to "how to populate"
-
alepzi
nice!
-
alepzi
i gotta sleep sadly but the symlink at least shows up in ls -la like /jail -> /mnt/jail. i'll test if that lets the jail start and work normally tomorrow
-
alepzi
tyvm for helping me
-
padukajorat
I have question related to jails exec.clean command parameter, specifying this parameter in jail.conf means any command parameters that runs in system environment should be run in clean environment? except USER, HOME, SHELL and TERM?
-
rwp
padukajorat, Commands that run through the jail commands, yes. Obviously commands that run normally inside the jail have their normal environment. But clean is like "env -i" with those named variables passed through.
-
rwp
This is documented in the jail(8) man page.
-
padukajorat
yeah, i went through the jail(8) man page, kind of confused i am, let us assume i am using exec.prepare="" so this exec.prepare will run in clean environment? if i have exec.clean set in jail.conf?
-
ivaat
hm one thing what i have not played around is.. how i can control device led lights on freebsd?
-
ivaat
does not seem to have much information on net
-
lw
ivaat: there's led(4), but i don't know what drivers support it (em(4) does at least)
-
lw
apparently they should show up in /dev/led if available
-
ivaat
ls: /dev/led: No such file or directory
-
ivaat
ok its duck tape then
-
ivaat
the mini pc has so bright blue led :)
-
lw
it might be one of these things where you have to load a random kmod to get the driver, a lot of system/i2c/whatever stuff is like that
-
ivaat
okey
-
ivaat
i will dig around
-
lw
i want to build a dns/knot package but i can't until the build i started last night finished... currently doing electron28 and qt6-webengine. bleh. i hate this
-
Soni
can anyone help us compile freebsd?
-
lw
-
VimDiesel
Title: Chapter 26. Updating and Upgrading FreeBSD | FreeBSD Documentation Portal
-
Soni
lw: yeah it runs out of ram
-
Soni
(with -j1 ofc)
-
lw
well, you may need to add more memory, i'm not sure there's any other workaround for that
-
Soni
how much?
-
lw
i don't know what the minimum is, although kevans said 2GB when you asked yesterday i think? which sounds reasonable to me... the host i normally build on has 6GB and i've not had a problem there
-
Soni
oh only 2GB? okay
-
Soni
here we go building llvm again... this takes a while
-
ivaat
well you can add swap too but then it will not be fast :)
-
ivaat
just mentioning if someone is testing-doing on vs for example
-
ivaat
vps
-
Soni
we are using a VM
-
jbo
what kind of sensitive information might one find in dmesg that should be redacted prior to publicly sharing it?
-
lw
jbo: hopefully, nothing
-
lw
maybe MAC addresses if you are super paranoid
-
jbo
-
VimDiesel
Title: 278311 – amdtemp: Does not recognize AMD Threadripper 7960X
-
lw
curious, i am not sure what that could be referring to
-
lw
i know some people consider their IP addresses and stuff to be "sensitive information" though
-
lw
(hackers can find your IP address!!!)
-
jbo
well I mean...
-
jbo
whatever?
-
lw
jbo: delphij seems quite friendly IME, maybe just ask :-)
-
jbo
true
-
jbo
lw, hw.model: AMD Ryzen Threadripper 7960X 24-Cores :x
-
lw
jbo: go away
-
lw
( :-) )
-
kevans
yeah, typically nothing but it's nice to remind people
-
rwp
It's also very surprising to me what other people get upset about and then want to have it removed. After they already emailed it to 2000 people on a mailing list.
-
rwp
And of course sometimes I am on the admin side doing the redaction. And sometimes I am on the gawking side where I run over there quickly to see what it is that they want to hide from other people before it gets redacted!
-
kevans
right, in my experience it's better to act casual after you've accidentally leaked something really important :-)
-
jbo
lw, ok :(
-
lw
jbo: you are gonna be so jealous when my Chinese router arrives from AliExpress, i bet it has more 10G Ethernet ports than you!!
-
jbo
lw, much jealous
-
jbo
lw, does your chinese router also have this?
-
jbo
kern.smp.cpus: 48
-
jbo
:D
-
V_PauAmma_V
My IP address is 127.0.0.1. Everyone here is allowed to use it to DoS me.
-
jbo
lw, I did decide not go get a new GPU yet tho. so running a 8 years old GPU
-
paulf
my workstations are ancient
-
paulf
whenever I get round to replacing the oldest I'm planning on just using amdgpu
-
paulf
no aircon and it gets hot in the office in summer
-
jbo
yep
-
jbo
the +350W TPD of the new CPU was a major "problem"
-
lw
jbo: i have an NVidia GT710 if you want to borrow it?
-
jbo
lw, nah I just migrated the GPU I have/had in my previous desktop (Nvidia Quadro P5000)
-
jbo
-
lw
your computer looks like a borg drone
-
jbo
thank you
-
lw
what's the lower PCIe card? an SSD?
-
jbo
-
lw
also did you go with a different motherboard, i thought you were looking at one with like 10 PCIe slots
-
jbo
top to bottom: GPU, 4x PCIe m.2 Gen5 adapter card, 4x USB dedicated controller card (for bhyve pass-thru)
-
jbo
lw, that is when I was still considering to go Intel Xeon w5-3400 or w7-3400
-
lw
ah right, you did AMD
-
jbo
but eventually I moved to threadripper
-
jbo
yeah, this is my first ever AMD machine
-
jbo
and yes, it only boots FreeBSD.
-
lw
i heard on questions@ about some issues with TR recently, i hope you don't run into that
-
jbo
lw, there are 4x 4TB SATA drives in the very bottom (not visible)
-
lw
that was about it not booting at all though so i guess if it boots it's fine :-)
-
jbo
lw, what kind of issue(s)?
-
jbo
ah
-
paulf
single boot would be a bit of a luxury
-
lw
- L- 853/3265: Chris Torek 14-stable on AMD7950X: Good and bad news
-
lw
thread on -stable (not -questions)
-
lw
ah, that was specifically with amdgpu not working
-
jbo
that is a ryzen, not a threadripper
-
jbo
this one has no GPU
-
lw
wait what
-
lw
7950X is a Ryzen, 7960X is a TR?
-
jbo
yeah 7960X is threadripper
-
lw
wtf is your product naming doing, AMD
-
jbo
yep... don't ask. I was also like " wut"
-
jbo
I mean, they do seem to call it "AMD Ryzen Threadripper 7960X"
-
jbo
so, kinda also a ryzen?
-
lw
ok 7950X has 16 cores, i guess if 7960X has 24 cores that sort of makes sense
-
lw
i thought in the past TR was a completely different CPU though (other than the Zen core itselF)
-
jbo
anyway, I hope to get some time over the weekend to setup the machine. too busy right now.
-
lw
like, different socket and stuff
-
jbo
it is a very different socket.
-
jbo
this CPU is HUGE
-
lw
jbo: do you have ECC memory? (and do AMD actually certify ECC on TR?)
-
jbo
lw, it's ECC memory, yes (real ECC, not the regular DDR5 "on-die ECC". I yet need to figure out whether it actually performs as ECC memory.
-
lw
i've been wondering that too but i'm not sure how to test it other than hitting one of the chips with a hammer
-
jbo
btw the CPU ships with a torque wrench in the box
-
lw
that's funny
-
lw
i assume that's for attaching the heatsink, not for bolting it into the socket
-
jbo
the latter :D
-
lw
...
-
jbo
-
lw
it's not a ZIF socket?
-
jbo
the three screws
-
jbo
it's LGA
-
lw
ah
-
lw
that seems weirdly janky for a modern CPU, are Xeons like that too?
-
jbo
not the xeons I have worked with. but I haven't had anything new since 2017
-
jbo
I'm completely fine with it tho.
-
jbo
I like the torque wrench approach.
-
jbo
but I'm an electrical engineer so...
-
lw
i'm okay with a torque wrench for a bolt but with a screw head like that it seems like an invitation to strip the head if you do it wrong
-
jbo
once I had some time to setup the system and ensure that everything works well I'll try to do some overclocking. That's why I went for 2x 360mm radiators
-
jbo
it's torx. hard to screw that one up.
-
lw
jbo: so can i have a shell account to build ports?
-
lw
it's the least you can do when i helped you commit all those ports
-
jbo
lw, no :>
-
jbo
lw, but I should be faster at building ports now.
-
jbo
it did a buildworld in 404 seconds
-
lw
with clang? i don't believe that actually
-
lw
it takes me about an hour to build clang and i don't believe your CPU is that much faster :-)
-
lw
although i do have HT disabled
-
jbo
well, it's what I observed. but I had an extremely busy week and only played around with it for a little while yesterday. will do "proper testing" over the weekend
-
jbo
the first run was 418 seconds
-
jbo
I had a hard time believing it too
-
jbo
it felt like a reverse scam
-
lw
rm -rf your obj directory and try again and make sure it builds toolchain, not just src... if it can really do that in 400 seconds i will reprioritise things to buy a new build system
-
dstolfa
lw: we've got a box that builds freebsd in ~5 minutes
-
lw
CPU: AMD Ryzen 7 5800X3D 8-Core Processor (3400.15-MHz K8-class CPU)
-
jbo
lw, it definitely built clang too.
-
lw
this is not a TR but it's also not super slow
-
jbo
lw, this is 24 cores, 48 threads at sustaining 4.2 GHz
-
jbo
and PCIe gen5 SSDs in mirror (if that matters (probably not))
-
lw
jbo: yeah but proportionally, if it takes me an hour with 8 cores, shouldn't it take longer for you on 24 cores
-
lw
or am i bad at maths
-
lw
hmm it is true the SSD in this system is hilariously slow, that probably doesn't help... i've been meaning to replace that
-
jbo
the base system is on two Crucial T700 disks
-
dstolfa
i think freebsd build caps at -j64 or so, no big gains past that
-
dstolfa
i don't recall the exact number, but 64 rings a bell
-
kevans
I still 'like' the feel of -j80
-
dstolfa
kevans: -j256 is also satisfying, but not very useful :D
-
jbo
lw, just did a make clean, rm -rf /usr/obj, make -j48 buildworld, ttyl.
-
lw
jbo: hopefully not too much later, lmk
-
lw
i waste so much time waiting for kernel builds i really do need something faster (although i knew that already...)
-
jbo
lw, kernel builds in what feels like < 60 seconds
-
jbo
GENERIC, that is.
-
dstolfa
lw: do you use META_MODE?
-
lw
dstolfa: yes, but building all of a kernel still takes a while
-
lw
let me do a quick test to compare...
-
dstolfa
my incremental builds take around 2 seconds for kernel
-
dstolfa
fresh takes around... i wanna say ~2 minutes?
-
dstolfa
and this is on a 16c/32t xeon
-
dstolfa
it does have nvme storage and plenty of RAM, though
-
lw
i ran into this earlier when i merged main into my local branch to test a one-line change and it recompiled the entire thing for whatever reason, even with meta mode
-
lw
make -j12 KERNCONF=GENERIC buildkernel 756.05s user 135.85s system 738% cpu 2:00.72 total
-
lw
so 2 minutes, not really that bad, it just feels slow
-
jbo
the youngsters these days are so impatient...
-
» dstolfa blinks in 3 hour long builds currently
-
lw
hey, i built electron28 earlier, that took like 10 hours
-
dstolfa
lw: yes, but do you have to do it every time you make a single line change? :P
-
lw
dstolfa: it basically feels like it yes... probably because it depends on so many things
-
jbo
>>> World build completed on Fri Apr 12 19:56:38 UTC 2024
-
jbo
>>> World built in 412 seconds, ncpu: 48, make -j48
-
jbo
that is with non-OC and stock RAM timings
-
lw
ok, i jsut deleted my /src/obj so let me try a buildworld to compare
-
jbo
(no EXPO)
-
dstolfa
i'm currently dealing with building v8 on morello, having to change a header to test something and it basically kicks off a fresh build because that change is inlined everywhere
-
dstolfa
pain
-
lw
fun build error of the day, i guess this is caused by the llvm 18 update
bugs.freebsd.org/bugzilla/show_bug.cgi?id=278336
-
VimDiesel
Title: 278336 – multimedia/ringrtc: build failure
-
jbo
lw, are we still waiting for your build to finish?!
-
» jbo hides under the table
-
lw
jbo: PID USERNAME THR PRI NICE SIZE RES STATE C TIME WCPU COMMAND
-
lw
6425 lexi 1 102 0 344M 293M CPU1 1 0:04 32.18% clang
-
lw
24394 lexi 1 101 0 291M 258M RUN 7 0:04 30.27% clang
-
lw
33559 lexi 1 98 0 291M 236M CPU5 5 0:03 22.27% clang
-
lw
52510 lexi 1 98 0 259M 220M RUN 1 0:03 22.17% clang
-
lw
58132 lexi 1 96 0 259M 212M CPU4 4 0:02 19.29% clang
-
lw
66594 lexi 1 95 0 231M 181M RUN 2 0:02 15.58% clang
-
lw
60076 lexi 1 94 0 231M 178M CPU3 3 0:02 15.09% clang
-
lw
84965 lexi 1 92 0 170M 130M CPU2 2 0:01 10.16% clang
-
lw
54243 lexi 21 20 0 1115G 211M uwait 7 17:47 0.88% QtWebEngineProcess
-
lw
73098 lexi 1 68 0 36M 16M wait 1 0:00 0.88% ccache
-
lw
49693 lexi 1 68 0 33M 14M wait 4 0:00 0.68% ccache
-
kevans
holy mackarel
-
kevans
ok, phew
-
lw
... i did not mean to paste that
-
lw
jbo always makes me paste stuff wrongly
-
jbo
so you still didn't learn how to paste? :D
-
jbo
ahahahaha
-
lw
let's try this again
-
lw
-
lw
i really need to script my IRC client to intercept multi-line paste and not send them
-
lw
although on the subject of top output, look at this
-
lw
54243 lexi 21 20 0 1115G 211M uwait 7 17:47 0.88% QtWebEngineProcess
-
lw
that's 1.1TB of virtual memory
-
lw
how is that even possible?
-
lw
like, what is it even doing to map that much memory
-
jbo
hmpf, I don't seem to be able to log into phabricator anymore
-
jbo
was there something happening? I was mostly "AFK" the past few weeks
-
lw
my account seems ok, or at least i can load the front page
-
jbo
never mind... it's not using kerberos
-
jbo
PEBKAC
-
lw
jbo: 24 CPUs and you can't even log into a website? smh my head
-
jbo
lw, :D
-
jbo
lw, still on my old system. only SSH'ing into the new one to buildworld for you
-
lw
meanwhile, buildworld still on clang
-
lw
so glad this builds the PowerPC and LoongArch targets for all those PPC and MIPS systems i don't have
-
jbo
we could play factorio in the meantime
-
lw
i would but i need to build dns/knot
-
lw
have literally been waiting all day for electron to finish building so i can do that
-
jbo
lw, still building world?
-
lw
oh no it finished
-
lw
>>> World built in 2919 seconds, ncpu: 8, make -j12
-
alepzi
kevans: ok back at it i'll tell you if the symlink method let jails start
-
jbo
lw, still faster than my current shit system
-
lw
jbo: remind me what your score was on the TR?
-
lw
or did you not try buildworld yet
-
jbo
lw, wtf? the 404 seconds was TR
-
lw
ah right
-
jbo
or 412 in the run I did just for you earlier
-
lw
2929/404 = 7.25
-
lw
24/8 = 3
-
lw
so your base CPU performance is 7.25/3 = 2.417x faster than mine?
-
kevans
alepzi: thanks; if not, `zfs create -u` to prevent it from mounting and just mount it yourself after it's created (or the ZFSBOOT_DATASETS we talked about)
-
jbo
lw, keep in mind that mine is powered entirely by hydroelectric power
-
lw
yours are like 5GHz turbo right, i guess that's about right
-
alepzi
nod
-
lw
5800X3D has a really low turbo clock even for Ryzen
-
jbo
kevans, how's the ecc stuff going?
-
kevans
jbo: just have to do the pkg(7) side now
-
jbo
kevans, nice :)
-
kevans
I looked at the libstdc++ bits and man, this is a royal pain in the ass
-
jbo
:((((((
-
jbo
would you happen to enjoy having royal pain in the ass?
-
kevans
figuring out with gcc's build system how to build just libstdc++, I'm not yet convinced that it's possible
-
jbo
kevans, wasn't there an alternative approach we discussed?
-
lw
what are you two working on?
-
lw
i hear libstdc++, i am interested
-
kevans
I don't typically enjoy it, no :-)
-
kevans
bare metal libstdc++ built against newlib
-
kevans
we have arm-none-eabi-newlib, but arm-none-eabi-libstdc++ would unlock some stuff jbo is trying to do
-
jbo
lw, I was complaining to kevans@ that arm-none-eabi-gcc is "useless" in it's current form :p
-
lw
ah
-
jbo
s/gcc/newlib
-
kevans
I think I had it building, but I think it wasn't actually using newlib
-
jbo
so because kevans is a lazy slacker I had to get a $6k PC upgrade to spawn VMs just to compile against Cortex-M targets :p
-
alepzi
:/
-
alepzi
$6k i guess you're an ecc enjoyer?
-
kevans
tbf the projects I was derailing on were significantly more fun
-
jbo
kevans,
-
jbo
alepzi, yes, ECC RAM. I'll never get non-ECC ever again. but I went for cheapo RAM because money is a problem at the moment.
-
alepzi
ya same
-
lw
"i bought a new $6k PC" "money is a problem at the moment"
-
alepzi
$6k turkish lira
-
jbo
well technically it's the company's PC, not mine
-
jbo
and my current "workstation" is 7 years old
-
jbo
hmpf... I don't think that I can explain this in a way that would make it sound better
-
jbo
let's just change topics
-
lw
pwned
-
lw
[#freebsd] <jbo> lw, keep in mind that mine is powered entirely by hydroelectric power
-
lw
wait you're Canadian?
-
alepzi
no he's from dubai where they burn oil to pump water up a hill then let it run down a hydroelectric dam for Clean Energy
-
jbo
lw, as you know. yes.
-
jbo
(I'm swiss)
-
jbo
the canadians of europe
-
jbo
here in the alps where I'm located, we get 96% hydroelectric and 4% solar power
-
alepzi
nice
-
jbo
not if you have to pay for it
-
lw
you'd think they could combine those two things are boil the water with solar power to generate electricity
-
jbo
also, did you just assume my gender? >:D
-
lw
jbo: so do you get 25Gbps Internet at home? i heard swiss people have this
-
jbo
lw, yes. although I only have 10Gbps at home.
-
jbo
I don't have the necessary hardware
-
lw
are you looking for a housemate? i have switches
-
alepzi
i'll come
-
jbo
lw, I actually am, yes.
-
alepzi
jbo bsd flophouse
-
lw
jbo: ok, can you move into our house and bring your internet with you?
-
jbo
I am currently in a 4.5 bed room 150m2 penthouse apartment I'm moving out of because it's too huge ass for living there alone (and again, money is a problem)
-
jbo
lw, not sure whether your bf would like that but sure
-
jbo
anyone who seriously wants to move in here with me has exactly 6 days to decide because my current plan is to move to a tiny one bedroom apartment soon
-
markmcb
using virtio-9p with bhyve. works great, but i noticed on reboot (of the FreeBSD host) the guest VM sometimes has failed to mount the passed through filesystems. i can connect to the guest "mount -a" and all is well. i'm guessing it's a timing issue on the FreeBSD host at boot. If I just reboot the VM, everything also works fine, i.e., it's only on an actual host reboot I have the problem.
-
lw
markmcb: what provides the filesystem on the host?
-
lw
(UFS, ZFS, NFS, ...?)
-
markmcb
zfs
-
lw
what are you using to start bhyve?
-
markmcb
vm: vm_enable="YES"
-
lw
hmm, that's more or less the same config i use (zfs, vm-bhyve) and i haven't noticed this issue
-
lw
markmcb: out of interest, if you edit /usr/local/etc/rc.d/vm to add 'LOGIN' to 'REQUIRE', does that fix the problem?
-
lw
(this is my go-to method to fix rc ordering issues since LOGIN runs after everything has started... although tbh i can't imagine that's the issue here)
-
markmcb
the other complexity is this guest is Ubuntu 24.04 running Incus (formerly LXD) ... another guest without Incus and also using 9p never has this issue
-
markmcb
lw: I'll try the LOGIN tweak
-
lw
i notice that rc script has a strange 'BEFORE' - 'dnsmasq ipfw pf'?
-
lw
i'm not sure why you'd want VMs to start before those services
-
markmcb
yeah, i was wondering about that too
-
lw
this may be nothing to do with the issue but i would try removing that as well
-
lw
although i think zfs filesystems should be mounted well before any of those
-
lw
unrelated, has anyone noticed this on 15-CURRENT?
-
lw
Apr 12 21:42:35 amaranth node_exporter[4926]: ts=2024-04-12T21:42:35.787Z caller=collector.go:169 level=error msg="collector failed" name=zfs duration_seconds=8.2479e-05 err="couldn't get sysctl: no such file or directory"
-
lw
all my node_exporters are logging this, even on systems that are definitely using zfs
-
lw
node_exporter_args="--no-collector.zfs" fixes it but i don't understand why it doesn't just work
-
markmcb
lw: that seems to have done the trick, thanks for the work around!
-
lw
markmcb: that's odd, i suggest filing a bug against sysutils/vm-bhyve because this shouldn't be required
-
markmcb
will do
-
alepzi
kevans: CONFIRMING that ln -s /mnt/jail /jail was enough to be able to start a jail in the setup phase of a scripted bsdinstall and run jexec shit on it
-
alepzi
now i'll rip that out and switch to the zfs create -u method