-
rtprio
EHLO
-
ivy
250-Welcome to #FreeBSD.
-
ivy
250 Continue
-
rtprio
EHLO
-
» rwp laughs so hard I snort at the SMTP conversation not quite happening
-
mason
EHLO there
-
mason
Doesn't generally work any more, but it was the traditional.
-
rwp
My system would reject that EHLO because the "there" is not a FQDN and does not resolve.
-
mason
rwp: Right. Today. Back in the day servers would shrug and say "sure".
-
rwp
Yes. It was the best of times, it was the worst of times, it was the age of wisdom, it was the age of foolishness, it was the epoch of belief, it was the epoch of incredulity, it was the season of light, it was the season of darkness, it was the spring of hope, it was the winter of despair.
-
yuripv
remiliascarlet: if you haven't figured it out already, xorg.conf man page says BusID should be "PCI:<bus>:<device>:<function>", and in your output "pci0:1:0:0" there are domain (0), bus (1), device (0), and function (0).
-
debdrup
-
remiliascarlet
yuripv: Then why does the FreeBSD handbook tell me to do "pci0:1:0:0" instead of "PCI:1:0:0"?
-
remiliascarlet
-
remiliascarlet
Pretty anal that I need to figure out that the handbook is wrong...
-
debdrup
patches welcome
-
the_oz
-
the_oz
I doubt they'd take too kindly to just copypasta this conversation referring to section and make it explicit from the outside, without a diff
-
remiliascarlet
Still, surprised to see that ChatGPT is more correct than official documentation. And ChatGPT is wrong about all sorts of stuff, but it is really good at translating languages or correcting grammar at least.
-
jbo
what software are people typically using for viewing/reading epubs?
-
o0x1eef
The general population ? Probably amazon / kindle. IME they have a monopoly over book content
-
jbo
nah, FreeBSD users.
-
jbo
as in: "on a freebsd system"
-
o0x1eef
Not sure. Maybe evince
-
ridcully
jbo: i check epub content with mupdf - but i don't use it to actually read it
-
jbo
thanks ridcully - good enough for me. mupdf plugin for zathura seems to work for that
-
sidh
Greetings
-
sidh
once I chroot in mounted BE with /bin/sh as shell , and cat a file , I have the error 'cat: stdout: Function not implemented' , did you already ,get that error ? Maybe some config file are missing ?
-
sidh
(devfs is mounted)
-
CrtxReavr
sidh, so you have an interactive shell in chroot? One you can type and get results from?
-
sidh
yes
-
CrtxReavr
echo foo
-
CrtxReavr
That work?
-
sidh
most of command work, but cat throw that error
-
CrtxReavr
ldd `which cat`
-
sidh
echo foo work
-
CrtxReavr
And now I'm giving you a new command to run.
-
sidh
/bin/cat: libc.so.7 => /lib/libc.so.7 (0x801067000)
-
CrtxReavr
Just that one line?
-
sidh
sorry ( had a call )
-
sidh
yes cat: stdout: Function not implemented
-
CrtxReavr
No, I meant the ldd output.
-
sidh
CrtxReavr: yes no additionnal info
-
sidh
i get the prompt back after
-
CrtxReavr
I dunno. . . definitely a weird issue.
-
CrtxReavr
Is your world in sync with your kernel?
-
sidh
I agree
-
sidh
it is a boot environment created from sets (base/kernel/lib32)
-
sidh
directly
-
sidh
but the host from which i run chroot, show different patch level between -k and -u (freebsd-version)
-
Tabmow
Does the file exist? ls -l /lib/libc.so.7
-
sidh
-r--r--r-- 1 root wheel 1957560 May 31 08:36 /lib/libc.so.7
-
Tabmow
If your your base system and kernel is out of whack, you may need to run a freebsd-update fetch and freebsd-update install - I would take relevant backups first.
-
sidh
ok will do that when the hypervisor will be less loaded
-
sidh
thank you Tabmow CrtxReavr
-
kevans
sidh: sounds like new binary on old kernel
-
kevans
cat(1) learned how to use copy_file_range(2) somewhere in the last couple of years, so you're probably hitting that. ktrace or truss could confirm
-
sidh
kevans: the context could match, I am testing a way to upgrade 12.3 systems directly to 14.1 with creating a BE directly from 14.1-R sets
-
sidh
kevans: once I boot on the new 14.1 BE, cat is running fine
-
kevans
sidh: right, that's not a supported configuration
-
kevans
new binaries will likely use new syscall, etc. that the old kernel cannot support
-
kevans
you can /usually/ get away with it if you're talking just two releases along the same branch, but shenanigans have happened there in the past, too, when it was really worth it
-
sidh
kevans: once booted on the 14.1 -release, I am using kernel and userland from 14.1 , right ?
-
sidh
I meant : once booted on the 14.1-R BE , sorry
-
nimaje
assuming you created it correctly, yes
-
kevans
correct
-
sidh
I know now strange things can happen while chrooting a newer release from an older release
-
kevans
we don't have anything like... holy shit, the name's escaping me.
-
kevans
kexec. to try a new kernel live
-
sidh
i never has such isolated cat command problem
-
nimaje
I'm supprised that 12.3 to 14.1 did work so well, but well, you only tested sh, ldd and cat?
-
yuripv
remiliascarlet: so did changing BusID help?