--- Log opened Wed Jan 15 00:00:17 2025 --- Day changed Wed Jan 15 2025 00:00 < seninha> hi, how can i use base openrsync,scp,ssh,etc to copy relative paths from local machine to a directory on a remote host and keep the same path relative to that directory? 00:02 < Bradipo> Relative to *which* directory? 00:02 < seninha> Bradipo, to destination directory on remote rost. 00:02 < Bradipo> Is rsync in base? 00:02 < Bradipo> Oh, I guess openrsync is... never used it. 00:03 < Bradipo> But if it's anything like rsync it should keep paths correctly. 00:03 < Bradipo> Or you could use tar or even dump/restore. 00:03 < seninha> Like copy foo/bar/c.c foo/bar/c.h foo/pee/wat README to remote.net:/var/www/htdocs/ 00:04 < seninha> such that they lend in /var/www/htdocs/foo/bar/c.c /var/www/htdocs/foo/bar/c.h etc 00:04 < seninha> openrsync can do something similar with -r (recursive copy), but only for an entire subtree 00:04 < Bradipo> I see, so you want to copy a specific file but have it also retain the complete _relative_ path. 00:05 < seninha> `openrsync -r foo/ README remote.net:/var/www/htdocs` 00:05 < seninha> yep 00:05 < seninha> rsync can do that, but am wondering if could also do that on a base installation 00:06 < Bradipo> Right, but you don't want openrsync -r foo/ you want openrsync foo/bar/c.h 00:06 < Bradipo> I was about to say that rsync can do it. :-) 00:06 < Bradipo> Don't know about openrsync since I've never used it. 00:06 < seninha> yep, subtree contains files i dont want to copy 00:07 < seninha> And also do that on a single ssh connection (or else i could openrsync each file, but that's more conn time) 00:07 < seninha> hmm 00:07 < seninha> tar(1) 00:08 < seninha> untar a whole tar bomb via ssh 00:08 < Bradipo> tar can do just specific files. 00:08 < Bradipo> You don't have to tar the entire thing. 00:08 < seninha> exactly 00:13 < Bradipo> The rsync option is -R 00:14 < Bradipo> I don't see a similar option for openrsync. 00:16 < Bradipo> Pity, because one of the scripts I use for backup uses -R. 00:17 -!- deepesttoaster [~deepestto@user/deepesttoaster] has quit [Ping timeout: 245 seconds] 00:18 < PapaChub> Is it possible to pass, e.g., `-o KexAlgorithms="ecdh-sha2-nistp256"` to ssh-keyscan? It doesn't like the `-o` command-line option, and it doesn't seem to read ~/.ssh/config or /etc/ssh/ssh_config, etc. 00:18 < Bradipo> Nope. 00:18 < PapaChub> Bummer 00:19 < Bradipo> ssh-keyscan doesn't handle a lot of things that would be useful. 00:19 < Bradipo> I've asked this same question before. 00:19 < Bradipo> You can do -t ecdsa, but that won't restrict it to specific KexAlgorithms, unfortunately. 00:20 -!- wnh [~Thunderbi@user/wnh] has quit [Ping timeout: 245 seconds] 00:20 -!- sjg [~sjg@user/sjg] has quit [Ping timeout: 276 seconds] 00:22 -!- sjg [~sjg@user/sjg] has joined #openbsd 00:22 -!- BillyZane [~BillyZane@user/BillyZane] has joined #openbsd 00:22 < PapaChub> We've FIPS-encumbered -- I mean FIPS **enabled** -- an Ansible server... I could add `KexAlgorithms -curve*` to all the client `sshd_config`s... maybe using Ansible... BUT! 00:23 < Bradipo> What specifically is ssh-keyscan doing wrong though? 00:24 -!- ficonni [~ficonni@178-223-139-140.dynamic.isp.telekom.rs] has quit [Quit: Lost terminal] 00:24 < PapaChub> It's dying with "kex_gen_client: Key exchange type c25519 is not allowed in FIPS mode" and not falling back to, e.g., ecdh-sha2-nistp256 00:24 < Bradipo> You want it to fail if the correct KexAlgorithms isn't present on the server? 00:25 < Bradipo> ssh-keygen is dying? 00:25 < PapaChub> It works if I "subtract" the `curve25519-*` algs 00:25 -!- \subline [~join_subl@24-246-63-252.cable.teksavvy.com] has quit [Ping timeout: 252 seconds] 00:25 -!- gman999 [~GMan999@user/gman999] has joined #openbsd 00:25 < Bradipo> Well, ssh-keygen cannot "subtract" anything because 1) it doesn't read the sshd_config, and it doesn't accept -o. 00:26 < PapaChub> Dying is too strong a word; "failing to produce a public key" 00:26 < Bradipo> Yeah, I assumed that's what you meant. 00:26 < PapaChub> sshd_config on the remote machine(s) 00:26 < PapaChub> Where sshd *is* running 00:26 < Bradipo> Is the remote machine FIPS-encumbered? 00:27 < Bradipo> Or is it the client that is FIPS-encumbered? 00:27 < PapaChub> client 00:27 < Bradipo> So there must be some tendril that's inserting itself into ssh-keyscan and preventing it? 00:27 < Bradipo> Probably some crypto library that it's linked against that is doing stupid things. 00:28 < PapaChub> Yup, that's what FIPS mode does: hijacks all your crypto libraries so whenever you try to do anything "weak", like MD5, it barfs 00:29 -!- zcheng3 [~zcheng3@d104-205-176-6.abhsia.telus.net] has quit [Ping timeout: 252 seconds] 00:31 < thrig> hopefully without bugs, like when a selinux library was used to help gain root on linux due to an error in sudo 00:31 -!- redruM [~redrum@user/redrum] has joined #openbsd 00:32 -!- deepesttoaster [~deepestto@user/deepesttoaster] has joined #openbsd 00:32 -!- tvtoon [~The_cUnix@user/tvtoon] has quit [Quit: "Rumble Bundle"] 00:33 -!- \subline [~join_subl@24-246-63-252.cable.teksavvy.com] has joined #openbsd 00:34 < PapaChub> Registering for an extended validation certificate, after they make you jump through all these hoops to notarize your passport and whatnot, the final step was: "Click this link in your email to run some random '.exe' you just downloaded over the Internet" 00:37 < Bradipo> PapaChub: What about something nasty like: kh=$(mktemp -p /tmp known_hosts.XXXXXXXXXX); ssh -o KexAlgorithms=ecdh-sha2-nistp256 -o UserKnownHostsFile="$kh" -o StrictHostKeyChecking=no -o PreferredAuthentications=none -N -n bogus@remote /bin/false; cat "$kh"; rm "$kh" 00:38 < PapaChub> Or the portal where you make changes to your 401(k) uses your SSN as a userid and a six digit numeric password, whereas the Smurfs forum you frequent requires a 14-char password, prevents copy-pasting, sends 2FA via an email that times out after five minutes (Greylisting, anyone?) and logs you out every two hours! 00:38 < Bradipo> Yeah, nasty, I know... there may be a better option for ssh than those I've specified. 00:38 -!- g00gler [uid125351@id-125351.uxbridge.irccloud.com] has quit [Quit: Connection closed for inactivity] 00:39 -!- SOLARIS_s [~SOLARIS_s@pool-99-235-11-104.cpe.net.cable.rogers.com] has quit [Remote host closed the connection] 00:39 < PapaChub> "If it's stupid but it works, it isn't stupid..." There's a fine line between nasty and clever! ;-D 00:42 < PapaChub> PS: Throw a `-q` in there to suppress "Banner" and "Permission denied" messages, and you're all set! 00:43 < Bradipo> The /bin/false may be overkill since -N was requested. 00:43 < PapaChub> You can even simulate `-t ` w/ "-o PubKeyAcceptedAlgorithms=ssh-rsa" etc 00:43 < Bradipo> Right. 00:43 < PapaChub> :like: 00:44 < Bradipo> It would be nice if ssh-keyscan accepted -o though. :-) 00:44 -!- burley [~burley@216.49.132.150] has joined #openbsd 00:45 < Bradipo> It would also be nice if ssh -o UserKnownHostsFile=- would dump to stdout instead of creating a filed named '-' in the CWD. 00:46 < Bradipo> I suppose you could always install a system-wide /etc/ssh/ssh_known_hosts and push that out with ansible. 00:47 < Bradipo> But then you have to collect all known SSH host keys, generate the file, and maintain it when things change. 00:47 < Bradipo> Then clients should never be prompted for SSH host keys, and if they are, then that could be a red flag. 00:48 < Bradipo> Of course, that doesn't help if they are doing SSH to something outside your control... 00:48 < Bradipo> But that raises the question: why are they using ssh-keyscan? 00:48 -!- swaggboi [~kvirc@slackware.uk/supporter/swaggboi] has quit [Quit: KVIrc 5.0.0 Aria http://www.kvirc.net/] 00:50 -!- ikarso [uid475540@id-475540.tinside.irccloud.com] has quit [Quit: Connection closed for inactivity] 00:52 -!- toorop_ [~toorop@82.96.140.63] has quit [Ping timeout: 264 seconds] 00:53 -!- wnh [~Thunderbi@user/wnh] has joined #openbsd 00:53 -!- Bradipo [~Bradipo@50.77.44.29] has quit [Quit: Lost terminal] 00:54 -!- Bradipo [~Bradipo@50.77.44.19] has joined #openbsd 00:55 -!- swaggboi [~kvirc@slackware.uk/supporter/swaggboi] has joined #openbsd 00:55 -!- memset [~memset@gateway/tor-sasl/memset] has quit [Remote host closed the connection] 00:56 -!- memset [~memset@gateway/tor-sasl/memset] has joined #openbsd 00:58 -!- toorop [~toorop@82.96.140.63] has joined #openbsd 01:05 -!- sdds [~sdds@user/sdds] has joined #openbsd 01:11 -!- Bradipo [~Bradipo@50.77.44.19] has quit [Quit: Lost terminal] 01:46 -!- deepesttoaster [~deepestto@user/deepesttoaster] has quit [Remote host closed the connection] 01:46 < mischief> there's also sshfp dns records 01:53 < thrig> I had some automation for collecting, checking, and building out a site-wide ssh known hosts file (before sshfp records) 01:54 < thrig> mostly learned that libssh didn't support fancy modern ciphers only ssh servers 01:56 -!- deepesttoaster [~deepestto@user/deepesttoaster] has joined #openbsd 01:57 -!- zimmer [~zimmer@user/zimmer] has quit [Ping timeout: 244 seconds] 02:10 -!- jitter [~jitter@user/jitter] has quit [Ping timeout: 265 seconds] 02:11 -!- wnh [~Thunderbi@user/wnh] has quit [Ping timeout: 244 seconds] 02:12 -!- jitter [~jitter@46.59.177.76.dynamic-pppoe.dt.ipv4.wtnet.de] has joined #openbsd 02:12 -!- jitter [~jitter@46.59.177.76.dynamic-pppoe.dt.ipv4.wtnet.de] has quit [Changing host] 02:12 -!- jitter [~jitter@user/jitter] has joined #openbsd 02:14 < seninha> Do you use to use pax(1) rather than tar(1)? 02:15 < seninha> i am used to tar and have always used it... 02:15 < seninha> since they both use the same archive format, i think it's more a matter of taste than technical differences 02:16 < pardis> they are the same program on OpenBSD 02:16 < oldlaptop> It is entirely possible that there as many as three or four people out there so dedicated to POSIX conformance in all aspects of life that they use pax. 02:17 < seninha> oldlaptop, or dedicated to a saner interface 02:17 < seninha> tar(1) cli sucks 02:17 < oldlaptop> you can mostly pretend the insane part isn't there 02:17 < pardis> around 60% of the unix cli sucks, but we're stuck with it 02:17 < seninha> but i think it's the common demoninator between unixes 02:17 < seninha> linux lacks pax as far as i know 02:17 < oldlaptop> https://manpages.debian.org/bookworm/pax/pax.1.en.html looks to be a thing that exists 02:18 -!- burley [~burley@216.49.132.150] has quit [Ping timeout: 248 seconds] 02:18 < thrig> rhel.pkgs.org/8/epel-x86_64/pax-utils... 02:18 < seninha> i dont remember pax on a base debian installation 02:19 < oldlaptop> amusingly, it appears to be genetically related to openbsd pax/tar/etc. 02:19 < oldlaptop> (https://packages.debian.org/bookworm/pax) 02:20 -!- byt [~byt@c-67-161-187-143.hsd1.ca.comcast.net] has joined #openbsd 02:21 < oldlaptop> certain commercial linuxes care about being able to advertise standards-conformance-ish and probably do include pax 02:22 < oldlaptop> (these will be the same ones that install ed by default) 02:26 -!- deltahotel [~pascal@user/deltahotel] has joined #openbsd 02:31 < thrig> and not the wacky ones that link vi to nano 02:32 < vortexx> seninha: in the early days of messing with deadm00 osx86 (based on OSX 10.4 x86) I discovered pax, an archiver I hadn't encountered (only 7 years of *nix by then). Curious thing but it works 02:35 < seninha> arch linux has tar(1) but not pax(1) on its default install 02:36 < seninha> interestingly, it has a posix meta-package: https://archlinux.org/packages/extra/any/posix/ 02:37 < seninha> so am thinking tar is more popular for being the thing you may find anywhere 02:37 < vortexx> I wonder if it came into OSX via FreeBSD or NeXT's 4.3/4.4BSD userland 02:38 < vortexx> tar has been around forever, how often do you see a .pax file? 02:38 < vortexx> or did back in the day 02:39 < seninha> vortexx, OpenBSD tar does pax archive format. 02:40 < seninha> GNU tar support pax format too. 02:40 < seninha> But i dont think there's a GNU pax. 02:42 < seninha> many .tar i found around culd have been pax files then... 02:43 < vortexx> from Wikipedia: Packages handled by the Installer (macOS) often carry the bulk of their contents in an Archive.pax.gz file that may be read using the system's pax (heirloom) utility 02:44 -!- byteskeptical [~amnesia@user/byteskeptical] has joined #openbsd 02:47 < vortexx> there's a pax package on ubuntu which states it's history is from 4.4BSD 02:48 < vortexx> https://www.gnu.org/software/paxutils/ 02:48 -!- wnh [~Thunderbi@user/wnh] has joined #openbsd 02:53 < seninha> `tar -cf - /etc/hosts | file -`: /dev/stdin: POSIX tar archive 02:53 < seninha> `pax -w /etc/hosts | file -`: /dev/stdin: POSIX tar archive 02:54 < vortexx> because tar and pax are the same binary in OpenBSD as stated by pardis 02:55 < seninha> vortexx, yep; but i manuals say each defaults to different archive format 02:55 < seninha> tar(1) to ustar, pax(1) to pax 02:56 < seninha> s/but i/but/ 03:00 < vortexx> seninha: pax -x ustar (from the manpage) should fix that 03:01 < seninha> gonna start using pax(1) now! The interface is better (and more rememberable), the format seems to be compatible with other implementations of both pax and tar; and saves me from xkcd://1168 03:02 < vortexx> but.... from the tar manpage: Specify the output archive format, with the default format being pax. 03:02 -!- chaky [~chaky@93-143-227-100.adsl.net.t-com.hr] has quit [Ping timeout: 272 seconds] 03:02 < vortexx> whatever floats your boat 03:03 -!- chaky [~chaky@93-140-156-21.adsl.net.t-com.hr] has joined #openbsd 03:08 -!- Noisytoot [~noisytoot@user/meow/Noisytoot] has quit [Quit: ZNC 1.9.1 - https://znc.in] 03:09 -!- Noisytoot [~noisytoot@user/meow/Noisytoot] has joined #openbsd 03:09 < vortexx> just checked AMIX 2.1c (SVR4 vanilla), no pax on that 03:12 < thrig> openbsd history also says pax is 4.4BSD but those have been best guesses (that is, wrong) in some cases 03:15 -!- goulie [~wayne@220-245-56-238.tpgi.com.au] has joined #openbsd 03:17 -!- Noisytoot [~noisytoot@user/meow/Noisytoot] has quit [Remote host closed the connection] 03:17 -!- gotohello [~gotohello@user/gotohello] has quit [Ping timeout: 240 seconds] 03:17 -!- Noisytoot [~noisytoot@user/meow/Noisytoot] has joined #openbsd 03:22 -!- Noisytoot [~noisytoot@user/meow/Noisytoot] has quit [Remote host closed the connection] 03:24 -!- mlw [~mlw@41.73.193.26] has joined #openbsd 03:24 -!- anelli [~anelli@user/macarona] has quit [Read error: Connection reset by peer] 03:27 -!- seninha [~seninha@user/seninha] has quit [Quit: Leaving] 03:29 < lts> Let's hope openrsync isn't affected, or that will be the third in a heck of a long time https://www.openwall.com/lists/oss-security/2025/01/14/3 03:29 -!- et09 [~et09@user/et09] has quit [Read error: Connection reset by peer] 03:31 < thrig> probably not due to rsync servers not being run by default? 03:34 < thrig> ... maybe I should look at a pledge/unveil wrapper for rsync ... 03:39 < oldlaptop> there aren't many things left that could possibly be a remote hole in the default install 03:40 -!- Noisytoot [~noisytoot@user/meow/Noisytoot] has joined #openbsd 03:40 < oldlaptop> pretty much sshd, and whatever surface the TCP/IP stack itself still exposes (there are still people who block ICMP echo requests because of vague memories of "ping of death" remote holes in the 90s) 03:41 -!- sh1 [~sh1@c-98-45-176-35.hsd1.ca.comcast.net] has joined #openbsd 03:41 -!- DasBrain [dasbrain@user/meow/DasBrain] has quit [Ping timeout: 260 seconds] 03:54 -!- zip100- [~zip100@193.32.248.198] has quit [Ping timeout: 252 seconds] 03:54 -!- DasBrain [dasbrain@user/meow/DasBrain] has joined #openbsd 03:55 -!- zip100 [~zip100@185.213.155.248] has joined #openbsd 03:58 -!- deepesttoaster [~deepestto@user/deepesttoaster] has quit [Ping timeout: 265 seconds] 03:59 -!- daugaard [~daugaard@user/daugaard] has quit [Ping timeout: 252 seconds] 04:08 < thrig> or that ICMP is a great way to exfiltrate data or run a remote shell over 04:10 -!- mover [~hischild@user/mover] has quit [Quit: leaving] 04:19 -!- deepesttoaster [~deepestto@user/deepesttoaster] has joined #openbsd 04:20 < oldlaptop> do they also block DNS? 04:23 < thrig> the small internet retailer I worked at in payments did 04:23 -!- nickisabi [~nickisabi@2607:fb91:1e74:c484::7d85] has joined #openbsd 04:25 -!- nickisabi [~nickisabi@2607:fb91:1e74:c484::7d85] has quit [Changing host] 04:25 -!- nickisabi [~nickisabi@user/nickisabi] has joined #openbsd 04:38 -!- memset [~memset@gateway/tor-sasl/memset] has quit [Remote host closed the connection] 04:39 -!- memset [~memset@gateway/tor-sasl/memset] has joined #openbsd 04:43 -!- deltahotel [~pascal@user/deltahotel] has quit [Ping timeout: 265 seconds] 04:43 -!- deltahotel [~pascal@user/deltahotel] has joined #openbsd 04:58 -!- sjg [~sjg@user/sjg] has quit [Ping timeout: 244 seconds] 04:59 -!- lucanis [~lucanis@2601:204:cc00:9750:f5fc:5f97:232a:9a63] has joined #openbsd 05:00 -!- sjg [~sjg@user/sjg] has joined #openbsd 05:04 -!- mlw [~mlw@41.73.193.26] has quit [Ping timeout: 244 seconds] 05:05 -!- xet7 [~xet7@user/xet7] has joined #openbsd 05:12 -!- xet7_ [~xet7@user/xet7] has joined #openbsd 05:15 -!- xet7 [~xet7@user/xet7] has quit [Ping timeout: 252 seconds] 05:15 -!- lucanis [~lucanis@2601:204:cc00:9750:f5fc:5f97:232a:9a63] has quit [Quit: Leaving] 05:15 -!- lucanis [~lucanis@2601:204:cc00:9750:f5fc:5f97:232a:9a63] has joined #openbsd 05:16 -!- lucanis [~lucanis@2601:204:cc00:9750:f5fc:5f97:232a:9a63] has quit [Changing host] 05:16 -!- lucanis [~lucanis@user/lucanis] has joined #openbsd 05:16 -!- xet7_ is now known as xet7 05:17 -!- xet7 [~xet7@user/xet7] has quit [Remote host closed the connection] 05:18 -!- xet7 [~xet7@user/xet7] has joined #openbsd 05:19 -!- gotohello [~gotohello@user/gotohello] has joined #openbsd 05:23 -!- loganaden [~logan@102.117.120.30] has joined #openbsd 05:30 -!- jonf [~jjf@c-174-166-163-232.hsd1.nj.comcast.net] has quit [Remote host closed the connection] 05:30 -!- jonf [~jjf@c-174-166-163-232.hsd1.nj.comcast.net] has joined #openbsd 05:31 -!- loganaden [~logan@102.117.120.30] has quit [Ping timeout: 252 seconds] 05:44 -!- xx [~xx@user/xx] has joined #openbsd 05:50 -!- loganaden [~logan@102.117.120.30] has joined #openbsd 05:51 -!- memset [~memset@gateway/tor-sasl/memset] has quit [Remote host closed the connection] 05:51 -!- memset [~memset@gateway/tor-sasl/memset] has joined #openbsd 05:57 -!- nickisabi [~nickisabi@user/nickisabi] has quit [Quit: Leaving] 06:02 -!- Aedil [~adrian@ip923469d0.dynamic.kabel-deutschland.de] has joined #openbsd 06:07 -!- SirJitsu [~SirJitsu@162-231-111-175.lightspeed.livnmi.sbcglobal.net] has quit [Quit: Konversation terminated!] 06:08 -!- SirJitsu [~SirJitsu@162-231-111-175.lightspeed.livnmi.sbcglobal.net] has joined #openbsd 06:10 -!- loganaden [~logan@102.117.120.30] has quit [Ping timeout: 260 seconds] 06:13 -!- gotohello [~gotohello@user/gotohello] has quit [Ping timeout: 240 seconds] 06:13 -!- waves [~waves@user/waves] has quit [Ping timeout: 246 seconds] 06:14 -!- waves [~waves@user/waves] has joined #openbsd 06:14 -!- SirJitsu1 [~SirJitsu@162-231-111-175.lightspeed.livnmi.sbcglobal.net] has joined #openbsd 06:15 -!- SirJitsu [~SirJitsu@162-231-111-175.lightspeed.livnmi.sbcglobal.net] has quit [Ping timeout: 244 seconds] 06:18 -!- foul_owl [~kerry@185.203.219.80] has quit [Read error: Connection reset by peer] 06:19 -!- loganaden [~logan@102.117.120.30] has joined #openbsd 06:22 -!- SirJitsu1 [~SirJitsu@162-231-111-175.lightspeed.livnmi.sbcglobal.net] has quit [Quit: Konversation terminated!] 06:23 -!- SirJitsu1 [~SirJitsu@162-231-111-175.lightspeed.livnmi.sbcglobal.net] has joined #openbsd 06:27 -!- cow321_ [~deflated8@user/meow/deflated8837] has joined #openbsd 06:27 -!- digitalrane [~rane@user/digitalrane] has quit [Ping timeout: 252 seconds] 06:29 -!- cow321 [~deflated8@user/meow/deflated8837] has quit [Ping timeout: 248 seconds] 06:29 -!- cow321_ is now known as cow321 06:32 -!- uncleyear [~ian@45.80.46.21] has joined #openbsd 06:33 -!- anavel [~anavel@user/anavel] has quit [Quit: Quit] 06:34 -!- foul_owl [~kerry@193.42.0.126] has joined #openbsd 06:39 -!- cow321_ [~deflated8@user/meow/deflated8837] has joined #openbsd 06:40 -!- cow321 [~deflated8@user/meow/deflated8837] has quit [Ping timeout: 252 seconds] 06:41 -!- cow321_ is now known as cow321 06:48 -!- loganaden [~logan@102.117.120.30] has quit [Ping timeout: 252 seconds] 06:48 -!- DarkTaffy [~oldben@user/Old-Ben-Jabroni] has joined #openbsd 06:57 -!- sunwind [~paradox@31.111.120.81] has quit [Ping timeout: 252 seconds] 06:57 -!- sunwind [~paradox@31.111.120.81] has joined #openbsd 06:58 -!- feriman [~feriman@user/feriman] has joined #openbsd 06:58 -!- shiranaihito_ [~shiranaih@ppp-171-96-192-89.revip8.asianet.co.th] has joined #openbsd 06:58 -!- redruM [~redrum@user/redrum] has quit [Ping timeout: 265 seconds] 07:00 -!- cow321 [~deflated8@user/meow/deflated8837] has quit [Ping timeout: 244 seconds] 07:01 -!- cantelope [uid598105@id-598105.hampstead.irccloud.com] has quit [Quit: Connection closed for inactivity] 07:02 -!- sunwind` [~paradox@31.111.120.16] has joined #openbsd 07:03 -!- sunwind [~paradox@31.111.120.81] has quit [Ping timeout: 260 seconds] 07:05 -!- loganaden [~logan@102.117.120.30] has joined #openbsd 07:08 -!- cow321 [~deflated8@user/meow/deflated8837] has joined #openbsd 07:14 -!- anavel [~anavel@user/anavel] has joined #openbsd 07:17 -!- anavel [~anavel@user/anavel] has quit [Client Quit] 07:23 -!- loganaden [~logan@102.117.120.30] has quit [Ping timeout: 248 seconds] 07:26 -!- adip [~adip@c145-14.icpnet.pl] has joined #openbsd 07:29 -!- feriman [~feriman@user/feriman] has quit [Quit: leaving] 07:30 -!- anavel [~anavel@user/anavel] has joined #openbsd 07:33 -!- feriman [~feriman@user/feriman] has joined #openbsd 07:36 -!- loganaden [~logan@102.117.120.30] has joined #openbsd 07:37 -!- SiFuh [~SiFuh@user/sifuh] has quit [Remote host closed the connection] 07:37 -!- SiFuh [~SiFuh@user/sifuh] has joined #openbsd 07:40 -!- Zerock [~0ck@copyfree/pedant/zerock] has quit [Quit: ded] 07:40 -!- Zerock [~0ck@copyfree/pedant/zerock] has joined #openbsd 07:47 -!- namaste [~namaste@user/xyk] has quit [Read error: Connection reset by peer] 07:54 -!- ikarso [uid475540@id-475540.tinside.irccloud.com] has joined #openbsd 08:03 -!- Xenguy [~Xenguy@user/xenguy] has quit [Ping timeout: 265 seconds] 08:05 -!- memset [~memset@gateway/tor-sasl/memset] has quit [Remote host closed the connection] 08:06 -!- loganaden [~logan@102.117.120.30] has quit [Ping timeout: 252 seconds] 08:06 -!- memset [~memset@gateway/tor-sasl/memset] has joined #openbsd 08:08 -!- lucanis [~lucanis@user/lucanis] has quit [Read error: Connection reset by peer] 08:14 -!- memset [~memset@gateway/tor-sasl/memset] has quit [Remote host closed the connection] 08:14 -!- memset [~memset@gateway/tor-sasl/memset] has joined #openbsd 08:18 -!- struchu [~struchu@62.87.192.114] has joined #openbsd 08:21 -!- loganaden [~logan@102.117.120.30] has joined #openbsd 08:28 -!- loganaden [~logan@102.117.120.30] has quit [Ping timeout: 260 seconds] 08:45 -!- lavaball [~Melissa@31.204.155.215] has joined #openbsd 09:01 -!- Aedil [~adrian@ip923469d0.dynamic.kabel-deutschland.de] has quit [Ping timeout: 260 seconds] 09:04 -!- Xenguy [~Xenguy@user/xenguy] has joined #openbsd 09:06 * RobbieAB has memories of explaining to people precisely how trivial it would be to use DNS to exfiltrate data in one role. 09:14 -!- loganaden [~logan@102.117.120.30] has joined #openbsd 09:21 -!- loganaden [~logan@102.117.120.30] has quit [Ping timeout: 265 seconds] 09:25 -!- Xenguy [~Xenguy@user/xenguy] has quit [Remote host closed the connection] 09:28 -!- feriman [~feriman@user/feriman] has quit [Ping timeout: 248 seconds] 09:36 -!- loganaden [~logan@102.117.120.30] has joined #openbsd 09:40 -!- megawatt [~megawatt@user/megawatt] has joined #openbsd 09:40 -!- agentcasey [agentcasey@2600:3c03::f03c:93ff:febe:5054] has quit [Ping timeout: 260 seconds] 09:41 -!- fflam [~mdt@2600:4040:10f1:e100::1c19] has quit [Read error: Connection reset by peer] 09:43 -!- loganaden [~logan@102.117.120.30] has quit [Ping timeout: 246 seconds] 09:48 -!- Xenguy [~Xenguy@user/xenguy] has joined #openbsd 09:48 -!- b50d [~b50d@62.96.54.30] has joined #openbsd 09:51 -!- loganaden [~logan@102.117.120.30] has joined #openbsd 09:55 -!- anelli [~anelli@user/macarona] has joined #openbsd 10:02 -!- Posterdati [~Posterdat@user/Posterdati] has quit [Quit: KVIrc 5.0.0 Aria http://www.kvirc.net/] 10:04 -!- Posterdati [~Posterdat@user/Posterdati] has joined #openbsd 10:07 -!- loganaden [~logan@102.117.120.30] has quit [Ping timeout: 252 seconds] 10:11 -!- feriman [~feriman@user/feriman] has joined #openbsd 10:14 -!- loganaden [~logan@102.117.120.30] has joined #openbsd 10:17 -!- tozhu [~tozhu@117.139.163.129] has joined #openbsd 10:18 -!- uncleyear [~ian@45.80.46.21] has quit [Remote host closed the connection] 10:20 -!- uncleyear [~ian@45.80.46.21] has joined #openbsd 10:20 -!- finkfox [~finkfox@user/finkfox] has joined #openbsd 10:21 -!- tozhu [~tozhu@117.139.163.129] has left #openbsd [] 10:22 -!- mlw [~mlw@41.73.193.26] has joined #openbsd 10:23 -!- loganaden [~logan@102.117.120.30] has quit [Ping timeout: 272 seconds] 10:25 -!- kdc [~kdc@user/kdc] has joined #openbsd 10:32 -!- loganaden [~logan@102.117.120.30] has joined #openbsd 10:36 -!- noone [~six@user/six] has quit [Quit: nyaa~] 10:37 -!- loganaden [~logan@102.117.120.30] has quit [Ping timeout: 244 seconds] 10:49 -!- byteskeptical [~amnesia@user/byteskeptical] has quit [Quit: Lost terminal] 10:53 -!- R4F4 [rscastilho@user/R4F4] has joined #openbsd 10:54 -!- Guest47 [~Guest47@2806:290:a800:3e26:44cb:cbd4:cdda:765f] has joined #openbsd 10:54 -!- R4F4 [rscastilho@user/R4F4] has quit [Client Quit] 10:57 -!- loganaden [~logan@102.117.120.30] has joined #openbsd 10:59 -!- schalken [~schalken@117-118-178-69.gci.net] has quit [Ping timeout: 276 seconds] 11:02 -!- zippy [~quassel@188.27.34.198] has quit [Ping timeout: 245 seconds] 11:08 -!- fqbn207 [~fqbn207@user/fqbn207] has joined #openbsd 11:14 -!- housemate [~housemate@146.70.66.228] has joined #openbsd 11:15 -!- fqbn207 [~fqbn207@user/fqbn207] has quit [Ping timeout: 252 seconds] 11:15 -!- housemate [~housemate@146.70.66.228] has quit [Remote host closed the connection] 11:16 -!- housemate [~housemate@146.70.66.228] has joined #openbsd 11:17 -!- fqbn207 [~fqbn207@user/fqbn207] has joined #openbsd 11:19 -!- d-ra [~d-ra@user/d-ra] has joined #openbsd 11:23 -!- deltahotel [~pascal@user/deltahotel] has quit [Ping timeout: 260 seconds] 11:24 -!- deltahotel [~pascal@user/deltahotel] has joined #openbsd 11:24 -!- housemate [~housemate@146.70.66.228] has quit [Quit: Nothing to see here. I wasn't there. I take IRC seriously. I do not work for any body DIRECTLY although I do represent BOT NET.] 11:30 -!- housemate [~housemate@146.70.66.228] has joined #openbsd 11:32 -!- gogofc [~gogofc@31-211-250-171.customers.ownit.se] has joined #openbsd 11:33 -!- schalken [~schalken@117-118-178-69.gci.net] has joined #openbsd 11:42 -!- schalken [~schalken@117-118-178-69.gci.net] has quit [Ping timeout: 252 seconds] 11:42 -!- niftily [~niftily@user/niftily] has quit [Quit: leaving] 11:42 -!- daugaard [~daugaard@user/daugaard] has joined #openbsd 11:45 -!- sdds [~sdds@user/sdds] has quit [Remote host closed the connection] 11:48 -!- tozhu [~tozhu@171.88.40.230] has joined #openbsd 11:48 -!- Guest47 [~Guest47@2806:290:a800:3e26:44cb:cbd4:cdda:765f] has quit [Quit: Client closed] 11:52 -!- tozhu [~tozhu@171.88.40.230] has quit [Ping timeout: 240 seconds] 11:59 -!- Guest47 [~Guest47@2806:290:a800:3e26:44cb:cbd4:cdda:765f] has joined #openbsd 12:03 -!- loganaden [~logan@102.117.120.30] has quit [Ping timeout: 252 seconds] 12:03 -!- Guest47 [~Guest47@2806:290:a800:3e26:44cb:cbd4:cdda:765f] has quit [Client Quit] 12:10 -!- Jush [~Jush@user/Jush] has quit [Remote host closed the connection] 12:13 -!- sinvet [sinvet@user/sinvet] has joined #openbsd 12:14 -!- schalken [~schalken@117-118-178-69.gci.net] has joined #openbsd 12:16 -!- hwpplayer1 [~user@user/hwpplayer1] has joined #openbsd 12:19 -!- xx [~xx@user/xx] has quit [Ping timeout: 264 seconds] 12:19 -!- xx [~xx@user/xx] has joined #openbsd 12:20 -!- d-ra [~d-ra@user/d-ra] has quit [Remote host closed the connection] 12:25 -!- revolve [revolve@bagu-15-b2-v4wan-169164-cust3712.vm21.cable.virginm.net] has joined #openbsd 12:26 -!- finkfox [~finkfox@user/finkfox] has quit [Ping timeout: 272 seconds] 12:42 -!- macabro [~user@user/monkey/x-0691028] has quit [Ping timeout: 265 seconds] 12:45 -!- Leone [~Leo@104-195-193-115.cpe.teksavvy.com] has joined #openbsd 12:50 -!- down200 [~down200@shell.lug.mtu.edu] has quit [Quit: ZNC - https://znc.in] 12:51 -!- memset [~memset@gateway/tor-sasl/memset] has quit [Remote host closed the connection] 12:52 -!- memset [~memset@gateway/tor-sasl/memset] has joined #openbsd 12:54 -!- down200 [~down200@shell.lug.mtu.edu] has joined #openbsd 13:15 -!- housemate [~housemate@146.70.66.228] has quit [Quit: Nothing to see here. I wasn't there. I take IRC seriously. I do not work for any body DIRECTLY although I do represent BOT NET.] 13:16 -!- wickedshell [~wickedshe@2601:8c0:800:4baa:81a1:d04:5069:b70f] has quit [Ping timeout: 276 seconds] 13:22 -!- namaste [~namaste@user/xyk] has joined #openbsd 13:22 -!- tozhu [~tozhu@171.88.40.230] has joined #openbsd 13:26 -!- vdamewood [~vdamewood@fedora/vdamewood] has joined #openbsd 13:27 -!- zelest [x6b4b5oud0@sephora.ifconfig.se] has joined #openbsd 13:34 -!- Aedil [~adrian@ip923469d0.dynamic.kabel-deutschland.de] has joined #openbsd 13:38 -!- mr_ab [~nobody@ab.hl9.net] has quit [Ping timeout: 244 seconds] 13:41 -!- hwpplayer1 [~user@user/hwpplayer1] has quit [Ping timeout: 248 seconds] 13:43 -!- housemate [~housemate@146.70.66.228] has joined #openbsd 13:44 -!- tozhu [~tozhu@171.88.40.230] has quit [Quit: tozhu] 13:51 -!- tozhu [~tozhu@171.88.40.230] has joined #openbsd 13:51 -!- d-ra [~d-ra@user/d-ra] has joined #openbsd 13:53 -!- tozhu [~tozhu@171.88.40.230] has quit [Client Quit] 13:56 -!- anelli [~anelli@user/macarona] has quit [Read error: Connection reset by peer] 13:59 -!- gatlinggoat [~Thunderbi@2600:4040:ad65:b400:7dc8:5726:e752:e2cc] has quit [Quit: gatlinggoat] 14:01 -!- tozhu [~tozhu@171.88.40.230] has joined #openbsd 14:01 -!- seninha [~seninha@user/seninha] has joined #openbsd 14:01 -!- ficonni [~ficonni@178-223-139-140.dynamic.isp.telekom.rs] has joined #openbsd 14:02 -!- seninha [~seninha@user/seninha] has quit [Client Quit] 14:03 -!- seninha [~seninha@user/seninha] has joined #openbsd 14:03 -!- seninha [~seninha@user/seninha] has quit [Client Quit] 14:08 -!- hwpplayer1 [~user@user/hwpplayer1] has joined #openbsd 14:09 -!- tozhu [~tozhu@171.88.40.230] has quit [Quit: tozhu] 14:14 -!- seninha [~seninha@user/seninha] has joined #openbsd 14:15 -!- tozhu [~tozhu@171.88.40.230] has joined #openbsd 14:15 -!- seninha [~seninha@user/seninha] has quit [Client Quit] 14:17 -!- ilyas [~ilyas@89.200.217.243] has quit [Ping timeout: 244 seconds] 14:17 -!- ilyas [~ilyas@5.24.183.214] has joined #openbsd 14:20 -!- jitter [~jitter@user/jitter] has quit [Ping timeout: 252 seconds] 14:21 -!- jitter [~jitter@149.233.166.224.dynamic-pppoe.dt.ipv4.wtnet.de] has joined #openbsd 14:21 -!- jitter [~jitter@149.233.166.224.dynamic-pppoe.dt.ipv4.wtnet.de] has quit [Changing host] 14:21 -!- jitter [~jitter@user/jitter] has joined #openbsd 14:23 -!- wickedshell [~wickedshe@2601:8c0:800:4baa:9344:f080:6c7d:42ef] has joined #openbsd 14:24 -!- housemate [~housemate@146.70.66.228] has quit [Quit: Nothing to see here. I wasn't there. I take IRC seriously. I do not work for any body DIRECTLY although I do represent BOT NET.] 14:25 -!- artmdl [~art5456@d216-232-222-146.bchsia.telus.net] has joined #openbsd 14:27 -!- seninha [~seninha@user/seninha] has joined #openbsd 14:27 -!- seninha [~seninha@user/seninha] has quit [Client Quit] 14:27 -!- Xenguy [~Xenguy@user/xenguy] has quit [Quit: "To play for a draw [...] is to some degree a crime against chess." -- Mikhail Tal] 14:32 -!- seninha [~seninha@user/seninha] has joined #openbsd 14:33 -!- seninha [~seninha@user/seninha] has quit [Remote host closed the connection] 14:34 -!- burley [~burley@216.49.132.150] has joined #openbsd 14:36 -!- ilyas [~ilyas@5.24.183.214] has quit [Read error: Connection reset by peer] 14:38 -!- tozhu [~tozhu@171.88.40.230] has quit [Quit: tozhu] 14:40 -!- ilyas [~ilyas@89.200.217.243] has joined #openbsd 14:42 -!- cantelope [uid598105@id-598105.hampstead.irccloud.com] has joined #openbsd 14:45 -!- struchu [~struchu@62.87.192.114] has quit [Quit: WeeChat 4.4.4] 14:46 -!- tozhu [~tozhu@171.88.40.230] has joined #openbsd 14:46 -!- fqbn207 [~fqbn207@user/fqbn207] has quit [Ping timeout: 276 seconds] 14:47 -!- fqbn207 [~fqbn207@user/fqbn207] has joined #openbsd 14:49 -!- struchu [~struchu@62.87.192.114] has joined #openbsd 14:49 -!- daugaard [~daugaard@user/daugaard] has quit [Ping timeout: 272 seconds] 14:51 -!- wnh [~Thunderbi@user/wnh] has quit [Ping timeout: 244 seconds] 14:54 -!- ublx [~ublx@user/ublx] has joined #openbsd 14:54 -!- seninha [~seninha@user/seninha] has joined #openbsd 14:54 -!- seninha [~seninha@user/seninha] has quit [Client Quit] 14:56 -!- Bradipo [~Bradipo@50.77.44.29] has joined #openbsd 14:59 -!- burley [~burley@216.49.132.150] has quit [Ping timeout: 272 seconds] 14:59 -!- varighet [~varighet@94-224-80-37.access.telenet.be] has quit [Quit: WeeChat 4.2.1] 14:59 -!- vdamewood [~vdamewood@fedora/vdamewood] has quit [Quit: My Unrecognized Mac has gone to sleep. ZZZzzz…] 15:01 -!- domovod [~domovod@176.196.122.197] has joined #openbsd 15:02 -!- struchu [~struchu@62.87.192.114] has quit [Quit: WeeChat 4.4.4] 15:03 -!- tozhu [~tozhu@171.88.40.230] has quit [Quit: tozhu] 15:05 -!- tozhu [~tozhu@171.88.40.230] has joined #openbsd 15:06 -!- SiFuh_ [~SiFuh@user/sifuh] has quit [Remote host closed the connection] 15:06 -!- SiFuh_ [~SiFuh@user/sifuh] has joined #openbsd 15:08 -!- finkfox [~finkfox@user/finkfox] has joined #openbsd 15:13 -!- fflam [~mdt@2600:4040:10f1:e100::1c19] has joined #openbsd 15:14 -!- deepesttoaster [~deepestto@user/deepesttoaster] has quit [Ping timeout: 265 seconds] 15:14 -!- chilledfrogs [~chilledfr@rsa59-h05-176-133-210-176.dsl.sta.abo.bbox.fr] has quit [Quit: connection reset by purr] 15:17 -!- wnh [~Thunderbi@user/wnh] has joined #openbsd 15:26 -!- deltahotel [~pascal@user/deltahotel] has quit [Ping timeout: 248 seconds] 15:29 -!- chilledfrogs [~chilledfr@176-133-210-176.abo.bbox.fr] has joined #openbsd 15:31 -!- gatlinggoat [~Thunderbi@2600:4040:ad65:b400:e9bd:5571:fa5f:9381] has joined #openbsd 15:32 -!- CrashOverride [~strcat@p54855cb4.dip0.t-ipconnect.de] has joined #openbsd 15:32 -!- chaky [~chaky@93-140-156-21.adsl.net.t-com.hr] has quit [Ping timeout: 252 seconds] 15:35 -!- chaky [~chaky@93-140-153-144.adsl.net.t-com.hr] has joined #openbsd 15:37 -!- fqbn207 [~fqbn207@user/fqbn207] has quit [Quit: WeeChat 4.4.3] 15:37 -!- varighet [~varighet@94-224-80-37.access.telenet.be] has joined #openbsd 15:37 -!- oraculo [~mirc-rc@177.100.68.254] has joined #openbsd 15:42 -!- typicat [~iam@user/typicat] has quit [Quit: Lost terminal] 15:43 -!- vdamewood [~vdamewood@fedora/vdamewood] has joined #openbsd 15:44 -!- typicat [~iam@h-178-174-137-135.NA.cust.bahnhof.se] has joined #openbsd 15:44 -!- typicat [~iam@h-178-174-137-135.NA.cust.bahnhof.se] has quit [Changing host] 15:44 -!- typicat [~iam@user/typicat] has joined #openbsd 15:47 -!- kdc [~kdc@user/kdc] has quit [Quit: Leaving] 15:49 -!- mover [~hischild@user/mover] has joined #openbsd 15:52 -!- gotohello [~gotohello@user/gotohello] has joined #openbsd 16:01 -!- daugaard [~daugaard@user/daugaard] has joined #openbsd 16:07 -!- feriman [~feriman@user/feriman] has quit [Ping timeout: 252 seconds] 16:07 -!- user21 [~user21@172.56.73.59] has joined #openbsd 16:10 -!- user21 [~user21@172.56.73.59] has quit [Client Quit] 16:11 -!- user21 [~user21@172.56.73.59] has joined #openbsd 16:12 -!- ivdsangen [~ivo@83-84-59-127.cable.dynamic.v4.ziggo.nl] has joined #openbsd 16:14 -!- memset [~memset@gateway/tor-sasl/memset] has quit [Remote host closed the connection] 16:14 -!- memset [~memset@gateway/tor-sasl/memset] has joined #openbsd 16:15 -!- byt [~byt@c-67-161-187-143.hsd1.ca.comcast.net] has quit [Changing host] 16:15 -!- byt [~byt@user/plague] has joined #openbsd 16:16 -!- user21 [~user21@172.56.73.59] has quit [Client Quit] 16:16 -!- tvtoon [~The_cUnix@user/tvtoon] has joined #openbsd 16:21 -!- byt [~byt@user/plague] has left #openbsd [] 16:22 -!- byt [~byt@user/plague] has joined #openbsd 16:29 -!- feriman [~feriman@user/feriman] has joined #openbsd 16:30 -!- gotohello [~gotohello@user/gotohello] has quit [Quit: Client closed] 16:30 -!- user71 [~user71@2001:1530:1000:4621:9736:1a55:3982:8e6c] has joined #openbsd 16:31 -!- finkfox [~finkfox@user/finkfox] has quit [Ping timeout: 245 seconds] 16:36 -!- ublx [~ublx@user/ublx] has quit [Quit: ublx] 16:44 -!- gman999 [~GMan999@user/gman999] has quit [Quit: WeeChat 4.4.2] 16:45 -!- memset [~memset@gateway/tor-sasl/memset] has quit [Remote host closed the connection] 16:45 -!- memset [~memset@gateway/tor-sasl/memset] has joined #openbsd 16:54 -!- b50d [~b50d@62.96.54.30] has quit [Read error: Connection reset by peer] 16:55 -!- drathir_tor [~drathir@wireguard/tunneler/drathir] has quit [Ping timeout: 264 seconds] 16:57 -!- drathir_tor [~drathir@wireguard/tunneler/drathir] has joined #openbsd 16:57 -!- memset [~memset@gateway/tor-sasl/memset] has quit [Remote host closed the connection] 16:57 -!- memset [~memset@gateway/tor-sasl/memset] has joined #openbsd 17:14 -!- byt [~byt@user/plague] has quit [Quit: leaving] 17:17 -!- jsing [~jsing@stingray.exigere.com.au] has quit [Ping timeout: 252 seconds] 17:21 -!- deltahotel [~pascal@user/deltahotel] has joined #openbsd 17:24 -!- gman999 [~GMan999@user/gman999] has joined #openbsd 17:31 -!- Leo_V [~Leo@104.247.233.33] has joined #openbsd 17:34 -!- Leone [~Leo@104-195-193-115.cpe.teksavvy.com] has quit [Ping timeout: 276 seconds] 17:37 -!- Tetard [~Tetard@94.187.134.188] has joined #openbsd 17:44 -!- Leone [~Leo@104-195-223-163.cpe.teksavvy.com] has joined #openbsd 17:46 -!- Tetard [~Tetard@94.187.134.188] has left #openbsd [] 17:46 -!- ublx [~ublx@user/ublx] has joined #openbsd 17:47 -!- Leo_V [~Leo@104.247.233.33] has quit [Ping timeout: 265 seconds] 17:48 -!- sjg [~sjg@user/sjg] has quit [Ping timeout: 265 seconds] 17:49 -!- Warr1024 [~Warr@user/warr1024] has quit [Quit: Warr1024] 17:50 -!- sjg [~sjg@user/sjg] has joined #openbsd 17:59 -!- ChubaDuba [~ChubaDuba@5.167.119.2] has joined #openbsd 18:06 -!- d-ra [~d-ra@user/d-ra] has quit [Remote host closed the connection] 18:07 -!- euphores [~SASL_euph@user/euphores] has joined #openbsd 18:07 -!- mover [~hischild@user/mover] has quit [Quit: leaving] 18:07 -!- deepesttoaster [~deepestto@user/deepesttoaster] has joined #openbsd 18:10 -!- zwr [~zwr@200-97-246-192.user3p.veloxzone.com.br] has quit [Read error: Connection reset by peer] 18:10 -!- zwr [~zwr@200-97-246-192.user3p.veloxzone.com.br] has joined #openbsd 18:12 -!- mover [~hischild@user/mover] has joined #openbsd 18:12 -!- Warr1024 [~Warr@user/warr1024] has joined #openbsd 18:12 -!- loganaden [~logan@102.163.30.245] has joined #openbsd 18:20 -!- Netsplit *.net <-> *.split quits: gustik, mnour_bsd, pinnen, IcePic, gshumway, rkta, panzeroceania, sjs, Bahhumbug, lagkage, (+38 more, use /NETSPLIT to show all of them) 18:22 -!- Netsplit over, joins: sunwind`, waves, jonf, runxiyu_, panicking, jambove_, slim, inky, gustik, rkta (+38 more) 18:22 -!- brushaway__ [uid673342@user/BrushAway] has quit [Max SendQ exceeded] 18:22 -!- moviuro [~moviuro@znc.popho.be] has quit [Max SendQ exceeded] 18:22 -!- JTL [~jtl@user/jtl] has quit [Max SendQ exceeded] 18:22 -!- moviuro [~moviuro@znc.popho.be] has joined #openbsd 18:24 -!- jakesyl_____ [sid56879@id-56879.hampstead.irccloud.com] has quit [Ping timeout: 262 seconds] 18:26 -!- jakesyl_____ [sid56879@id-56879.hampstead.irccloud.com] has joined #openbsd 18:27 -!- JTL [~jtl@user/jtl] has joined #openbsd 18:29 -!- brushaway__ [uid673342@user/BrushAway] has joined #openbsd 18:30 -!- user21 [~user21@71.203.62.57] has joined #openbsd 18:31 -!- Bahhumbug [jrd@libera/staff/jrd] has quit [Read error: Connection reset by peer] 18:31 -!- Bahhumbug [jrd@libera/staff/jrd] has joined #openbsd 18:32 -!- domovod [~domovod@176.196.122.197] has quit [Ping timeout: 246 seconds] 18:34 -!- loganaden [~logan@102.163.30.245] has quit [Ping timeout: 265 seconds] 18:47 -!- anelli [~anelli@user/macarona] has joined #openbsd 18:48 -!- elagost [~elagost@user/elagost] has joined #openbsd 18:50 < euphores> What has recently been with gtk apps? No one of them could start on my machine. Just curious. 18:55 -!- telser [~quassel@user/telser] has joined #openbsd 19:03 -!- stefanobsdcafe [~m-2ld27b@user/stefanobsdcafe] has quit [Remote host closed the connection] 19:05 < uwharrie> there was a recent pango bug that's since been resolved 19:06 < uwharrie> https://marc.info/?l=openbsd-misc&m=173689221602591&w=2 19:09 -!- stefanobsdcafe [~m-2ld27b@mail.bsd.cafe] has joined #openbsd 19:09 -!- stefanobsdcafe [~m-2ld27b@mail.bsd.cafe] has quit [Changing host] 19:09 -!- stefanobsdcafe [~m-2ld27b@user/stefanobsdcafe] has joined #openbsd 19:15 -!- eniac [~eniac@user/eniac] has quit [Quit: the paradigm of the cultures is blockin ur mind bish! !$@#!$%%$^)(*!@#%$!] 19:19 -!- ivdsangen [~ivo@83-84-59-127.cable.dynamic.v4.ziggo.nl] has quit [Quit: https://github.com/ivdsangen] 19:22 -!- deltahotel [~pascal@user/deltahotel] has quit [Ping timeout: 260 seconds] 19:23 -!- eniac [~eniac@user/eniac] has joined #openbsd 19:38 -!- cmc [~methos@gateway/tor-sasl/cmc] has quit [Remote host closed the connection] 19:39 -!- cmc [~methos@gateway/tor-sasl/cmc] has joined #openbsd 19:56 -!- daugaard [~daugaard@user/daugaard] has quit [Ping timeout: 260 seconds] 19:58 -!- Aedil [~adrian@ip923469d0.dynamic.kabel-deutschland.de] has quit [Ping timeout: 245 seconds] 20:01 -!- memset_ [~memset@gateway/tor-sasl/memset] has joined #openbsd 20:04 -!- zcheng3 [~zcheng3@d104-205-176-6.abhsia.telus.net] has joined #openbsd 20:05 -!- memset [~memset@gateway/tor-sasl/memset] has quit [Ping timeout: 264 seconds] 20:05 -!- Slesa [~Slesa@2a0d:ee00:8010:5b00:ec30:3849:642:62ff] has joined #openbsd 20:14 -!- mlw [~mlw@41.73.193.26] has quit [Ping timeout: 248 seconds] 20:16 -!- user21 [~user21@71.203.62.57] has quit [Quit: Leaving] 20:18 -!- hwpplayer1 [~user@user/hwpplayer1] has quit [Read error: Connection reset by peer] 20:20 -!- hwpplayer1 [~user@user/hwpplayer1] has joined #openbsd 20:25 -!- Lucanis [~lucanis@user/lucanis] has joined #openbsd 20:26 -!- Lucanis_ [~lucanis@2601:204:cc00:9750:d4b5:9603:2533:8d77] has joined #openbsd 20:26 -!- Lucanis_ [~lucanis@2601:204:cc00:9750:d4b5:9603:2533:8d77] has quit [Remote host closed the connection] 20:26 -!- Lucanis [~lucanis@user/lucanis] has quit [Remote host closed the connection] 20:27 -!- Lucanis [~lucanis@user/lucanis] has joined #openbsd 20:28 -!- hotsoup [~hotsoup@user/hotsoup] has joined #openbsd 20:33 -!- polishdub [~polishdub@ip72-208-203-185.ph.ph.cox.net] has quit [Quit: leaving] 20:33 -!- Slesa [~Slesa@2a0d:ee00:8010:5b00:ec30:3849:642:62ff] has quit [Remote host closed the connection] 20:38 -!- vxla [~vxla@user/vxla] has quit [Remote host closed the connection] 20:38 -!- user71 [~user71@2001:1530:1000:4621:9736:1a55:3982:8e6c] has quit [Quit: Leaving] 20:40 -!- digitalrane [~rane@user/digitalrane] has joined #openbsd 20:40 -!- hwpplayer1 [~user@user/hwpplayer1] has quit [Remote host closed the connection] 20:43 -!- ChubaDuba [~ChubaDuba@5.167.119.2] has quit [Quit: WeeChat 4.5.1] 20:47 -!- shtrophic [~m-hrdsqi@user/shtrophic] has quit [Remote host closed the connection] 20:49 -!- polishdub [~polishdub@ip72-208-203-185.ph.ph.cox.net] has joined #openbsd 20:49 -!- shtrophic [~m-hrdsqi@user/shtrophic] has joined #openbsd 20:55 -!- amnesiac [~amnesiac@109.169.219.206] has joined #openbsd 20:56 -!- finkfox [~finkfox@user/finkfox] has joined #openbsd 20:58 -!- theruran [uid11305@id-11305.hampstead.irccloud.com] has quit [Quit: Connection closed for inactivity] 21:02 -!- krl [~krl@h-155-4-221-200.NA.cust.bahnhof.se] has joined #openbsd 21:04 < amnesiac> Hi. added few vms and now getting this message: 'could not allocate guest memory (data limit is 4.0G)' when starting last vms. And no such file or directory. Seems it's datasize in login.conf But, all size of available memory is 64 | configured for those vms sum is 40 | and after starting few with 37 last ones failwd with those messages. 21:04 < amnesiac> what could it be ? 21:04 < amnesiac> datasize for vmd about 60 21:05 -!- krl__ [~krl@h-155-4-221-200.NA.cust.bahnhof.se] has quit [Ping timeout: 265 seconds] 21:07 < amnesiac> ahh time. seems all sleeping. 21:11 < Bradipo> Or those awake don't know or are lurking, or away. 21:15 < amnesiac> Bradipo, some poetry at openbsd channel. 21:16 < amnesiac> it's really wierd. Huge amount of ram available. now limits in configuration with value 4G anymore, and it fails. 21:18 < Bradipo> Unfortunately, I haven't played with vmd at all. 21:21 -!- dansa [~user@201.22.180.30.dynamic.adsl.gvt.net.br] has joined #openbsd 21:22 -!- oraculo [~mirc-rc@177.100.68.254] has quit [Quit: Access and use #POP!_OS] 21:24 -!- zcheng3 [~zcheng3@d104-205-176-6.abhsia.telus.net] has quit [Ping timeout: 248 seconds] 21:24 < amnesiac> Bradipo, it's really great app and you spend your time with interest as you see ;) 21:31 -!- amnesiac [~amnesiac@109.169.219.206] has quit [Ping timeout: 248 seconds] 21:35 -!- znedw0868 [~znedw@2400:a846:4040::f61] has quit [Read error: Connection reset by peer] 21:36 -!- devune [~devune@121.127.33.125] has quit [Ping timeout: 248 seconds] 21:37 -!- znedw0868 [~znedw@2400:a846:4040::f61] has joined #openbsd 21:40 -!- kodcode [~kodcode@user/kodcode] has quit [Remote host closed the connection] 21:41 -!- devune [~devune@121.127.33.125] has joined #openbsd 21:41 -!- memset_ [~memset@gateway/tor-sasl/memset] has quit [Remote host closed the connection] 21:41 -!- memset [~memset@gateway/tor-sasl/memset] has joined #openbsd 21:44 -!- CrashOverride [~strcat@p54855cb4.dip0.t-ipconnect.de] has quit [Ping timeout: 252 seconds] 21:49 -!- Leone [~Leo@104-195-223-163.cpe.teksavvy.com] has quit [Ping timeout: 252 seconds] 21:50 -!- shiranaihito_ [~shiranaih@ppp-171-96-192-89.revip8.asianet.co.th] has quit [Quit: My Mac has gone to sleep. ZZZzzz…] 21:51 -!- nlocalhost [~nlocalhos@5.181.20.163] has quit [Quit: ZNC 1.8.2 - https://znc.in] 21:53 -!- nlocalhost [~nlocalhos@5.181.20.163] has joined #openbsd 21:55 -!- finkfox [~finkfox@user/finkfox] has quit [Ping timeout: 272 seconds] 21:56 -!- Menchers [Menchers@user/menchers] has quit [Ping timeout: 260 seconds] 21:57 -!- RobbieAB [~robert@user/RobbieAB] has quit [Ping timeout: 260 seconds] 22:00 -!- megawatt [~megawatt@user/megawatt] has left #openbsd [] 22:01 -!- moetuned [~Jean-luc@125-168-247-236.sta.wbroadband.net.au] has quit [Remote host closed the connection] 22:06 -!- seninha [~seninha@user/seninha] has joined #openbsd 22:07 -!- lavaball [~Melissa@31.204.155.215] has quit [Remote host closed the connection] 22:10 -!- SirJitsu1 [~SirJitsu@162-231-111-175.lightspeed.livnmi.sbcglobal.net] has quit [Read error: Connection reset by peer] 22:13 -!- moetuned [~Jean-luc@125-168-247-236.sta.wbroadband.net.au] has joined #openbsd 22:22 -!- noone [~six@user/six] has joined #openbsd 22:23 -!- Menchers [Menchers@user/menchers] has joined #openbsd 22:24 -!- RobbieAB [~robert@user/RobbieAB] has joined #openbsd 22:29 -!- burley [~burley@216.49.132.150] has joined #openbsd 22:34 -!- SiFuh_ [~SiFuh@user/sifuh] has quit [Remote host closed the connection] 22:34 -!- SiFuh [~SiFuh@user/sifuh] has quit [Remote host closed the connection] 22:34 -!- SiFuh [~SiFuh@user/sifuh] has joined #openbsd 22:34 -!- SiFuh_ [~SiFuh@user/sifuh] has joined #openbsd 22:35 -!- gman999 [~GMan999@user/gman999] has quit [Quit: WeeChat 4.4.2] 22:47 -!- saulosilva [~saulosilv@181.216.220.107] has joined #openbsd 22:51 -!- markmcb [~markmcb@45.76.242.175] has quit [Quit: WeeChat 4.5.0] 22:52 -!- markmcb [~markmcb@45.76.242.175] has joined #openbsd 22:52 -!- memset [~memset@gateway/tor-sasl/memset] has quit [Remote host closed the connection] 22:53 -!- memset [~memset@gateway/tor-sasl/memset] has joined #openbsd 22:54 -!- burley [~burley@216.49.132.150] has quit [Ping timeout: 252 seconds] 22:59 -!- Quantafac [~Quantafac@12.22.122.66] has quit [Read error: Connection reset by peer] 23:01 -!- macabro [~user@user/monkey/x-0691028] has joined #openbsd 23:04 -!- Warr1024 [~Warr@user/warr1024] has quit [Quit: Warr1024] 23:05 -!- Warr1024 [~Warr@user/warr1024] has joined #openbsd 23:10 -!- uncleyear [~ian@45.80.46.21] has quit [Ping timeout: 245 seconds] 23:11 -!- mijndert2110 [~mijndert@86-86-243-190.fixed.kpn.net] has joined #openbsd 23:12 -!- nlocalhost [~nlocalhos@5.181.20.163] has quit [Quit: ZNC 1.8.2 - https://znc.in] 23:13 -!- mijndert211 [~mijndert@86-86-243-190.fixed.kpn.net] has quit [Ping timeout: 244 seconds] 23:17 -!- gman999 [~GMan999@user/gman999] has joined #openbsd 23:25 -!- wnh [~Thunderbi@user/wnh] has quit [Ping timeout: 245 seconds] 23:27 -!- feriman [~feriman@user/feriman] has quit [Ping timeout: 260 seconds] 23:33 -!- saulosilva [~saulosilv@181.216.220.107] has quit [Quit: Client closed] 23:34 -!- adip [~adip@c145-14.icpnet.pl] has quit [Ping timeout: 260 seconds] 23:34 -!- memset [~memset@gateway/tor-sasl/memset] has quit [Remote host closed the connection] 23:35 -!- memset [~memset@gateway/tor-sasl/memset] has joined #openbsd 23:43 -!- nlocalhost [~nlocalhos@5.181.20.163] has joined #openbsd 23:45 -!- dansa [~user@201.22.180.30.dynamic.adsl.gvt.net.br] has quit [Ping timeout: 260 seconds] 23:46 -!- tobiasu [~tobiasu@user/tobiasu] has quit [Quit: WeeChat 3.8] 23:49 -!- clemens3 [~clemens3@user/clemens3] has quit [Ping timeout: 252 seconds] 23:54 -!- clemens3 [~clemens3@user/clemens3] has joined #openbsd 23:55 -!- DarkTaffy [~oldben@user/Old-Ben-Jabroni] has quit [Remote host closed the connection] 23:55 -!- tobiasu [~tobiasu@user/tobiasu] has joined #openbsd 23:55 -!- DarkTaffy [~oldben@user/Old-Ben-Jabroni] has joined #openbsd 23:55 -!- Bradipo [~Bradipo@50.77.44.29] has quit [Quit: Lost terminal] 23:58 -!- Xenguy [~Xenguy@user/xenguy] has joined #openbsd --- Log closed Thu Jan 16 00:00:33 2025