00:19:27 i've put a zfs mirror on a couple of external usb drives. i wanna start over so what's the right way to clear the drives? do i even need to do anything (like gpart destroy -F ...) or can i just gpart create... zpool create...? 02:54:29 demido: as long as the data is backed up, unmount all the drives, in the zpool.. execute zpool destroy , then rebuild 02:55:00 ok ty 03:19:08 ok got external usb nvme drive setup with gpt partition and zfs! i ran gpart create -s GPT da1, then gpart add -l foo -t freebsd-zfs -a 1M da1, then sudo zpool create extrn gpt/foo, then chown -R demido:operator /extrn, then copy files into /extrn, then zpool export extrn. do i also need to umount da1 for clean unplugging, or is zfs export enough? 05:46:18 anyone reply after i got d/c? 06:30:07 does cut an paste work from any of the vnc server/clients to the client host? Ie I have a vncviewer on a Mac can cut and paste be made to work between the vnc session and the Mac? 07:23:49 I must pull my finger out and write a report for the next quarterly 07:39:36 where was your finger dare i ask? 08:01:24 figuratively not doing any useful work 08:02:00 so it wasn't in ur bhole right? 08:12:19 demido: there's nothing to unmount after zpool export as it obviously unmount all fs before exporting the pool 08:12:55 ok ty. i just thought maybe there were 2 layers since i put gpt partition on disk before adding zpool create. but now i know, tyvm! 11:18:59 crb: its possible with some combinations, but likely you'll need to experiment to find a working one depending on client & target OS. 11:21:25 crb: look through e.g. tigervnc https://tigervnc.org/doc/vncviewer.html IIRC its enabled by default there 11:37:19 having a time trying to find a 1 pcie x16 to 2 x8 riser with notches open in the back so i can put an x16 card in an x8 slot 11:37:57 notches on the back of pcie slots should be the standard 14:57:22 when I running freebsd-version -k -r -u I get this https://pastebin.com/Fz2GcD3S , but when I running freebsd-update fetch install it says No updates needed to update system to 14.2-RELEASE-p3. , No updates are available to install. 15:07:28 I just updated a infrequently used FreeBSD desktop system to Plasma6, via pkg upgrade. After typing in my password the login screen goes black (with mouse cursor) for a moment and cycles back to the same login screen. I'm using the same password that worked just fine under Plasma5 earlier today. 15:07:49 nwe: most likely, -p2 and -p3 didn't touch kernel code so it was not rebuilt for these patch levels 15:09:01 nwe: looking at https://www.freebsd.org/security/advisories/ and https://www.freebsd.org/security/notices/ it seems to be the case here 15:31:13 Schamschula, anything logged? 15:31:35 I'm guessing something's crashing and kicking you back to the login screen. 15:32:16 cyric: aha, then I understand. Thanks for the help and the link :) will look there too. 15:35:07 CrtxReavr: Any particular log I should be looking for? 15:38:10 Start with just running 'dmesg' 15:38:21 Then /var/log/message I suppose. 15:38:36 Maybe look for core files? 15:39:23 Strange, but I only see one file in /var/log: utx.log 15:41:22 I've disabled sddm. I'll see if I can manually start the desktop 15:42:50 How are you launching ssdm? 15:43:18 Via /etc/rc.conf 15:43:40 Hmm 15:43:59 Honestly, it's been a while since I ran a FreeBSD workstation. 15:44:29 If I don't disable it there, my only option is to boot int single user mode. 15:44:38 s/int/into/ 15:45:12 The prescribed method back the, was to launch it via /etc/ttys on the ttyv8 line. 17:43:24 https://download.freebsd.org/snapshots/ISO-IMAGES/15.0/ 17:43:35 seems broken 18:55:43 Hey, I'm completely new to (Free)BSD, I want to try it out for a personal server with only one user. What are some benefits over a Linux install ? I've been curious as I moved most services to podman recently, and BSD provides jails which some argue are better. 18:56:49 xaltsc: you can run podman on freebsd with jails as its backbone 18:57:54 getz: You mean as the container runner ? 18:58:00 A bit work to run podman pods created on 18:58:12 Linux, but you can easily recreate them for FreeBSD 18:59:17 i used linuxulator and it worked fine 18:59:24 xaltsc: To simplify: you can run jails or you can use podman which uses jails underneath. But out-of-the-box existing podman images created on Linux won't work 19:00:31 getz: first time I hear this name. "Linux binary compatibility" - how is it different than linux.ko, linux64.ko etc? 19:01:08 to run linux stuff just append --os=linux to podman 19:01:12 getz: Asking out of curiosity. I run linux VMs under bhyve and have no need to change this approach. 19:02:40 Do the memstick images come with ssh running btw ? 19:02:51 getz: ok, as I understand this software loads the modules that I mentioned. 19:03:29 xaltsc: iirc no and you need sysrc sshd_enable="YES" 19:03:48 regis: yeah i think we're talking about the same stuff, theres also linuxkpi for drivers but thats something else 19:05:49 getz: Yup, I'm running AMD GPU drivers via linuxkpi and can't wait for proper 5/6GHz WiFi support through linuxkpi ;) 19:06:58 regis: Actually, I meant the RPI images. Can I just edit a file on the sdcard to enable sshd before booting it ? 19:07:56 xaltsc: Souinds doable but you need to stick this card into system capable of mounting UFS or ZFS (unsure if RPi images have ZFS nowadays) 19:09:29 I have ZFS on root on my Laptop, but UFS is definitely foreign to me. Why does BSD use this ? 19:10:11 It works and not every use case calls for using ZFS. 19:11:36 My question may then be rephrased as: why was ext2/extN created (since it seems to be derived from UFS) ? 19:16:06 EXT2 is based on ideas taken from UFS. It's a simple filesystem that just works. UFS2 later added some features like journaling but overall it's rather poor where it comes to configurability. ZFS however may not be ideal on machines with low amount of RAM like RPi and behaves differently in many scenarios. UFS is simple, ZFS is a heavily configurable, completely different filesystem which not 19:16:08 every use-case need. It may for example become memory hungry. As I said: not every use-case calls for using ZFS. 19:18:03 extfs was created because the purpose of Linux was to create a new kernel from scratch. if they just copied everything from existing Unix systems, there would be no point to it 19:19:06 (also, the licensing state of the BSD source code was much less clear back when Linux was created, and the original 4-clause BSD license isn't GPL compatible) 19:19:06 License-wise they likely couldn't slap GPL on code copied from BSD. 21:33:42 Update on my desktop issue: I followed the suggestion from https://forums.freebsd.org/threads/is-it-possible-to-upgrade-plasma5-plasma6.97141/ and completely removed plasma[56] qt[56] and kf[56] and reinstalled plasma6-plasma and sddm. I can now log in to the GUI, but only if I first choose the Plasma (X11) desktop session in the login in screen. 21:34:34 Is there a way to default to that? It seems to default to Plasma (Wayland), which is rather broken. 21:37:11 wayland is default 21:37:48 on some gpu's it's almost ok 21:38:28 man sddm.conf does give a hint! DisplayServer! 21:38:48 But there would need at leat a decade for wayland to become stable 21:39:44 DisplayServer is X11, not so much WayLand 21:40:13 Probably never will work with wl 23:10:41 From my understanding the KDE Plasma team is likely to "start" work on possible Wayland support after 6.4 is a thing 23:11:33 I'm new to FreeBSD and just listen in on what that team has to say. So consider this more a rumor than a fact