00:01:51 ^ 00:11:17 tuaris: yeah, should be fine; 00:11:31 even without ids, in my experience 00:13:51 cool. Something else I just noticed... unless I am missing something, but it looks like having lz4_compress turned on recovers most of the space lost when using raidz1 or raidz2. Unless these online ZFS calculators are wrong? 00:14:53 The calculator says I would only get 6 TB out of 4 3TB discs, but in practice I am seeing the virtual device with 11 TB 00:16:15 Compression is hard to predict, though. 00:17:21 Strange. Total: 11.95TB | Allocated: 7.84TB | Free: 4.1TB 00:17:22 The files on that are already heavily compressed h.264/h.265 video files 00:20:31 you can see the compression factor in zfs: 00:20:34 zfs list -p -r -t filesystem -o space,dedup,compression,compressratio 00:20:34 00:24:52 pertho, I have used it; makes some difference. What we need is a methodological method to measure how much power saving is there? 00:25:01 s/?// 01:21:06 What iso image do I download to to put it on USB stick? 01:27:19 sn00p, the memstick one 01:27:41 how do you burn .img 01:27:49 from linux or bsd 'dd' 01:28:15 from windows rufus or .. there is another one 01:28:21 betty aesther or something 01:32:05 ah that was it https://www.balena.io/etcher/ 01:32:06 Title: balenaEtcher - Flash OS images to SD cards & USB drives 01:32:18 mac I THINK would also have access to dd 04:09:45 Is there a way to apply encrypted swap settings (https://people.freebsd.org/~rodrigc/doc/handbook/swap-encrypting.html) by restarting a service or something, anything other than rebooting? 04:13:52 oh, there's actually a swap service. 05:17:49 can also do swapon $DEVICE.eli and it will know because of .eli 05:19:41 ah you said the settings..i think it will use the settings you specified in /etc/fstab if you do it with swapon, but not sure 05:20:47 hmm, actually doesn't seem to 05:23:38 might work with swapon -aF /etc/fstab 06:14:13 i think -F is optional unless your fstab moved 08:43:57 cool, thanks! 14:07:06 does FreeBSD know when headphones are plugged in to switch to them? Seems like it doesn't with snd_hda 14:08:11 do I have to mess with that pindump nonsense? 14:08:42 seems like an awful lot of faffing about just to get something basic as plugging in headphones and switching from unit '1' to unit '0' :/ 14:49:14 pertho: most desktop environments keep track of that for you 14:49:24 but I have no idea how they do it 17:38:14 you have to mess with pindump nonsense, yes 17:39:22 what is pindump? 17:41:55 hint.hdac.0.cad0.nid24.config="as=1 seq=1 device=Line-out" (pasting example from snd_hda(4)) 17:43:01 oh 17:44:00 if it seemed out of context, i was replying to a 3 hour old message above :D 17:44:23 no, i see it all, just haven't had to fuck around with that 18:07:48 yuripv: seems to me, you could maybe do that they devd 18:09:23 https://man.freebsd.org/devd.conf(5) 18:09:24 Title: devd.conf(5) 18:14:33 (then again, there's lots of things i keep thinking devd should be capable of, and much of the time, it disappoints me) 19:14:09 yuripv: FreeBSD could do with a decent guide on translating pindumps to device hints in the proper way 19:17:50 in the end I ended up needing to set dev.hdac.0.polling=1 in sysctl.conf, and adding hint.hdaa.1.nid20.config="as=2 seq=0 device=Speaker conn=Fixed ctype=Analog loc=Internal" and hint.hdaa.0.nid21.config="as=2 seq=15 device=Headphones conn=Jack" to device.hints 19:18:14 so many knobs and dials. 19:32:53 ah, right, you're switching your system to jack 19:39:35 meena: no, not jack the sound subsystem 19:39:53 just switching output based on plugging in headphones (or unplugging) 19:52:57 ah, must be someone else in here 20:16:30 I think the restic package in quarterly for FreeBSD 13.1 (0.14.0_2) is broken badly.. all the operations were broken and even running a check on a repo didn't work. I downloaded the release off the github for freebsd_amd64 and it works fine. 20:17:11 ah never mind.. something else is happening.. restic really doesn't like running on freebsd for some reason 20:29:04 I suspect it was some sysctl knob/dial.. I removed, rebooted.. and one of them must have made the sftp connect bork itself. Interesting. 20:29:39 So PEBCAK? 20:30:53 possibly :D Need to figure out which one borked it :) 20:43:14 What is the attraction of restic? 20:52:38 deduplication of backups.. and runs faster than borgbackup 20:53:30 but I suspect some kind of issue with the wireless driver now.. as during a period of time the machine was sending a lot of data, it suddenly just dropped off the network (still had an IP but couldn't connect anywhere) 20:54:59 had to run service netif restart to get it back 21:27:57 https://github.com/freebsd/freebsd-src/blob/main/sys/sys/mount.h#L792 As you can see here freebsd has a function vget which gets a vnode by asking the file system driver but it identifies it via an inode number but when I was looking at the vnode struct I saw no ino_t 21:27:57 but it has a void* to private data where the file system can save private data for the vnode, is the ino_t in there? 21:27:57 I tried looking for it in a filesystem driver if they put a ino_t in that void* struct, but I was not able to find it. 21:27:58 This way or else they have a map there the inode number is the key and the vnode itself the value, but in every case the file system driver has to keep track of which inode number belongs to which vnode, right? 21:27:58 Title: freebsd-src/mount.h at main · freebsd/freebsd-src · GitHub