-
darwin
how do I change ttyv* foreground & background colours and optionally save setting?
-
ngortheone
is there a way to enable dtrace for users?
-
ngortheone
i.e. not requrie root privileges to trace user-owned processes?
-
kenrap
Hi, I'm trying to write a port that requires inotify_init and I've already added libinotify as part of LIB_DEPENDS but the build still acts like it's an "undefined symbol". Can someone lead me in the right direction?
-
V_PauAmma_V
You may get more expert help on porting in #freebsd-ports on Libera. But they'll probably want something more to work from, like a pastebinned build log showing the error.
-
hwpplayer1
hi FreeBSD People!
-
puddinghead
hey
-
puddinghead
i'm planning to start dual booting windows and freebsd, any tips?
-
kenrap
Keep it simple by installing FreeBSD on one storage drive and Windows on another and use your UEFI/BIOS's boot manager to select the OS to boot?
-
hwpplayer1
he or she is not here as far as I can see
-
kenrap
Ah, skimmed it.
-
hwpplayer1
np
-
kenrap
Honestly, I would prefer to GPU passthrough an nvidia card to a Bhyve VM running Windows for gaming and avoid dual booting.
-
kenrap
Waiting 14-RELEASE for that.
-
yuripv
kenrap: why do you think it will be supported in 14?
-
yuripv
i can only find changes for intel iGPU passthrough
-
mage
from time to time I'm getting:
-
mage
(da0:mrsas0:1:0:0): READ(10). CDB: 28 00 33 9f ac 48 00 00 f0 00
-
mage
(da0:mrsas0:1:0:0): CAM status: SCSI Status Error
-
mage
(da0:mrsas0:1:0:0): SCSI status: OK
-
mage
any idea what could be the cause of this?
-
mage
this is on a Dell r340 with H330 HBA
-
meena
mage: so, something is checking CAM for status, but it's too busy to produce a status? or something is causing a hickup? and then it catches up and says everything is fine? (wild guesses)
-
mage
meena: I don't know.. I get some CKSUM errors afterwards but a zpool scrub doesn't show any additionnal error
-
mage
smart status is OK too
-
mage
this is on 12.4-RELEASE
-
hwpplayer1
hi FreeBSD People !
-
xtile
Hello hwpplayer1 person!
-
hwpplayer1
xtile: how are you doing ?
-
xtile
Pretty good. Just chatting. (on my FreeBSD machine)
-
hwpplayer1
We are building a local Turkish community btw
-
xtile
Nice.
-
hwpplayer1
thanks xtile
-
kenrap
yuripv: I recall finding out about it being mentioned in r/freebsd. I also tested 14-CURRENT recently and it works, even with the nvidia drivers in Windows and without blue-screening. Bhyve needs a bit more ironing out and it will be awesome.
-
yuripv
that's good to hear, really, might go the same way
-
yuripv
kenrap: which card btw?
-
kenrap
I passed through an EVGA RTX 3080Ti card
-
kenrap
#bhyve
-
kenrap
Sorry
-
yourfate
my freebsd 13.2 on an rpi seems to hang: I can't LS a certain directory on a mounted zpool, LS just hangs indefinitely
-
yourfate
so I did `doas reboot`, and that also hangs
-
yourfate
I can do other stuff on the system just fine
-
yaazkal
morning
-
yourfate
is there a way other than `reboot` to force a reboot?
-
RhodiumToad
reboot has several options
-
yourfate
oh, it has 100% usage on all cores
-
RhodiumToad
if you have a filesystem hang in reboot, then reboot -q is a bigger hammer (doesn't unmount filesystems first) and reboot -qn is an even bigger hammer (doesn't flush dirty buffers)
-
yourfate
and I keep seeing this in htop: ` sh -c logger -p local7.warn -t ZFS pool I/O failure, zpool=$'ext-pool' error=$'6'`
-
yourfate
that might be it
-
yourfate
if I try to umount it I get ` zfs unmount ext-pool
-
yourfate
cannot open 'ext-pool': pool I/O is currently suspended`
-
RhodiumToad
reboot -q is usually a fairly safe choice (obviously not ideal, but usually doesn't scrag filesystems)
-
RhodiumToad
reboot -qn is worth a try if reboot -q is hanging
-
RhodiumToad
if even that doesn't work, time for a hardware reset or power cycle
-
yourfate
i'm trying to clear the zpool error right now with `zpool clear -nFX ext-pool`, following stack overflow
-
yourfate
i'll give that a few mins
-
yourfate
if it doesn't do anything I'll try the reboot -q
-
yourfate
-q or even -qn didn't stop anything, I can still open new tmux tabs. I shall have to do the power dance
-
yourfate
pray for my SD card
-
yourfate
oh, one more idea, i'll unplug the external pool that erroring, maybe that'll let it reboot
-
yourfate
not even `shutdown -np now` ran as root does anything other than send the `wall` to every console
-
RhodiumToad
shutdown is a high-level rebooter, if reboot doesn't work then shutdown certainly won't
-
yourfate
I unplugged it, the rpi was very hot to the touch
-
RhodiumToad
shutdown tries to stop all services before rebooting, whereas reboot just kills processes at best
-
RhodiumToad
if it was pegged at 100% on all cores, not surprised
-
yourfate
yes, and that maybe for at least a day :D
-
yourfate
:/ its not comming up, time to bust out an hdmi cable to see what it prints
-
yourfate
ah, without the usb drive it booted
-
yourfate
I could then re-mount the pool
-
CrtxReavr
Guess I've been lucky in that I've never seen reboot not work. . .
-
CrtxReavr
Have seen 'shutdown -r' not work.
-
Beladona
I am setting node javascript heap size. that probably depends on your OS. there seems to be no hard-coded limit
github.com/search?q=repo%3Anodejs%2…max-old-space-size%22&type=code&p=1 If I give 12000 or so, it gives heap out of mameory error. If I give more, it said invalid value. What should be done here/
-
VimDiesel
Title: Sign in to GitHub · GitHub
-
Beladona
Something wired is happening. An app says `rror: ENOSPC: no space left on device, open '/li-images/p...` but `zfs list` says `zroot/li-images 177G used 55.9G avail 177G Ref /li-images/ Mountpoint.`
-
RhodiumToad
what app?
-
Beladona
its a nodejs app
-
RhodiumToad
my response to weird errors is usually to ktrace the offending process and look for the real underlying error, since often what the app reports is not closely related to what the kernel reported
-
Beladona
RhodiumToad ok
-
s2r
I'm getting some vulnerabilities warning in the daily cron checks regarding some py9 libraries is there any way to upgrade them? I tried pkg upgrade unsuccesfully. Maybe related to this bug?
bugs.freebsd.org/bugzilla/show_bug.cgi?id=270358
-
VimDiesel
Title: 270358 – devel/py-setuptools: update to 67.7.2
-
Schamschula
s2r: seeing the same. Happily running py311-setuptools 67.7.2 under MacPorts.
-
s2r
Schamschula: I tried with latest in pkg/FreeBSD.conf but that didn't upgrade those packages either.
-
Schamschula
s2r: the ticket hasn't been closed. In other words, no change has been committed.
-
darwin
how do I change ttyv* foreground & background colours and optionally save setting?