01:39:21 FreeBSD group is available now on sxc as well. 🤓 01:39:24 https://simplex.chat/contact#/?v=2-7&smp=smp%3A%2F%2Fhpq7_4gGJiilmz5Rf-CswuU5kZGkm_zOIooSw6yALRg%3D%40smp5.simplex.im%2FiB0t9o7L9O1D34piCyD1VWhAxtl_t0xm%23%2F%3Fv%3D1-3%26dh%3DMCowBQYDK2VuAyEAnaP0ao-kcmh2xgbME6txT0MbCqsbb1_al-2xfGabQ2A%253D%26srv%3Djjbyvoemxysm7qxap7m5d5m35jzv5qq6gnlv7s4rsn7tdwwmuqciwpid.onion&data=%7B%22groupLinkId%22%3A%22oKja56r06FFwR4H_ImVVXA%3D%3D%22%7D 02:35:59 I was dumping /dev/mem searching for something and stumbled across this: https://0x0.st/8X2c.txt What part of FreeBSD keeps track of commands like this? All of these were executed in fish. 03:06:32 FragmentedCurve: presumably it's a just your shell's history tracking file or something 03:07:25 It still persists after clearing the fish history and rebooting. 03:08:46 finally, signal port was being difficult 03:08:50 electron32 package is evil 03:09:57 kevans: you're right, it's the fish history 03:10:27 i jumped to irc too quickly :) 11:41:27 polarian, janvhs: with wpa-psk you normaly pre-share a key by sharing some passphrase and that together with the ssid gets put into a keyderivation function to get the key, as it is easier to share some passphrase then a 256bit key (so 64 hex digits), so putting the psk in directly instead of the passphrase mostly helps that someone randomly seeing it can't remember it as easily 11:44:18 nimaje: ahhh interesting. I always assumed there was maybe some kind of communication going on. Thank you :D 12:41:59 i just recently setup a vm on oracle cloud (14.2) and when i try to do a ssh-copy-id to give my ssh, i am getting a permission denied error.. due to public key.. does anyone know of a way to send a ssh key without the ability to login because you do not have a public key? 12:42:40 it is a: Permission denied (public key) error 12:46:40 i have tried copy public key from my machine to the server and still give ms the same error message.. seems to be no other way to actually get it 12:48:58 well never mind.. it needs to goto authorized_keys file and not id_rsa.pub file 13:58:51 Hi, I have hotplugged a SATA disk but It doesn't appear in dmesg, How can I rescan the bus to allow the disk to be discovered? 14:12:06 I wonder. For the memstick image, is there a way to install things on it (basically, install into RAM), to be able to do various things if I'm using it as a rescue thingie? 14:12:17 I did manage to figure out a workaround, so I don't have an immediate need, just wondering. 14:14:03 I guess one option would be a "normal" install, with the memory stick as the install target, but I'm not sure how reliable that would be when moved between devices (in terms of being able to find the boot disk, kernel within it, etc) 14:38:23 DarkUranium: DarkUranium: so the ask is, can i get a memstick image, "boot it", add new packages to it, save to the original memstick.img to be able to use in the future for anythign? 14:40:17 voy4g3r2: minus the last part, just "add new packages to it" --- I just need them to persist until reboot. 14:40:33 Think a tool I need to install, most recently, this was sanoid/syncoid. 14:40:49 `pkg install` didn't work because /usr/local was read-only. 14:41:04 (though I didn't consider setting up a memfs/tmpfs in that dir ... mostly because it was 3AM :P) 14:41:32 yeah, from what i can see mounting the image in a temporary area.. do the magic and unmount 14:41:40 then write the newly updated image to a file 14:41:50 as the image is a read-only image because used for installs.. 14:42:05 or you could load the system with the memstick image.. then "drop to a shell" 14:42:12 and do work from there .. if you do not need it to persist 14:48:37 dropping into shell may require getting things like network operational along with an ip address.. 14:48:47 but i have done that a few times and worked for me.. YMMV 18:52:00 nimaje: ah cool, but the key deyderivation function is one way or can be reversed? 20:21:31 FYI, don 20:22:21 FYI, don't attempt `zfs destroy data01/fs1@s1%s60000 (delete 60K) snaphots. Your system will bork. ;) 20:22:53 I do this so you don't need to. https://dan.langille.org/2025/01/24/is-deleting-empty-snapshots-faster/ 20:59:05 how do I find out what packages from a particular category are installed locally? Like I want to see which lang/* packages are installed locally, how would I do that? 21:05:13 I should be able to use pkg-query(8) for that, I believe 21:06:21 I was reading the man page for that, but didn't seem obvious. Might also be the jet lag from travelling as wel 22:17:04 so I'm trying to do this: pkg query -e '%o = lang/' %n-%v but get no output for that, when I have 51 packages installed from lang/ 22:20:44 never mind, Origin is of the pattern category/name hence need to use glob patterns 22:21:01 so the following worked: pkg query -e '%o ~ lang/*' '%n-%v'