-
PaddyMac
Has Steam been tested with FreeBSD 14-current? I'm having errors preventing it from running, and I'm wondering if there is a problem with my configuration or it's just incompatible with 14.
-
PaddyMac
These are my errors:
pastebin.com/yjh49Lnd
-
VimDiesel
Title: $ steam-installDownloading Steam...fetch:
repo.steampowered.com/steam - Pastebin.com
-
rtprio
PaddyMac: have you checked out games/linux-steam-utils ?
-
grahamperrin
Where is the charter for the freebsd-doc mailing list?
-
jonusenet
where can i talk about freebsd dev talk? including kernel and userland apps
-
RhodiumToad
here or in #freebsd-dev
-
jonusenet
ty
-
grahamperrin
-
VimDiesel
Title: Discord
-
grahamperrin
– that is, #devguide, with #kernel nearby.
-
RhodiumToad
any autofs users around?
-
rtprio
i got it working not too long ago
-
RhodiumToad
which features are you using?
-
rtprio
let me boot that up and see
-
rtprio
not much, apparently: "/home auto_home -nobrowse"
-
RhodiumToad
I found a fairly nasty bug that happens most obviously if you try and use both -media and -noauto maps
-
RhodiumToad
-
VimDiesel
Title: 272446 – automount -c clobbers flags of mounted direct map entries
-
debdrup
Speaking of autofs,
freshports.org/sysutils/devd-mount landed not too long ago.
-
VimDiesel
Title: FreshPorts -- sysutils/devd-mount: Automount tool utilizing devd notifications
-
debdrup
I'm only using autofs for /net so I don't suspect I can be a lot of help.
-
mikoto-chan
where is libclang.so on freeBSD?
-
parv
Somewhere in /usr/lib*?
-
RhodiumToad
for the base system? I don't think there is one
-
RhodiumToad
applications that use libclang need to use one of the llvm ports
-
parv
Sorry. As RhodiumToad mentioned, for llvm15 found in /usr/local/llvm15/lib
-
RhodiumToad
(applications have to link to a specific llvm version because they're not generally compatible)
-
mikoto-chan
RhodiumToad: so I _need_ to get libclang from ports?
-
RhodiumToad
if you're building an application that needs libclang, then yes, you need to install one of the devel/llvm* ports
-
debdrup
llvm in the base system isn't the complete llvm collection, it's basically just enough for the base system
-
debdrup
there are good reasons for this (though right now they escape me)
-
parv
Is it not possible to build whole & everything llvm+clang by twiddling some knobs?
-
RhodiumToad
the main reason is to not make the llvm ABI part of the base system ABI
-
RhodiumToad
parv: that's what the ports are for
-
meena
base clang/llvm is stripped of everything non essential for a compiler, because if it wasn't, we'd have to think about ABI compatibility
-
» debdrup nods at RhodiumToad and meena
-
debdrup
i seem to recall a few other reasons, but they're "minor" reasons compared to that major one
-
PaddyMac
rtprio Yes. That is what's failing to start. As t turns out, I emailed the maintainer last night. I had a reply this morning saying that a fix is in the repo and should y in ports in a couple of weeks. So it's a known issue.
-
yuripv
AllanJude: hi, do you know if user vdev properties on FreeBSD are not settable (returning EROFS) by choice, or is it a bug?
-
CmdLnKid
yuripv, how are you trying to set these ?
-
CmdLnKid
assuming via zfs set ...
-
yuripv
no, using zpool set, of course
-
CmdLnKid
one of the two ;-)
-
yuripv
e.g. zpool set com.example:spare=foo data nda1p1
-
CmdLnKid
k
-
yuripv
ioctl(4,0xc0185a56 { IORW 0x5a('Z'), 86, 24 },0xeef7c98f928) ERR#30 'Read-only file system'
-
yuripv
it shouldn't be :)
-
CmdLnKid
interesting
-
CmdLnKid
have you also tried setting debugflags=16 "allow shooting yourself in the foot mode", have plenty of backups just in case
-
yuripv
pre-defined properties (e.g. zpool set comment=foo pool vdev) are ok, it's only the problem with user properties
-
yuripv
that sysctl is completely unrelated, this is zfs thing and properties are stored in per-vdev zaps
-
yuripv
i was just too lazy to look in the code and thought a quick answer would do :D
-
CmdLnKid
yeah was thinking maybe it had something to do with it being a raw vdev
-
CmdLnKid
maybe detach the vdev first ? then set ?
-
yuripv
it's not how it works...
-
CmdLnKid
i know i know shouldn't be that way
-
CmdLnKid
just making a few initial guesess
-
yuripv
you can't set properties on something that does not exist :)
-
yuripv
as i said, predefined properties are ok, the problem is only with user-defined properties, so anything outside of this scope is unrelated
-
CmdLnKid
k