00:01:03 looks like the 5.11 support will bring it 00:01:12 with open pr and patch (code exists) 00:02:17 code branch: https://github.com/dumbbell/drm-kmod/tree/udpate-to-v5.11 00:02:18 Title: GitHub - dumbbell/drm-kmod at udpate-to-v5.11 00:08:09 crb: those are quite overkill for most bsd needs imo 00:08:30 you can get five year old radeons with gobs of memory and be fine for like $50-100 off ebay 00:08:48 nacelle: what would be something you recommend that is well supported out of the box 00:09:57 https://www.freebsd.org/cgi/man.cgi?query=radeon&sektion=4&format=html something from here :-) 00:09:58 Title: radeon(4) 00:10:22 I got mine from someone local for cheap, they had it collecting dust for a few years and it was time to give it a good home 00:10:42 crb: I have a 6600xt in a machine here, works fine with linux-drm, but getting all the pieces to work was an undocumented hassle, but that was last fall. 00:10:58 cgull: thank you for the feedback 00:13:58 Wait, no, I got that mixed up. That machine has an RX 550 or somesuch, the RX6600XT is in a Windows machine. 00:16:58 crb: https://www.freebsd.org/cgi/man.cgi?query=amdgpu&sektion=4&manpath=freebsd-release-ports is probably a better page to follow 00:17:00 Title: amdgpu(4) 00:17:16 amdgpu rocks. 00:22:10 thank you all! 07:04:26 G'morning. What do you use to run a Win VM as a guest in FreeBSD? I am running it with VirtualBox and my overall laptop performance is is terrible with the Win10 guest running. Are there maybe any settings to be made with VirtualBox? (set aside just 4GB RAM for that guest. I have 16GB on my laptop) 07:10:44 Does your CPU support virtualization? (For Intel ones, look for "VT-x" specification) 07:13:17 * parv once ran VirtualBox on Windows 10 without hardware support, while trying WSL2. Very slow response of FreeBSD was in the VM. Turned back to WSL fast. 07:18:02 parv: It does. https://www.intel.com/content/www/us/en/products/sku/122590/intel-core-i37020u-processor-3m-cache-2-30-ghz/specifications.html 07:18:15 FreeBSD is host and Win10 is guest. 07:18:34 Do you have that turned on (via BIOS)? 07:18:42 parv: Yes. 07:21:43 parv: I remember using Fedora as a host once having same kind of performance issues running a Win guest in VirtualBox. Switching then over to Virt-Manager changed everything for better. Is there something similar in FreeBSD? 07:22:56 I do not have much else to suggest. Sorry kodcode 07:23:19 parv: Thanks mate :) 07:23:21 Oh, there is byhve ... ? 07:23:39 s/byhve/bhyve/ 07:24:25 You can run a GUI on bhyve? 07:24:42 ... I may be mistaken but I think GUI won't be usable 07:24:54 No 07:28:12 It's got a VNC option right? 07:29:17 To view the console 07:29:54 Never tried it though 07:30:06 Have a look at https://www.ateamsystems.com/tech-blog/howto-windows-10-bhyve-w-freebsd-11/ 07:30:07 Title: HOW TO: Windows 10 Under Bhyve /w FreeBSD 11 - A-Team Systems 07:33:17 Also https://wiki.freebsd.org/bhyve/Windows 07:33:18 Title: bhyve/Windows - FreeBSD Wiki 07:38:29 Are you supposed to be able to compile the current source tree with a 13.0 system? 07:39:23 Should be possible 07:39:49 Did the process stopped for you when building 14? 07:40:25 *ugh*🤬 07:40:35 yes 07:40:43 I'm cross building for armv7 07:41:08 /usr/src/sys/netlink/netlink_domain.c:102:22: error: format specifies type 'unsigned long' but the argument has type 'uint64_t' (aka 'unsigned long long') [-Werror,-Wformat] 07:47:43 https://wiki.freebsd.org/arm -- arm7 is 32 bit; arm8|aarch64 is 64 bit. Take the following with a boulder of salt, you would somehow need to indicate the build process to use 32 bit "system" ** waves hand ** 07:47:44 Title: arm - FreeBSD Wiki 09:19:56 crb: how are you cross building? 09:21:27 (I use poudriere to do the heavy lifting for me: https://alpha.pkgbase.live/howto/howdo.html ) 09:21:28 Title: How did she do it?! 11:05:12 Ahem... shells/bash marked BROKEN ?? 11:07:08 Oh. ports_readline. Sorry. Carry on. 11:10:32 there is a pkg-message about it 13:32:27 This probably has been asked a lot, but is it possible to give a jail a fixed mac address? I want to IPv6 my network, but if the jail gets a different IPv6 address each time it reboots (EUI-64 algorithm?) it makes firewalling it a hell 13:34:52 They're EUI-64 after a change some time back, after FreeBSD got assigned its own range. 13:35:39 Maybe I'm missing something, but are you creating network ACLs based on the mac address? 13:36:03 Huh?!? I get a /56 from my ISP, which I have to "SLAAC" 13:36:12 Right. 13:36:42 debdrup: no, based on IP addresses, currently IPv4, but I will have to make FW rules for the IPv6 addresses 13:37:49 Well, if it's not described in the jail(8) manual page under the parameters, I don't think it's possible - but it's certainly something that seems like a good idea, so it'd be fantastic to be able to find a person who could work on it (or a company to pay someone for doing the work, preferably). 13:38:49 If you're using some jail manager, maybe it's possible. I know cbsd uses the same mac for a jail 13:39:41 I found this one to spoof mac addresses on physical NICs "ifconfig bge0 ether DE:AD:B0:0B:DE:AD" not sure if it works in a vnet, maybe someone tried already 13:40:07 hmm, forget that smiley :) 13:40:10 That indicates that jail(8) might be missing a parameter, because it shouldn't be possible for a jail manager to do it without jail(8)/jail(3) being capable of it. 13:40:46 debdrup: it boils down to what Sjottelsplak just wrote, so it's not so much jail feature in case of cbsd 13:41:00 Sjottelsplak: you can always use exec.start or exec.prestart for the ifconfig command 13:41:36 There's also exec.prepare, exec.prestart, and exec.poststart 13:42:12 It's a bit of a hack, but seems like it'd work fine. 13:43:28 okay, that ifconfig actually works in a jail, let's see how to incorporate that into my bootsequence 14:08:10 I am trying to build nanobsd image and I get this error: https://pastebin.mozilla.org/BeagYwiL 14:08:11 Title: Mozilla Community Pastebin/BeagYwiL (Bash) 14:08:22 any idea where to look for this issue ? 14:08:55 buildkernel and buildworld worked, this issue appears when installing world 15:16:19 meandrain: already expired 18:24:51 is there an easy way to figure out why a device doesn't work? I have a intel 8265 wifi card, which is also listed as supported, loads the driver (as far as I understand bsd) but it doesn't show up in ifconfig 18:25:35 murmel: what does dmesg say? 18:26:38 meena: couldn't find anything obvious but i scraped only a bit, as I can only use the live version of freebsd as of right now. 18:26:51 tried also the snapshot of 0930 of 14.0-current, no go 18:27:38 oh, specifically talking about 0x8086 / 0x24f3 / any / 0x0050 if this does help more 18:28:13 meena: is there an easy way to get data off of the live version? issue is my ssd is a luks encrypted ext4, so I assume no? 18:31:58 ext4 is supported, but out-of-band encryption isn't 18:32:35 ahh i remembered i still have somewhere a usb stick with zfs as the fs 18:33:06 so brb 18:35:42 murmel, "doesn't show up in ifconfig" as itself, or as wlan0? (Or 1 or higher if you have more than 1 Wifi interface)? 18:39:24 I don't know so hate to jump in here and cause problems but... 18:39:25 I recently found out about wifibox https://xyinn.org/md/freebsd/wifibox which might be of help for people suffering with a FreeBSD WiFi device problem. 18:39:26 Title: Fast & Stable WiFi with wifibox on FreeBSD |@fearedbliss 18:54:20 Not sure it would help if FreeBSD (or the driver) fails to recognize the interface, so I'd look at that first. 18:54:55 V_PauAmma_V: it doesn't show up at all. I only have loop and my ethernet 18:55:16 * V_PauAmma_V nods. PCI or USB? 18:55:20 pci 18:56:06 so interestingly, on fbsd, it only loads the driver, on ghostbsd it can scan but not connect, and on nomad it works perfectly fine oO 18:56:51 just reflashing 13.1 on the usb to try a bit more 19:00:41 So I'd start by looking at logs or dmesg as meena said, and also output from "pciconf -lev". 19:06:46 murmel: it will not show in ifconfig in any case, you have to create a wlan device on top of it 19:07:53 murmel: check the handbook please, https://docs.freebsd.org/en/books/handbook/advanced-networking/#network-wireless 19:07:54 Title: Chapter 32. Advanced Networking | FreeBSD Documentation Portal 19:10:40 V_PauAmma_V: well looked at dmesg, no errors at all. wanted to put it on the usb stick, but can't mount the zfs fs on the other usb stick, complaining about a ro fs. how would I get it to mount so I can put the logs on there 19:14:19 how did you "mount the zfs"? 19:15:22 zpool import usb, zfs load-key usb/data, zfs mount usb/data, and then it errors out with ro fs 20:05:04 meenayep 20:05:57 meena: I am simply doing a "make buildkernel KRENCONF=ARTYZ7 TARGET_ARCH=armv7" 20:06:14 meena: this has worked fine for me for ages 20:21:22 * meena tries to remember what she asked crb 20:22:09 meena: chuckle I was asking about should I be able to build a kernel for current with a 13.0 system 20:22:15 ah, right 20:22:36 not sure, tbh, 13.0 is going EOL soon 20:23:06 but also, what does your make.conf look like? 20:23:30 are you crossbuilding LLVM? 20:34:20 crb: ⬆️ 20:34:56 I have not made any changes to make.conf so it's stock or empty 20:35:12 I'm not sure what compiler it's building with off hand 20:48:13 in general buildworld will bootstrap the toolchain if the host's isn't sufficient 21:29:37 crb, KRENCONF <== you do realize you pasted this typo? 21:30:06 sorry KERNCONF, I typed it not pasted it 21:30:18 'k - just making sure. 21:30:35 CrtxReavr: yep, thank you 21:30:55 Too bad - would have been an easy fix. >=] 22:21:04 Kren in German is horseradish. And it comes to German via Czech, křen! 22:24:45 that is probably not very helpful… 22:25:40 crb: could you try build 13.1-STABLE? 22:26:23 * meena could check if her build server has managed to build armv7 recently 22:26:38 meena: yes I will but it will take me a while 22:27:29 I don't have ssh setup on this phone yet and it's bedtime 22:27:50 meena: no problem, thanks for the help 22:28:33 I really should check tho 22:32:02 crb: drwxr-xr-x 2 root wheel 235B Oct 3 08:19 14.snap20221003060926 22:32:02 lrwxr-xr-x 1 root wheel 21B Oct 3 08:19 latest -> 14.snap20221003060926 22:32:48 https://alpha.pkgbase.live/current/FreeBSD:14:armv7/ 22:32:50 Title: Index of /current/FreeBSD:14:armv7