--- Log opened Wed Jun 11 00:00:03 2025 00:00 -!- jgh [~jgh@hellmouth.gulag.org.uk] has quit [Remote host closed the connection] 00:01 -!- macabro [~user@user/monkey/x-0691028] has quit [Quit: ERC 5.6.0.30.1 (IRC client for GNU Emacs 30.1)] 00:02 -!- eht [~eht@user/eht] has quit [Quit: Leaving] 00:06 < Bradipo> passstab: Well, I just did: strings /dev/rsd1c | less 00:06 < Bradipo> But that could be a lot of output for less to consume and you may run out of memory. 00:06 < Bradipo> Hard to say. 00:07 < passstab> Is there a way I can run it only after, say, the first 400 gigs? 00:09 < Bradipo> Yes. 00:09 < Bradipo> It involves using dd. :-) 00:09 -!- seninha [~seninha@user/seninha] has joined #openbsd 00:09 < passstab> so I'd need to transfer the part I want to look at to another drive? 00:09 < Bradipo> dd if=/dev/rsd1c bs=1m skip=400000 | strings | less 00:09 < Bradipo> Well, you can have dd just write to stdout. 00:10 < Bradipo> Sorry, I think I got that skip value wrong. 00:10 < passstab> oh, that isn't as scary, and I do have a backup now. 00:10 < Bradipo> Actually, I did get it right the first time. :-) 00:11 < Bradipo> Obviously your disk may or may not be /dev/rsd1c... I'm just using that as an example. 00:12 < Bradipo> Also, if you have a backup, you should really work from that. 00:12 < passstab> I figured that the backup is a much slower drive. 00:13 < passstab> But I'll take your recommendation. 00:13 < Bradipo> Yes, but here's the question... have you verified that the backup is good? What if you start working on the original drive, and then make a mistaken, then come to find out that your backup really wasn't a good backup? :-) 00:13 < passstab> OK 00:13 < Bradipo> But it's your data, you can take whatever chances you like. 00:14 < Bradipo> Is the backup written to a raw disk, or is it written to a file in some filesystem? 00:15 -!- megaTherion [~therion@unix.io] has quit [Read error: Connection reset by peer] 00:15 -!- megaTherion [~therion@unix.io] has joined #openbsd 00:17 < passstab> I formatted it before my second attempt, but I'm still not sure how I would have chosen that. 00:17 < Bradipo> You formatted the extra drive with newfs? 00:17 < passstab> yes, but it eventually gave some kind of error. 00:18 < Bradipo> Hmm. 00:18 < passstab> Why wouldn't dd overwrite that anyway? I thought that it just tramples everything? 00:19 < Bradipo> Well, I think you've not quite got a clear picture between the difference between writing a file and writing directly to a disk. 00:19 < Bradipo> If you type: "dd if=/dev/rsd1c of=/dev/rsd2c" where will the data go? 00:20 < passstab> Is there a good place I should look to fix that? 00:20 < Bradipo> If you type: "dd if=/dev/rsd1c of=/mnt/bigfile" where will the data go? 00:20 < passstab> ahh, that makes sense. 00:20 < Bradipo> In the first case you are writing to a "raw" disk. 00:21 < passstab> I wrote to rsd1c 00:21 < Bradipo> And you're right, it will "trample everything". 00:21 < passstab> Never considered it could be used within a filesystem. 00:21 < Bradipo> But in the second case, you write to "/mnt/bigfile" which presumes that you have a mounted filesystem and it will *not* "trample everything", but instead will just create a big file named "bigfile". 00:22 < Bradipo> So if you wrote to /dev/rsd1c, then you most certainly do *not* have a filesystem to mount. 00:22 < Bradipo> You have a copy of a corrupted disk. 00:23 < Bradipo> But the boundaries of that new disk are much larger... so there is more data to scan through. However, with a file, the size of that file is fixed at the size of the source. 00:23 < Bradipo> But, it's good to know. 00:23 < Bradipo> So what you have now is a copy of your corrupted disk written to /dev/rsd1c, right? 00:24 < Bradipo> In this case, you can just run the dd command I mentioned above, "dd if=/dev/rsd1c bs=1m count=400000 | strings | less" 00:24 < Bradipo> You can then have "less" search for a string that looks like the beginning of a backup copy of the disklabel. 00:25 < Bradipo> For example, you could search for "^duid: [0-9a-f]" 00:26 < Bradipo> With any luck, you'll find the disklabel that was saved in /var/backup/disklabel.sd0.current (or whatever). 00:26 -!- byteskeptical [~amnesia@user/byteskeptical] has joined #openbsd 00:26 < Bradipo> Then once you know the boundaries from the disklabel, you can use fdisk/disklabel to make a new label (first on the backup disk) and see if you can mount (read-only) the partitions. 00:27 -!- Pixi [~Pixi@user/pixi] has joined #openbsd 00:28 < passstab> So is that just using fdisk and then disklabel as if it were a new install, but with the exact same boundaries? 00:28 < Bradipo> Right. 00:28 < Bradipo> The boundaries are recorded in /var/backup/disklabel.sd0.current 00:28 -!- passstab [~passstab@2601:45:4000:6280:4074:6915:656f:70b9] has quit [Quit: Client closed] 00:29 -!- passstab [~passstab@2601:45:4000:6280:4074:6915:656f:70b9] has joined #openbsd 00:29 -!- Pixi` [~Pixi@user/pixi] has quit [Ping timeout: 248 seconds] 00:32 < passstab> Bradipo Why shouldn't I run strings on the internal drive, and then try the fix on the external one? 00:33 < Bradipo> Well, sure you could do that. 00:33 < Bradipo> Just being cautious. 00:34 < passstab> I thought that strings itself is not destructive? 00:34 < Bradipo> It isn't. 00:34 < Bradipo> But the more commands you run against the corrupted drive, the more risk you assume in making a mistake somewhere along the way. :-) 00:34 < Bradipo> Again, you have to evaluate your own level of risk. 00:34 < Bradipo> And paranoia. 00:37 < passstab> I needed the second usb port to charge, so I just did that. 00:37 < passstab> It is supposed to give a blank screen while it is working, right? 00:38 -!- planet9 [~glenda@syn.rip] has joined #openbsd 00:38 < Bradipo> Well, you're getting a blank screen because it's going to take a while for dd to skip beyond 400GB of data. :-) 00:38 < Bradipo> less has nothing to display... so it's just blocked waiting for data. 00:39 < Bradipo> You could press ^T (aka ctrl-t) if you setup status in your tty. 00:39 < passstab> I didn't know skipping data was that slow. 00:39 < Bradipo> And dd might report its progress. 00:39 < passstab> it does nothing I can see. 00:40 < Bradipo> Well, as I said, you have to set it up *before* you run dd. 00:40 < Bradipo> Otherwise, you can send dd a SIGINFO signal from another terminal. 00:40 < passstab> ah, ok 00:40 < passstab> I'll just wait. 00:40 < Bradipo> dd does say it uses lseek. 00:41 < Bradipo> https://man.openbsd.org/dd#skip 00:41 < Bradipo> I assume that /dev/rsd0c supports lseek, but I don't know for certain. 00:42 < Bradipo> "Otherwise, input data is read and discarded." 00:42 -!- passstab [~passstab@2601:45:4000:6280:4074:6915:656f:70b9] has quit [Quit: Client closed] 00:44 < Bradipo> You might want to just review your steps to make sure it's doing the correct thing. 00:45 < Bradipo> I should think that with lseek it doesn't take *too* long. 00:46 < Bradipo> I just tried it with my 250GB disk and it seeks pretty quickly. 00:46 -!- jastrom [~jastrom@user/jastrom] has quit [Ping timeout: 252 seconds] 00:46 < Bradipo> So if it's still showing a blank screen, perhaps you've done something wrong. 00:48 -!- planet9 [~glenda@syn.rip] has quit [Quit: WeeChat 4.6.3] 00:51 -!- fro [fro@humpty.dance] has quit [Remote host closed the connection] 00:53 -!- CrimeWave [~Montreal@user/CrimeWave] has joined #openbsd 00:53 -!- passstab [~passstab@2601:45:4000:6280:4074:6915:656f:70b9] has joined #openbsd 00:54 -!- oox [~oox@user/oox] has quit [Quit: leaving] 00:56 < Bradipo> passstab: Hmm, you missed my last communications apparently. 00:56 < Bradipo> I shouldn't think it would take this long using dd. 00:57 < Bradipo> Especially given that your disk should be seekable. 00:57 < passstab> Bradipo, sorry, I'm on webchat. 00:57 < Bradipo> You should review your commands and make sure they're doing what you think they are doing. 00:57 < passstab> I'm seeing text now. 00:57 < Bradipo> Ahh, ok. 00:57 < passstab> starting with x(8. 00:58 < Bradipo> Yep, you'll see all kinds of seemingly random data. 00:58 < Bradipo> strings just outputs printable strings. 00:58 < passstab> and "!This program cannot be run in DOS mode. 00:58 < Bradipo> Sure, that's a printable string. :-) 00:58 < passstab> I was just checking how to search in less 00:58 < Bradipo> But you should just tell less to search for ^duid: [0-9a-f] 00:59 < Bradipo> You search in less the same way you search in vi. 00:59 < Bradipo> The / character searches foward. The ? character searches backward. 00:59 < Bradipo> So you would type: /^duid: [0-9a-f] 00:59 < Bradipo> And press Enter to cause it to start the search. 01:00 < Bradipo> Now, it will become unresponsive at that point because less will again read and block ad infinitum until it either hits your search string or the end of file. 01:00 -!- jadi [~jadi@d23-16-146-102.bchsia.telus.net] has quit [Remote host closed the connection] 01:00 < passstab> oh, good, I was starting to panic. 01:03 < passstab> ok, it finished, and gave me a lot to look through. 01:03 < Bradipo> Well, that doesn't make sense. 01:03 < Bradipo> If you told it to search for a string and it didn't find it, there isn't anything for you to "look through". :-) 01:04 < passstab> I might have entered the search wrong, can I just try again? 01:04 < passstab> Or will that only look at the results? 01:04 < Bradipo> If it's at the end of the input, you can have it search in reverse. 01:04 < Bradipo> It will look at whatever is in the less buffer. 01:05 < Bradipo> So type: ?^duid: [0-9a-f] 01:06 < Bradipo> It might have been better to write the strings output to a file and then search that file. 01:06 < Bradipo> For all we know less ran out of memory. 01:07 < passstab> Also, a bunch of the strings look like they are only showing the end of a string. 01:07 < Bradipo> Sure, fragments of files. 01:08 < Bradipo> strings only outputs ASCII printable characters. And a disklabel backup is just that. 01:09 -!- cavecanem [~cavecanem@user/cavecanem] has quit [Ping timeout: 248 seconds] 01:10 < passstab> hah, there is an environmental variable "lesssecure" which makes it more secure. 01:10 < Bradipo> Haha, funny. 01:10 < Bradipo> Nice to know about that option. 01:10 < passstab> I think I ran another search by accident, so I might wait a bit before getting what I need. 01:11 < thrig> such as not running random programs, which have been the cause of security vulns elsewhere due to "oh we'll run something to unpack that archive automatically" 01:12 < Bradipo> Yeah, or writing secure strings to the history file. 01:12 -!- tozhu [~tozhu@171.221.44.142] has quit [Quit: tozhu] 01:13 < thrig> I also set LESSHISTFILE=- 01:13 -!- glenda [~glenda@syn.rip] has joined #openbsd 01:14 < Bradipo> Well, by default on OpenBSD, LESSHISTFILE isn't even set. 01:14 -!- glenda is now known as planet9 01:14 -!- memset_ [~memset@gateway/tor-sasl/memset] has quit [Remote host closed the connection] 01:15 -!- memset [~memset@gateway/tor-sasl/memset] has joined #openbsd 01:17 < thrig> I set those things by default so they get set on other OS 01:21 -!- ixc [~ixc@user/ixc] has joined #openbsd 01:23 -!- ilx [~ilx@user/ilx] has joined #openbsd 01:23 -!- zwr [~zwr@200-97-243-136.user3p.veloxzone.com.br] has joined #openbsd 01:24 -!- passstab [~passstab@2601:45:4000:6280:4074:6915:656f:70b9] has quit [Quit: Client closed] 01:25 -!- zimmer [~zimmer@user/zimmer] has joined #openbsd 01:31 -!- cavecanem [~cavecanem@user/cavecanem] has joined #openbsd 01:33 -!- fallback [fallback@2605:6400:20:b4:d215:d916:1183:4c75] has joined #openbsd 01:33 -!- jibsaramnim [~jibsaramn@user/Jibsaramnim] has joined #openbsd 01:36 -!- sinvet [~sinvet@user/sinvet] has quit [Read error: Connection reset by peer] 01:36 -!- monkeybusiness [monkeybusi@2605:6400:441a:98c7:2067:a587:6f09:805c] has joined #openbsd 01:36 -!- sinvet [~sinvet@user/sinvet] has joined #openbsd 01:37 -!- passstab [~passstab@2601:45:4000:6280:de21:48ff:fe5b:4177] has joined #openbsd 01:38 -!- Couch [~Couch@168.195.185.6] has joined #openbsd 01:38 < passstab> Bradipo: It is still frozen from my mistaken command, which I think included f or F. 01:39 < passstab> should I start over, and write to the thumb drive? 01:40 < passstab> that is, dd if=/dev/rsd1c bs=1m skip=400000 | strings | ./strings 01:41 < passstab> I doubt it would fill it. 01:42 -!- RamonaZero [~RamonaZer@user/RamonaZero] has quit [Ping timeout: 248 seconds] 01:43 < Bradipo> You could try that, sure. 01:43 < Bradipo> Might be better to zip it though. 01:44 < Bradipo> Something like: dd if=/dev/rsd1c bs=1m skip=400000 | strings | gzip -c > strings.out.gz 01:45 < Bradipo> Then you can use zless to view it: zless strings.out.gz 01:45 < passstab> is that different from streamzip? 01:45 < Bradipo> I don't know what streamzip is. 01:45 < Bradipo> Interesting, apparently streamzip(1) is in base. 01:45 < passstab> https://man.openbsd.org/man1/streamzip.1 01:45 < Bradipo> Yeah, all these years, never heard of it. 01:46 < Bradipo> I've never used it so I cannot comment on its merits. 01:46 < Bradipo> What I wrote above will work just fine. 01:46 < passstab> Just found that when I searched openbsd zip, but it looks appropriate. That being said, I'll stick with yours. 01:46 < Bradipo> Also, make sure that "strings.out.gz" is written somewhere appropriate that has enough space to hold it. 01:47 < Bradipo> I think streamzip is for making Zip files, not compressing data. 01:47 < Bradipo> A zip archive is not the same as just a compressed file. 01:48 -!- k2patel [~k2patel@user/k2patel] has quit [Quit: k2patel] 01:48 < passstab> My thumb drive is 64 gigs, my openbsd install is, IIRC about 120 gigs in all. And I'm sure I didn't use much of it. 01:49 -!- sinvet [~sinvet@user/sinvet] has quit [Remote host closed the connection] 01:49 < passstab> and I'll change the skip to 490000 01:49 -!- sinvet [~sinvet@user/sinvet] has joined #openbsd 01:50 -!- foul_owl [~kerry@94.156.149.99] has quit [Ping timeout: 276 seconds] 01:52 < Bradipo> Well, keep in mind that you're only getting ASCII printable characters. 01:52 < Bradipo> So it's probably safe to continue with 400000. Better to have too much data to sift through than to skip past useful data. :-) 01:52 < Bradipo> Remember to: stty status ^T 01:53 < Bradipo> Before you start the dd command. 01:53 < pardis> you can limit the size of the strings file itself with a second dd 01:53 < pardis> dd whatever | strings | dd count=1k >file 01:53 < pardis> or something 01:53 < Bradipo> Right, do it in chunks? 01:54 < Bradipo> Most likely it will compress quite nicely since it's all ASCII. 02:00 -!- passstab [~passstab@2601:45:4000:6280:de21:48ff:fe5b:4177] has quit [Quit: Client closed] 02:03 -!- foul_owl [~kerry@174-21-151-59.tukw.qwest.net] has joined #openbsd 02:15 -!- seninha [~seninha@user/seninha] has quit [Ping timeout: 272 seconds] 02:15 -!- RamonaZero [~RamonaZer@syn-076-037-053-129.res.spectrum.com] has joined #openbsd 02:33 -!- zwr [~zwr@200-97-243-136.user3p.veloxzone.com.br] has quit [Read error: Connection reset by peer] 02:34 -!- passstab [~passstab@2601:45:4000:6280:4074:6915:656f:70b9] has joined #openbsd 02:38 < passstab> still waiting 02:39 -!- zwr [~zwr@200-97-243-136.user3p.veloxzone.com.br] has joined #openbsd 02:42 -!- jastrom [~jastrom@user/jastrom] has joined #openbsd 02:44 -!- f451 [~f451@user/f451] has quit [Ping timeout: 252 seconds] 02:45 -!- passstab [~passstab@2601:45:4000:6280:4074:6915:656f:70b9] has quit [Quit: Client closed] 02:49 -!- passstab [~passstab@2601:45:4000:6280:4074:6915:656f:70b9] has joined #openbsd 02:50 < passstab> the file is 1.3G 02:53 -!- gawen [~gawen@user/gawen] has quit [Quit: cya] 02:54 -!- zip100 [~zip100@185.209.196.171] has quit [Ping timeout: 248 seconds] 02:54 -!- _zip100 [~zip100@185.213.155.247] has joined #openbsd 02:54 < passstab> Bradipo I think that worked! 02:56 -!- gman999 [~GMan999@user/gman999] has quit [Quit: WeeChat 4.4.2] 02:56 < Bradipo> What did dd report as it's transfer? 02:57 < passstab> I don't remember, but I used zless and searched the file and got something that looks like my partition table. 02:58 < Bradipo> Did it show your partitions and stuff? 02:58 < Bradipo> It should start with "# /dev/rsd0c:" 02:58 < Bradipo> And then list a bunch of parameters and finally your partitions. 02:58 < passstab> yep, it does. 02:59 < Bradipo> Ok, that's a good sign. 02:59 < Bradipo> Mind posting to a pastebin? 02:59 < passstab> and then the primary and secondary gpt 02:59 -!- gawen [~gawen@user/gawen] has joined #openbsd 02:59 < Bradipo> Oh that's interesting, how did you identify the primary and seconary GPT? 02:59 < Bradipo> I didn't think OpenBSD backed those up. 03:00 < passstab> I wish I could, not sure how to do that. I didn't even connect the computer to the internet. 03:01 < Bradipo> Oh, you mean you don't know how to get the data that's on your USB bootable to the Internet? 03:02 < Bradipo> That's pretty simple actually. Just shutdown the OS on the USB stick, then plug it into a working OpenBSD system that *is* on the Internet and mount the partition that you wrote your file to and then access it there. 03:02 < Bradipo> I only ask because it would be easier to talk about with real data. 03:02 < Bradipo> At any rate, you should be able to reconstruct the disklabel on your drive at this point. 03:03 < Bradipo> Does the "label:" correspond to the drive that you expect? 03:03 < passstab> I don't have another openbsd system, that is why I was using the usb. 03:03 < passstab> yes 03:03 < passstab> I'm sure I can make that work another time. I think I need to turn in for the night. 03:04 < Bradipo> Ok, good luck. Making progress I think. 03:05 < passstab> Bradipo thank you very much. I don't know how you are available at all hours to help, but I really appreciate it. 03:05 < passstab> TZAF 03:05 < Bradipo> Definitely not all hours. 03:05 < Bradipo> If I were available all hours, I would most likely be AI. lol. 03:06 -!- f451 [~f451@user/f451] has joined #openbsd 03:07 -!- edthix [~Thunderbi@60.52.157.194] has joined #openbsd 03:08 < thrig> or a team 03:09 < Bradipo> You mean like this "AI" team? https://timesofindia.indiatimes.com/technology/tech-news/how-this-billion-dollar-london-startup-backed-by-microsoft-made-700-engineers-sitting-in-india-pose-as-ai/articleshow/121572659.cms 03:09 -!- tvtoon [~The_cUnix@user/tvtoon] has quit [Quit: "Huuuuumeeeeeennn..."] 03:10 < thrig> AI has long been used to get money, which is what John McCarthy invented the term for 03:11 -!- passstab [~passstab@2601:45:4000:6280:4074:6915:656f:70b9] has quit [Ping timeout: 272 seconds] 03:14 -!- AbsolutelyFree [~Absolutel@user/AbsolutelyFree] has quit [Ping timeout: 244 seconds] 03:17 -!- gman999 [~GMan999@user/gman999] has joined #openbsd 03:21 -!- Aedil [~adrian@188.193.3.19] has joined #openbsd 03:25 -!- Bradipo [~Bradipo@50.77.44.29] has quit [Quit: Lost terminal] 03:59 -!- Plasmoduck [~cjg@mx1.adamsgaard.dk] has joined #openbsd 04:05 -!- eniac [~eniac@user/eniac] has quit [Remote host closed the connection] 04:05 -!- eniac [~eniac@user/eniac] has joined #openbsd 04:10 -!- xx [~xx@user/xx] has quit [Ping timeout: 244 seconds] 04:12 -!- xx [~xx@user/xx] has joined #openbsd 04:30 -!- jonf [~jonf@c-73-199-154-254.hsd1.nj.comcast.net] has quit [Remote host closed the connection] 04:30 -!- jonf_ [~jonf@c-73-199-154-254.hsd1.nj.comcast.net] has joined #openbsd 04:35 -!- remiliascarlet [~remiliasc@user/remiliascarlet] has quit [Quit: remiliascarlet] 04:40 -!- remiliascarlet [~remiliasc@user/remiliascarlet] has joined #openbsd 04:49 -!- zimmer [~zimmer@user/zimmer] has quit [Ping timeout: 252 seconds] 04:52 -!- memset [~memset@gateway/tor-sasl/memset] has quit [Remote host closed the connection] 04:52 -!- memset [~memset@gateway/tor-sasl/memset] has joined #openbsd 04:54 -!- ivdsangen [~ivo@83-84-59-127.cable.dynamic.v4.ziggo.nl] has joined #openbsd 04:59 -!- Red_ [~Red@56.51-174-66.customer.lyse.net] has joined #openbsd 05:00 -!- jmcgnh [~jmcgnh@wikipedia/jmcgnh] has quit [Ping timeout: 244 seconds] 05:01 -!- unixpro1970 [~unixpro19@c-67-168-188-36.hsd1.wa.comcast.net] has joined #openbsd 05:03 -!- Red [~Red@239.51-174-66.customer.lyse.net] has quit [Ping timeout: 276 seconds] 05:08 -!- gman999 [~GMan999@user/gman999] has quit [Quit: WeeChat 4.4.2] 05:10 -!- horrad [~Thunderbi@2003:a:61f:c901:9907:f2af:6ea5:44bb] has joined #openbsd 05:10 -!- labrnth [~cjones@209.121.240.59] has quit [Quit: ZNC 1.9.1 - https://znc.in] 05:11 -!- labrnth [~cjones@209.121.240.59] has joined #openbsd 05:12 -!- jmcgnh [~jmcgnh@wikipedia/jmcgnh] has joined #openbsd 05:14 -!- lusciouslover [~lusciousl@2603:6080:d03:610d::1050] has quit [Quit: \] 05:15 -!- lusciouslover [~lusciousl@2603:6080:d03:610d::1050] has joined #openbsd 05:20 -!- manwithluck [~manwithlu@2a09:bac5:5082:2432::39b:b0] has quit [Ping timeout: 252 seconds] 05:21 -!- manwithluck [~manwithlu@2a09:bac1:5bc0:20::38a:6f] has joined #openbsd 05:29 -!- Leo_V [~Leo@104-195-228-167.cpe.teksavvy.com] has quit [Read error: Connection reset by peer] 05:30 -!- memset [~memset@gateway/tor-sasl/memset] has quit [Ping timeout: 244 seconds] 05:32 -!- cantelope [uid598105@id-598105.hampstead.irccloud.com] has quit [Quit: Connection closed for inactivity] 05:32 -!- memset [~memset@gateway/tor-sasl/memset] has joined #openbsd 05:33 -!- adip [~adip@c145-14.icpnet.pl] has joined #openbsd 05:47 -!- rnsanchez [~rnsanchez@2804:14d:2c92:87c2:7493:c798:e652:8fee] has quit [Ping timeout: 272 seconds] 05:54 -!- Red_ is now known as Red 05:56 -!- Couch [~Couch@168.195.185.6] has quit [Quit: Killed... yeah...] 05:59 -!- mtoy [~mtoy@user/mtoy] has quit [Ping timeout: 240 seconds] 06:00 -!- mtoy [~mtoy@user/mtoy] has joined #openbsd 06:00 -!- rnsanchez [~rnsanchez@2804:14d:2c92:87c2:7493:c798:e652:8fee] has joined #openbsd 06:09 -!- mtoy_ [~mtoy@p5828035-ipxg00y01osakachuo.osaka.ocn.ne.jp] has joined #openbsd 06:10 -!- mtoy [~mtoy@user/mtoy] has quit [Ping timeout: 240 seconds] 06:11 -!- shiranaihito_ [~shiranaih@156.59.50.245] has joined #openbsd 06:15 -!- struchu [~struchu@staticline-31-183-138-40.toya.net.pl] has joined #openbsd 06:17 -!- Jaywalker [~jaywalker@74-194-124-95.bcstcmtk03.res.dyn.suddenlink.net] has quit [Read error: Connection reset by peer] 06:17 -!- dragon_ [~dragon@2604:3d08:9581:b500::bd97] has joined #openbsd 06:19 -!- dragon__ [~dragon@199.254.238.56] has joined #openbsd 06:21 -!- ilx [~ilx@user/ilx] has quit [Ping timeout: 252 seconds] 06:22 -!- dragon_ [~dragon@2604:3d08:9581:b500::bd97] has quit [Ping timeout: 260 seconds] 06:23 -!- dragon_ [~dragon@199.254.238.56] has joined #openbsd 06:30 -!- adip [~adip@c145-14.icpnet.pl] has quit [Ping timeout: 265 seconds] 06:33 -!- dragon_ [~dragon@199.254.238.56] has quit [Quit: Leaving] 06:33 -!- dragon__ [~dragon@199.254.238.56] has quit [Quit: Leaving] 06:34 -!- dragon_ [~dragon@199.254.238.56] has joined #openbsd 06:34 -!- foul_owl [~kerry@174-21-151-59.tukw.qwest.net] has quit [Ping timeout: 244 seconds] 06:38 -!- dragon_ [~dragon@199.254.238.56] has quit [Client Quit] 06:43 -!- om3ga [~om3ga@93.177.187.134] has joined #openbsd 06:43 -!- itchy [~mr@user/itchy] has quit [Ping timeout: 260 seconds] 06:45 -!- itchy [~mr@user/itchy] has joined #openbsd 06:45 -!- lavaball [~Melissa@31.204.155.215] has joined #openbsd 06:49 -!- foul_owl [~kerry@94.156.149.93] has joined #openbsd 06:50 -!- shiranaihito_ [~shiranaih@156.59.50.245] has quit [Quit: My Mac has gone to sleep. ZZZzzz…] 06:50 -!- ixc [~ixc@user/ixc] has quit [Ping timeout: 272 seconds] 06:54 -!- drathir_tor [~drathir@wireguard/tunneler/drathir] has quit [Remote host closed the connection] 06:54 -!- memset [~memset@gateway/tor-sasl/memset] has quit [Remote host closed the connection] 06:54 -!- eniac [~eniac@user/eniac] has quit [Remote host closed the connection] 06:54 -!- drathir_tor [~drathir@wireguard/tunneler/drathir] has joined #openbsd 06:54 -!- eniac [~eniac@user/eniac] has joined #openbsd 06:55 -!- memset [~memset@gateway/tor-sasl/memset] has joined #openbsd 06:56 -!- gawen [~gawen@user/gawen] has quit [Quit: cya] 06:58 -!- dragon_ [~dragon@199.254.238.56] has joined #openbsd 06:58 -!- chiselfuse [~chiselfus@user/chiselfuse] has quit [Remote host closed the connection] 06:58 -!- planet9 [~glenda@syn.rip] has quit [Remote host closed the connection] 06:58 -!- echelon [~steerpike@gateway/tor-sasl/steerpike] has quit [Remote host closed the connection] 06:59 -!- chiselfuse [~chiselfus@user/chiselfuse] has joined #openbsd 06:59 -!- planet9 [~glenda@syn.rip] has joined #openbsd 06:59 -!- echelon [~steerpike@gateway/tor-sasl/steerpike] has joined #openbsd 07:01 -!- feriman [~feriman@user/feriman] has joined #openbsd 07:02 -!- gawen [~gawen@user/gawen] has joined #openbsd 07:02 -!- dragon_ [~dragon@199.254.238.56] has quit [Client Quit] 07:02 -!- drag0n [~drag0n@199.254.238.56] has joined #openbsd 07:03 -!- RobbieAB [~robert@user/RobbieAB] has quit [Ping timeout: 252 seconds] 07:03 -!- drag0n [~drag0n@199.254.238.56] has quit [Client Quit] 07:03 -!- drag0n [~drag0n@199.254.238.56] has joined #openbsd 07:04 -!- drag0n [~drag0n@199.254.238.56] has quit [Client Quit] 07:05 -!- drag0n [~drag0n@199.254.238.56] has joined #openbsd 07:07 -!- drag0n [~drag0n@199.254.238.56] has quit [Client Quit] 07:07 -!- drag0n [~drag0n@199.254.238.56] has joined #openbsd 07:09 -!- drag0n [~drag0n@199.254.238.56] has quit [Client Quit] 07:09 -!- dragon_ [~dragon@199.254.238.56] has joined #openbsd 07:09 -!- drathir_tor [~drathir@wireguard/tunneler/drathir] has quit [Remote host closed the connection] 07:10 -!- drathir_tor [~drathir@wireguard/tunneler/drathir] has joined #openbsd 07:15 -!- dragon_ [~dragon@199.254.238.56] has quit [Quit: Leaving] 07:21 -!- shiranaihito_ [~shiranaih@156.59.50.245] has joined #openbsd 07:23 -!- Foxy_ [~fox@user/Foxy/x-8224177] has joined #openbsd 07:28 -!- benji [~benji@user/benji] has quit [Ping timeout: 248 seconds] 07:35 -!- agentil [~agentil@88-168-25-80.subs.proxad.net] has joined #openbsd 07:37 -!- jlavsund [jlavsund@2.71.71.148.mobile.tre.se] has joined #openbsd 07:39 -!- lavaball [~Melissa@31.204.155.215] has quit [Remote host closed the connection] 07:42 -!- ed2 [~ed@185.109.89.74] has joined #openbsd 07:44 -!- ed2 is now known as el_pepe 07:51 -!- b50d [~b50d@62.96.54.30] has joined #openbsd 07:54 -!- Guest68 [~Guest68@87-92-223-18.rev.dnainternet.fi] has joined #openbsd 07:55 -!- sd0 [~nobody@user/sd0] has quit [Read error: Connection reset by peer] 07:59 -!- benji [~benji@user/benji] has joined #openbsd 08:00 -!- swaggboi [~kvirc@slackware.uk/supporter/swaggboi] has quit [Ping timeout: 248 seconds] 08:01 -!- swaggboi [~kvirc@slackware.uk/supporter/swaggboi] has joined #openbsd 08:04 -!- divansantana [~user@192.145.132.53] has quit [Remote host closed the connection] 08:06 -!- antanst9 [~antanst@user/antanst] has joined #openbsd 08:08 -!- Guest68 is now known as hhhhhhhhhh 08:13 -!- hhhhhhhhhh [~Guest68@87-92-223-18.rev.dnainternet.fi] has quit [Changing host] 08:13 -!- hhhhhhhhhh [~Guest68@user/hhhhhhhhhh] has joined #openbsd 08:13 -!- jgh [~jgh@hellmouth.gulag.org.uk] has joined #openbsd 08:13 < hhhhhhhhhh> When I try to use acme-client lately it prints: acme-client: 172.65.32.248: connect: Connection refused 08:13 < hhhhhhhhhh> acme-client: 2606:4700:60:0:f53d:5624:85c7:3a2c: connect: No route to host 08:13 < hhhhhhhhhh> acme-client: https://acme-v02.api.letsencrypt.org/acme/authz/xxx/xxx: bad comm 08:14 < hhhhhhhhhh> If I curl those addresses they look ok 08:14 < IcePic> is that your ips or the ips of the letsencrypt hosts? 08:14 < hhhhhhhhhh> LE hosts 08:15 < hhhhhhhhhh> Looking at the code for "bad comm" is not really enlightening 08:16 < ssm_> did your default route get foobar'd by chance? 08:16 < ssm_> oh conn refused, probably not 08:16 < hhhhhhhhhh> No, curl https://172.65.32.248 -k -> ...The Let's Encrypt CA... 08:16 < ssm_> could you have done something to get banned? 08:17 -!- PyR3X [~PyR3X@user/pyr3x] has quit [Ping timeout: 276 seconds] 08:17 < ssm_> aka, made too man cert renewals too quickly 08:17 < IcePic> the limits are not at the tcp level, when you hammer their endpoints, the httpd at their end will tell you that you did too many requests 08:17 < hhhhhhhhhh> I doubt it, if I go on the redacted URL it shows me some json about pending challenges on my domains 08:18 < IcePic> hhhhhhhhhh: do you have any creative pf rules about which user may connect or so? 08:18 < hhhhhhhhhh> No, I have `pass out quick on egress all modulate state` near the top 08:19 -!- figment [~figment@user/figment] has joined #openbsd 08:20 -!- feriman [~feriman@user/feriman] has quit [Quit: Lost terminal] 08:20 -!- Everything [~Everythin@77.120.244.38] has joined #openbsd 08:23 < IcePic> should be somewhat easy to tcpdump on the interface with dest port 443 and see what tcpdump says about outgoing traffic 08:23 < IcePic> or pflog, in case your local pf is somehow blocking outgoing traffic from acme-client 08:26 -!- Foxy_ [~fox@user/Foxy/x-8224177] has quit [Ping timeout: 276 seconds] 08:26 -!- d-ra [~d-ra@user/d-ra] has joined #openbsd 08:27 -!- feriman [~feriman@user/feriman] has joined #openbsd 08:27 -!- CrimeWave [~Montreal@user/CrimeWave] has quit [Quit: Textual IRC 7.2.5 2025 OSX] 08:31 -!- Foxy_ [~fox@user/Foxy/x-8224177] has joined #openbsd 08:46 -!- neutron7 [~fivedolla@96.73.191.185] has joined #openbsd 08:48 -!- benji [~benji@user/benji] has quit [Quit: ZNC - https://znc.in] 08:48 -!- benji [~benji@user/benji] has joined #openbsd 08:50 < hhhhhhhhhh> It is failing on different URLs each time actually 08:52 < hhhhhhhhhh> Kind of hard to debug this in gdb becauase it spawns 10 processes 08:53 -!- nsuperbus [~nsuperbus@host-46-251-26-104.kabelnet.hu] has joined #openbsd 08:54 -!- rawgreaze_ [~rawgreaze@user/rawgreaze] has joined #openbsd 08:54 -!- sd0 [~nobody@user/sd0] has joined #openbsd 08:55 -!- rawgreaze [~rawgreaze@user/rawgreaze] has quit [Ping timeout: 265 seconds] 08:55 < hhhhhhhhhh> my guess is it tries to open too many connections in parallel 08:55 < hhhhhhhhhh> Or gets rate limited 08:55 -!- rawgreaze_ is now known as rawgreaze 08:57 -!- g4rrgl3n0m4d [~N0m4d@bl18-180-107.dsl.telepac.pt] has joined #openbsd 08:58 < sibiria> there are alternatives to LE 08:58 < sibiria> e.g. Buypass and such 09:00 < lts> You can try does the staging LE give a different reply 09:01 -!- benji [~benji@user/benji] has quit [Quit: ZNC - https://znc.in] 09:01 < hhhhhhhhhh> staging was fine 09:04 -!- benji [~benji@user/benji] has joined #openbsd 09:09 -!- nsuperbus [~nsuperbus@host-46-251-26-104.kabelnet.hu] has quit [Quit: goodbye] 09:10 -!- jpoc [~jpoc@centos/qa/jpoc] has quit [Ping timeout: 252 seconds] 09:13 -!- nsuperbus [~nsuperbus@host-46-251-26-104.kabelnet.hu] has joined #openbsd 09:14 -!- feriman [~feriman@user/feriman] has quit [Ping timeout: 252 seconds] 09:15 < hhhhhhhhhh> using lego instead of acme-client just works too 09:15 -!- jpoc [~jpoc@centos/qa/jpoc] has joined #openbsd 09:16 -!- ixc [~ixc@user/ixc] has joined #openbsd 09:18 -!- neutron7 [~fivedolla@96.73.191.185] has quit [Ping timeout: 248 seconds] 09:20 -!- Old-Ben-Jabroni [~oldben@user/Old-Ben-Jabroni] has quit [Ping timeout: 244 seconds] 09:21 -!- zimmer [~zimmer@user/zimmer] has joined #openbsd 09:27 < hhhhhhhhhh> I also got acme-client to run to completion a single time out of maybe 100 runs so I guess it's just broken 09:27 -!- lavaball [~Melissa@31.204.155.215] has joined #openbsd 09:29 < noodle> > No, I have `pass out quick on egress all modulate state` near the top 09:29 < noodle> hhhhhhhhhh: last rule wins btw 09:29 < noodle> oh nvm it has quick. my bad 09:37 -!- hhhhhhhhhh [~Guest68@user/hhhhhhhhhh] has quit [Quit: Client closed] 09:40 -!- benji [~benji@user/benji] has quit [Quit: ZNC - https://znc.in] 09:42 -!- PyR3X [~PyR3X@user/pyr3x] has joined #openbsd 09:42 -!- benji [~benji@user/benji] has joined #openbsd 09:44 -!- hsw [~hsw@112-104-12-126.adsl.dynamic.seed.net.tw] has quit [Remote host closed the connection] 09:44 -!- hsw [~hsw@112-104-12-126.adsl.dynamic.seed.net.tw] has joined #openbsd 09:45 -!- DanucD [~captain@user/DanucD] has joined #openbsd 09:46 -!- DanucD [~captain@user/DanucD] has left #openbsd [] 09:47 < sibiria> i use acme.sh and buypass 09:47 -!- memset [~memset@gateway/tor-sasl/memset] has quit [Remote host closed the connection] 09:48 -!- memset [~memset@gateway/tor-sasl/memset] has joined #openbsd 09:52 -!- noodle [~noodle@user/macarona] has quit [Remote host closed the connection] 09:55 -!- noodle [~noodle@user/macarona] has joined #openbsd 09:55 -!- el_pepe [~ed@185.109.89.74] has quit [Ping timeout: 260 seconds] 09:59 -!- Shells [~michelle@gate.mhix.org] has quit [Ping timeout: 252 seconds] 09:59 -!- Michelle [~michelle@gate.mhix.org] has joined #openbsd 10:02 -!- noone [~six@user/six] has quit [Quit: nyaa~] 10:03 -!- gatlinggoat [~Thunderbi@96.225.72.95] has joined #openbsd 10:05 -!- wiu [~wiu@user/wiu] has quit [Ping timeout: 272 seconds] 10:07 -!- SiFuh_ [~SiFuh@user/sifuh] has quit [Remote host closed the connection] 10:08 -!- SiFuh_ [~SiFuh@user/sifuh] has joined #openbsd 10:08 -!- gatlinggoat [~Thunderbi@96.225.72.95] has quit [Ping timeout: 265 seconds] 10:08 -!- SiFuh [~SiFuh@user/sifuh] has quit [Remote host closed the connection] 10:08 -!- SiFuh [~SiFuh@user/sifuh] has joined #openbsd 10:13 -!- zippy [~quassel@188.27.47.195] has quit [Quit: https://quassel-irc.org - Chat comfortably. Anywhere.] 10:13 -!- zippy [~quassel@188.27.47.195] has joined #openbsd 10:14 -!- zippy [~quassel@188.27.47.195] has quit [Client Quit] 10:14 -!- zippy [~quassel@188.27.47.195] has joined #openbsd 10:15 -!- zippy [~quassel@188.27.47.195] has quit [Client Quit] 10:15 -!- zippy [~quassel@188.27.47.195] has joined #openbsd 10:15 -!- zippy [~quassel@188.27.47.195] has quit [Client Quit] 10:15 -!- byteskeptical [~amnesia@user/byteskeptical] has quit [Quit: Lost terminal] 10:15 -!- zippy [~quassel@188.27.47.195] has joined #openbsd 10:16 -!- bsdperl [~bsdperl@user/bsdperl] has quit [Quit: bsdperl] 10:17 -!- pebble [~pebble@145-255-192-100.ecomservice.bg] has joined #openbsd 10:18 -!- ixc [~ixc@user/ixc] has quit [Ping timeout: 260 seconds] 10:18 -!- bsdperl [~bsdperl@user/bsdperl] has joined #openbsd 10:19 < sibiria> anyone here running Prosody, who noticed a slew of problems since 13.0.1? 10:19 -!- ixc [~ixc@user/ixc] has joined #openbsd 10:25 -!- zero-xray7 [~nonlinear@user/nonlinear] has joined #openbsd 10:27 -!- zero-xray [~nonlinear@user/nonlinear] has quit [Ping timeout: 276 seconds] 10:27 -!- zero-xray7 is now known as zero-xray 10:28 -!- Old-Ben-Jabroni [~oldben@user/Old-Ben-Jabroni] has joined #openbsd 10:32 -!- ixc [~ixc@user/ixc] has quit [Ping timeout: 260 seconds] 10:32 -!- zwr [~zwr@200-97-243-136.user3p.veloxzone.com.br] has quit [Read error: Connection reset by peer] 10:33 -!- CrashOverride [~strcat@p57b4bf5c.dip0.t-ipconnect.de] has joined #openbsd 10:34 -!- Old-Ben-Jabroni [~oldben@user/Old-Ben-Jabroni] has quit [Remote host closed the connection] 10:35 -!- Old-Ben-Jabroni [~oldben@user/Old-Ben-Jabroni] has joined #openbsd 10:38 -!- zwr [~zwr@200-97-243-136.user3p.veloxzone.com.br] has joined #openbsd 10:45 -!- sonya [~nologin@gateway/tor-sasl/sonya] has joined #openbsd 10:46 -!- Foxy_ [~fox@user/Foxy/x-8224177] has quit [Quit: WeeChat 4.6.3] 10:49 < rahl> Do we have an equivalent to linux's sendfile? 10:58 < IcePic> rahl: socket splicing is the closest I guess 11:00 -!- deepesttoaster [~deepestto@user/deepesttoaster] has quit [Remote host closed the connection] 11:03 -!- deepesttoaster [~deepestto@user/deepesttoaster] has joined #openbsd 11:10 -!- Kayvlim [~kayvlim@user/kayvlim] has quit [Remote host closed the connection] 11:12 -!- manwithluck [~manwithlu@2a09:bac1:5bc0:20::38a:6f] has quit [Ping timeout: 260 seconds] 11:12 -!- manwithluck [~manwithlu@2a09:bac5:5081:2387::38a:59] has joined #openbsd 11:12 -!- zero-xray1 [~nonlinear@user/nonlinear] has joined #openbsd 11:13 -!- amadaluzia [~amadaluzi@user/amadaluzia] has joined #openbsd 11:15 -!- zimmer__ [~zimmer@user/zimmer] has joined #openbsd 11:15 -!- adig [~default@2a02:2f0e:f30b:3401:c517:725:a087:8e09] has joined #openbsd 11:15 -!- zero-xray [~nonlinear@user/nonlinear] has quit [Ping timeout: 252 seconds] 11:15 -!- zero-xray1 is now known as zero-xray 11:17 -!- zimmer [~zimmer@user/zimmer] has quit [Ping timeout: 244 seconds] 11:19 < rahl> IcePic: ack, cheers. Worst case I'll just have to do some buffered read/write passing through userland 11:21 -!- seninha [~seninha@user/seninha] has joined #openbsd 11:22 -!- Emru [~emru@manwe.emru.xyz] has quit [Quit: Gateway shutdown] 11:23 -!- amadaluzia [~amadaluzi@user/amadaluzia] has quit [Ping timeout: 260 seconds] 11:25 -!- amadaluzia [~amadaluzi@user/amadaluzia] has joined #openbsd 11:29 -!- Emru [~emru@manwe.emru.xyz] has joined #openbsd 11:34 -!- ed2 [~ed@185.109.89.74] has joined #openbsd 11:36 -!- usagi_mimi [~usagi@user/usagi-mimi:93651] has quit [Quit: WeeChat 4.6.3] 11:44 -!- memset [~memset@gateway/tor-sasl/memset] has quit [Remote host closed the connection] 11:44 -!- memset [~memset@gateway/tor-sasl/memset] has joined #openbsd 11:53 -!- gatlinggoat [~Thunderbi@172.59.210.18] has joined #openbsd 11:54 -!- eniac_ [~eniac@user/eniac] has joined #openbsd 11:54 -!- seninha [~seninha@user/seninha] has quit [Ping timeout: 245 seconds] 11:54 -!- eniac [~eniac@user/eniac] has quit [Remote host closed the connection] 11:59 -!- usagi_mimi [~usagi@user/usagi-mimi:93651] has joined #openbsd 11:59 -!- jgh [~jgh@hellmouth.gulag.org.uk] has quit [Remote host closed the connection] 12:00 -!- jgh [~jgh@hellmouth.gulag.org.uk] has joined #openbsd 12:11 -!- jlavsund [jlavsund@2.71.71.148.mobile.tre.se] has quit [Remote host closed the connection] 12:23 -!- sonya [~nologin@gateway/tor-sasl/sonya] has quit [Ping timeout: 244 seconds] 12:24 -!- elagost [~elagost@user/elagost] has quit [Quit: WeeChat 4.4.3] 12:24 -!- sonya [~nologin@gateway/tor-sasl/sonya] has joined #openbsd 12:26 -!- nathan_ [~nathan@2603:7080:8a00:284a::1187] has joined #openbsd 12:32 -!- nathan_ [~nathan@2603:7080:8a00:284a::1187] has quit [Remote host closed the connection] 12:37 -!- Leone [~Leo@104-195-228-167.cpe.teksavvy.com] has joined #openbsd 12:40 -!- gnucode [~gnucode@user/jab] has joined #openbsd 12:45 -!- gnucode [~gnucode@user/jab] has quit [Quit: Leaving.] 12:46 -!- feriman [~feriman@user/feriman] has joined #openbsd 12:52 -!- pebble [~pebble@145-255-192-100.ecomservice.bg] has quit [] 12:59 -!- Old-Ben-Jabroni [~oldben@user/Old-Ben-Jabroni] has quit [Ping timeout: 244 seconds] 13:04 -!- elagost [~elagost@user/elagost] has joined #openbsd 13:05 -!- DanucD [~DanucD@user/DanucD] has joined #openbsd 13:10 -!- jfsimon [~jfsimon19@lfbn-lyo-1-763-48.w92-137.abo.wanadoo.fr] has quit [Remote host closed the connection] 13:10 -!- jfsimon [~jfsimon19@lfbn-lyo-1-763-48.w92-137.abo.wanadoo.fr] has joined #openbsd 13:15 -!- gman999 [~GMan999@user/gman999] has joined #openbsd 13:15 -!- Old-Ben-Jabroni [~oldben@user/Old-Ben-Jabroni] has joined #openbsd 13:17 -!- gnucode [~gnucode@user/jab] has joined #openbsd 13:19 -!- agentil [~agentil@88-168-25-80.subs.proxad.net] has quit [Quit: agentil] 13:19 -!- agentil [~agentil@88-168-25-80.subs.proxad.net] has joined #openbsd 13:20 -!- antranigv [~antranigv@bsd.am] has quit [Ping timeout: 248 seconds] 13:21 -!- antranigv [~antranigv@bsd.am] has joined #openbsd 13:23 -!- edthix [~Thunderbi@60.52.157.194] has quit [Quit: edthix] 13:28 -!- Nahual [~Nahual@centos/community/Nahual] has joined #openbsd 13:29 -!- ed2 [~ed@185.109.89.74] has quit [Ping timeout: 245 seconds] 13:30 -!- Foxy_ [~fox@user/Foxy/x-8224177] has joined #openbsd 13:33 -!- wnh [~Thunderbi@user/wnh] has joined #openbsd 13:37 -!- jfsimon [~jfsimon19@lfbn-lyo-1-763-48.w92-137.abo.wanadoo.fr] has quit [Remote host closed the connection] 13:38 -!- jfsimon [~jfsimon19@lfbn-lyo-1-763-48.w92-137.abo.wanadoo.fr] has joined #openbsd 13:44 -!- amadaluzia [~amadaluzi@user/amadaluzia] has quit [Quit: ZNC 1.9.1 - https://znc.in] 13:45 -!- amadaluzia [~amadaluzi@user/amadaluzia] has joined #openbsd 13:45 -!- memset [~memset@gateway/tor-sasl/memset] has quit [Remote host closed the connection] 13:46 -!- Old-Ben-Jabroni [~oldben@user/Old-Ben-Jabroni] has quit [Ping timeout: 244 seconds] 13:46 -!- memset [~memset@gateway/tor-sasl/memset] has joined #openbsd 13:52 -!- Old-Ben-Jabroni [~oldben@user/Old-Ben-Jabroni] has joined #openbsd 13:55 -!- gnucode [~gnucode@user/jab] has quit [Quit: Leaving.] 13:55 -!- gnucode [~gnucode@user/jab] has joined #openbsd 13:57 -!- gnucode [~gnucode@user/jab] has quit [Client Quit] 14:01 -!- emmastrck [~lnn@host-82-50-163-70.retail.telecomitalia.it] has joined #openbsd 14:01 -!- emmastrck [~lnn@host-82-50-163-70.retail.telecomitalia.it] has quit [Changing host] 14:01 -!- emmastrck [~lnn@user/emmastrck] has joined #openbsd 14:02 -!- gman999 [~GMan999@user/gman999] has quit [Quit: WeeChat 4.4.2] 14:02 -!- amadaluzia [~amadaluzi@user/amadaluzia] has quit [Quit: ZNC 1.9.1 - https://znc.in] 14:03 -!- amadaluzia [~amadaluzi@user/amadaluzia] has joined #openbsd 14:04 -!- Bradipo [~Bradipo@50.77.44.29] has joined #openbsd 14:07 -!- gnucode [~gnucode@user/jab] has joined #openbsd 14:09 -!- jmcunx [jmccue@user/zjmc] has left #openbsd [] 14:09 -!- gnucode [~gnucode@user/jab] has left #openbsd [] 14:10 -!- cantelope [uid598105@id-598105.hampstead.irccloud.com] has joined #openbsd 14:12 -!- emmastrck is now known as pshufb 14:12 -!- Old-Ben-Jabroni [~oldben@user/Old-Ben-Jabroni] has quit [Ping timeout: 244 seconds] 14:13 -!- DanucD [~DanucD@user/DanucD] has quit [Quit: WeeChat 4.5.2] 14:14 -!- jupiter126 [~jupiter12@178.254.111.239] has quit [Remote host closed the connection] 14:19 -!- seoul_man [~meh@user/seoul-man/x-5066766] has joined #openbsd 14:20 -!- uncleyear [~ian@178.66.129.10] has quit [Read error: Connection reset by peer] 14:20 -!- uncleyear [~ian@178.66.129.10] has joined #openbsd 14:22 -!- gman999 [~GMan999@user/gman999] has joined #openbsd 14:22 -!- Old-Ben-Jabroni [~oldben@user/Old-Ben-Jabroni] has joined #openbsd 14:23 -!- trillion_exabyte [~X@80.239.178.98] has quit [Ping timeout: 268 seconds] 14:24 -!- k2patel [~k2patel@user/k2patel] has joined #openbsd 14:24 -!- trillion_exabyte [~X@80.239.178.98] has joined #openbsd 14:24 -!- struchu [~struchu@staticline-31-183-138-40.toya.net.pl] has quit [Quit: WeeChat 4.6.3] 14:26 -!- pshufb [~lnn@user/emmastrck] has quit [Ping timeout: 272 seconds] 14:29 -!- Old-Ben-Jabroni [~oldben@user/Old-Ben-Jabroni] has quit [Ping timeout: 244 seconds] 14:31 -!- ublx [~ublx@user/ublx] has joined #openbsd 14:32 -!- zwr [~zwr@200-97-243-136.user3p.veloxzone.com.br] has quit [Read error: Connection reset by peer] 14:32 -!- seninha [~seninha@user/seninha] has joined #openbsd 14:32 -!- zwr [~zwr@200-97-243-136.user3p.veloxzone.com.br] has joined #openbsd 14:38 -!- noodle [~noodle@user/macarona] has quit [Ping timeout: 265 seconds] 14:38 -!- b50d [~b50d@62.96.54.30] has quit [Remote host closed the connection] 14:40 -!- alx^ [~alx@195.15.28.34] has quit [Read error: Connection reset by peer] 14:43 -!- LainIwakura [~LainIwaku@user/LainIwakura] has joined #openbsd 14:44 -!- pshufb [~lnn@host-82-50-163-70.retail.telecomitalia.it] has joined #openbsd 14:44 -!- pshufb [~lnn@host-82-50-163-70.retail.telecomitalia.it] has quit [Changing host] 14:44 -!- pshufb [~lnn@user/emmastrck] has joined #openbsd 14:46 -!- Old-Ben-Jabroni [~oldben@user/Old-Ben-Jabroni] has joined #openbsd 14:46 -!- beastie [~luis@user/thebeastie] has quit [Quit: WeeChat 4.6.0] 14:47 -!- noodle [~noodle@user/macarona] has joined #openbsd 15:03 -!- memset [~memset@gateway/tor-sasl/memset] has quit [Remote host closed the connection] 15:04 -!- LainIwakura [~LainIwaku@user/LainIwakura] has quit [Quit: Client closed] 15:04 -!- horrad [~Thunderbi@2003:a:61f:c901:9907:f2af:6ea5:44bb] has quit [Ping timeout: 252 seconds] 15:05 -!- memset [~memset@gateway/tor-sasl/memset] has joined #openbsd 15:05 -!- beastie [~luis@user/thebeastie] has joined #openbsd 15:09 -!- jupiter126 [~jupiter12@178.254.111.239] has joined #openbsd 15:10 -!- jgh_ [~jgh@hellmouth.gulag.org.uk] has joined #openbsd 15:12 -!- LainIwakura [~LainIwaku@user/LainIwakura] has joined #openbsd 15:12 -!- gatlinggoat [~Thunderbi@172.59.210.18] has quit [Quit: gatlinggoat] 15:13 -!- jgh [~jgh@hellmouth.gulag.org.uk] has quit [Ping timeout: 260 seconds] 15:17 -!- gnucode [~gnucode@user/jab] has joined #openbsd 15:17 -!- tercal [~tercal@user/tercal] has quit [Remote host closed the connection] 15:19 -!- beastie [~luis@user/thebeastie] has quit [Quit: WeeChat 4.6.0] 15:22 -!- BillyZane [~BillyZane@user/BillyZane] has quit [Remote host closed the connection] 15:22 -!- beastie [~luis@user/thebeastie] has joined #openbsd 15:22 -!- BillyZane [~BillyZane@user/BillyZane] has joined #openbsd 15:23 -!- gnucode [~gnucode@user/jab] has quit [Quit: Leaving.] 15:23 -!- gnucode [~gnucode@user/jab] has joined #openbsd 15:23 -!- user71 [~user71@2001:1530:1001:de89:c7be:5862:f93:ccf6] has joined #openbsd 15:29 -!- sinvet [~sinvet@user/sinvet] has quit [Remote host closed the connection] 15:30 -!- sinvet [~sinvet@user/sinvet] has joined #openbsd 15:30 -!- beastie [~luis@user/thebeastie] has quit [Quit: WeeChat 4.6.0] 15:32 -!- SirJitsu [~SirJitsu@162-231-111-175.lightspeed.livnmi.sbcglobal.net] has quit [Quit: Konversation terminated!] 15:32 -!- SirJitsu [~SirJitsu@162-231-111-175.lightspeed.livnmi.sbcglobal.net] has joined #openbsd 15:32 -!- tarxvfz [~tarxvfz@gateway/tor-sasl/tarxvfz] has joined #openbsd 15:33 -!- beastie [~luis@user/thebeastie] has joined #openbsd 15:40 -!- lusciouslover [~lusciousl@2603:6080:d03:610d::1050] has quit [Quit: \] 15:40 -!- lusciouslover [~lusciousl@2603:6080:d03:610d::1050] has joined #openbsd 15:45 -!- pshufb [~lnn@user/emmastrck] has quit [Ping timeout: 252 seconds] 15:47 -!- pshufb [~lnn@host-82-50-163-70.retail.telecomitalia.it] has joined #openbsd 15:47 -!- pshufb [~lnn@host-82-50-163-70.retail.telecomitalia.it] has quit [Changing host] 15:47 -!- pshufb [~lnn@user/emmastrck] has joined #openbsd 15:51 -!- jgh_ [~jgh@hellmouth.gulag.org.uk] has quit [Remote host closed the connection] 15:54 -!- lotsen [~lotsen@user/Lotsen] has joined #openbsd 15:59 -!- neutron7 [~fivedolla@96.73.191.185] has joined #openbsd 15:59 -!- agentil [~agentil@88-168-25-80.subs.proxad.net] has quit [Remote host closed the connection] 16:00 -!- ecaotcst^ [~ecaotcst@99-73-20-238.lightspeed.tukrga.sbcglobal.net] has joined #openbsd 16:02 -!- Everything [~Everythin@77.120.244.38] has quit [Quit: leaving] 16:04 -!- zimmer__ [~zimmer@user/zimmer] has quit [Remote host closed the connection] 16:07 -!- zimmer [~zimmer@user/zimmer] has joined #openbsd 16:07 -!- Foxy_ [~fox@user/Foxy/x-8224177] has quit [Ping timeout: 252 seconds] 16:09 -!- wiu [~wiu@user/wiu] has joined #openbsd 16:11 -!- SirJitsu1 [~SirJitsu@162-231-111-175.lightspeed.livnmi.sbcglobal.net] has joined #openbsd 16:14 -!- gnucode [~gnucode@user/jab] has quit [Quit: Leaving.] 16:16 -!- ublx [~ublx@user/ublx] has quit [Quit: ublx] 16:17 -!- xx [~xx@user/xx] has quit [Remote host closed the connection] 16:18 -!- xx [~xx@user/xx] has joined #openbsd 16:18 -!- fixou4 [~fixou@212.114.19.0] has quit [Ping timeout: 245 seconds] 16:19 -!- jadi [~jadi@d23-16-146-102.bchsia.telus.net] has joined #openbsd 16:23 -!- memset [~memset@gateway/tor-sasl/memset] has quit [Remote host closed the connection] 16:23 -!- memset [~memset@gateway/tor-sasl/memset] has joined #openbsd 16:25 -!- adip [~adip@c145-14.icpnet.pl] has joined #openbsd 16:26 -!- zimmer [~zimmer@user/zimmer] has quit [Read error: Connection reset by peer] 16:29 -!- neutron7 [~fivedolla@96.73.191.185] has quit [Ping timeout: 245 seconds] 16:30 -!- euphores [~SASL_euph@user/euphores] has quit [Quit: Leaving.] 16:31 -!- CosmicDJ [~CosmicDJ@p200300e24f1b230102e04cfffe01e7ab.dip0.t-ipconnect.de] has quit [Quit: reboot] 16:32 -!- zwr [~zwr@200-97-243-136.user3p.veloxzone.com.br] has quit [Read error: Connection reset by peer] 16:38 -!- zwr [~zwr@200-97-243-136.user3p.veloxzone.com.br] has joined #openbsd 16:40 -!- euphores [~SASL_euph@user/euphores] has joined #openbsd 16:41 -!- gatlinggoat [~Thunderbi@2607:fb91:1c7a:d3d0:4e8c:320c:c7d7:7d54] has joined #openbsd 16:44 -!- uncleyear [~ian@178.66.129.10] has quit [Remote host closed the connection] 16:44 -!- ivanbu [~weechat@93.176.171.127] has quit [Quit: WeeChat 4.6.3] 16:45 -!- uncleyear [~ian@178.66.129.10] has joined #openbsd 16:46 -!- ivanbu [~weechat@93.176.171.127] has joined #openbsd 16:47 -!- zimmer [~zimmer@user/zimmer] has joined #openbsd 16:49 -!- CosmicDJ [~CosmicDJ@p200300e24f1b230102e04cfffe01e7ab.dip0.t-ipconnect.de] has joined #openbsd 16:49 -!- CosmicDJ [~CosmicDJ@p200300e24f1b230102e04cfffe01e7ab.dip0.t-ipconnect.de] has quit [Client Quit] 16:52 -!- riceandbeans [~zach@user/riceandbeans] has quit [Read error: Connection reset by peer] 16:52 -!- riceandbeans [~zach@user/riceandbeans] has joined #openbsd 16:53 -!- euphores [~SASL_euph@user/euphores] has quit [Ping timeout: 244 seconds] 16:55 -!- Albright [~Albright@149.28.13.173] has quit [Quit: ZNC 1.8.2 - https://znc.in] 16:55 -!- d-ra [~d-ra@user/d-ra] has quit [Remote host closed the connection] 16:55 -!- Albright [~Albright@149.28.13.173] has joined #openbsd 16:55 -!- DragonMaus [~dragonmau@user/dragonmaus] has quit [Ping timeout: 252 seconds] 16:55 -!- gman999 [~GMan999@user/gman999] has quit [Quit: WeeChat 4.4.2] 16:56 -!- CosmicDJ [~CosmicDJ@p200300e24f1b230102e04cfffe01e7ab.dip0.t-ipconnect.de] has joined #openbsd 16:57 -!- JTL [~jtl@user/jtl] has quit [Ping timeout: 276 seconds] 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 16:58 -!- DragonMaus [~dragonmau@user/dragonmaus] has joined #openbsd 16:59 -!- JTL [~jtl@user/jtl] has joined #openbsd 16:59 -!- euphores [~SASL_euph@user/euphores] has joined #openbsd 17:00 -!- parai [~parai@user/parai] has quit [Quit: connection reset by purr] 17:01 -!- parai [~parai@user/parai] has joined #openbsd 17:02 -!- jpb [~jimbznc@user/jpb] has quit [Ping timeout: 252 seconds] 17:03 -!- m0v [~m0v@user/m0v] has quit [Ping timeout: 260 seconds] 17:09 -!- ixc [~ixc@user/ixc] has joined #openbsd 17:16 -!- jpb [~jimbznc@user/jpb] has joined #openbsd 17:18 -!- gnucode [~gnucode@user/jab] has joined #openbsd 17:25 -!- gnucode [~gnucode@user/jab] has quit [Quit: Leaving.] 17:32 -!- xet7 [~xet7@user/xet7] has quit [Quit: Leaving] 17:32 -!- gman999 [~GMan999@user/gman999] has joined #openbsd 17:40 -!- LainIwakura [~LainIwaku@user/LainIwakura] has quit [Ping timeout: 272 seconds] 17:51 -!- seninha [~seninha@user/seninha] has quit [Ping timeout: 248 seconds] 17:51 -!- gatlinggoat [~Thunderbi@2607:fb91:1c7a:d3d0:4e8c:320c:c7d7:7d54] has quit [Ping timeout: 260 seconds] 17:53 -!- feriman [~feriman@user/feriman] has quit [Read error: Connection reset by peer] 17:53 -!- gatlinggoat [~Thunderbi@172.59.209.154] has joined #openbsd 17:58 -!- sinvet [~sinvet@user/sinvet] has quit [Remote host closed the connection] 17:58 -!- shinbet [~sinvet@user/sinvet] has joined #openbsd 18:00 -!- krl [~krl@h-155-4-221-200.NA.cust.bahnhof.se] has joined #openbsd 18:02 -!- krl_ [~krl@h-155-4-221-200.NA.cust.bahnhof.se] has quit [Ping timeout: 260 seconds] 18:04 -!- fixou4 [~fixou@212.114.19.0] has joined #openbsd 18:06 -!- jmabsd [~jmabsd@user/jmabsd] has joined #openbsd 18:07 < jmabsd> Do you remember if there is graphics accelleration in X on most *ARM 64bit* platforms? 18:07 < sibiria> there isn't 18:09 -!- jsto [~jsto@user/meow/jsto] has quit [Ping timeout: 252 seconds] 18:09 < ssm_> jmabsd: would require porting panfrost I believe 18:11 < ssm_> it's a reversed engineered driver for mali chipsets, similar to nouveau. nouveau isn't supported either, though I think that may be due to some buerocratic/licensing concerns 18:13 < ssm_> if nothing else, hooking up an eGPU to an arm board does work 18:18 < Lucas_> does it? I know for sure it doesn't work with an enclosure over USB-C 18:18 -!- feriman [~feriman@user/feriman] has joined #openbsd 18:19 < jmabsd> sibiria,ssm_: I mean, that X does not draw pixels but has acceleration for boxes, scrolling, etc. 18:19 < jmabsd> I did not mean video hardware decoding 18:19 -!- CarbonWriter [~Nigel@2a00:23c4:9c24:f801::f90] has quit [Quit: ZNC 1.8.2+deb2+deb11u1 - https://znc.in] 18:20 < sibiria> jmabsd: there is no accelerated support 18:20 < jmabsd> ssm_: Oh. How does X on Linux machines accelerate graphics 18:20 < sibiria> 100% software framebuffer 18:20 < jmabsd> Ic. Ok. That must be palpably slow 18:20 < jmabsd> May be worth to try 18:20 < sibiria> it gets the job done, but yes 18:21 < sibiria> if you're on anything similar to RK3399 or older, it's an unpleasant experience 18:21 < sibiria> that's about the limit where basic graphical desktop actions feel tenable 18:21 < jmabsd> sibiria: Yeah exactly I was thinking of the RK3399 18:21 < jmabsd> It's a bit old 18:22 < jmabsd> If there were install instructions online for Panfrost or Nouveau I'd easily install it. 18:22 < jmabsd> Doesn't need to be bundled. 18:23 < sibiria> i wonder if they even compile outside linux without a massive effort 18:23 < sibiria> very linux-centric stuff 18:23 < jmabsd> Ok 18:23 < sibiria> i know the freebsd people were working on porting panfrost. maybe it's done? 18:25 -!- pshufb [~lnn@user/emmastrck] has quit [Ping timeout: 272 seconds] 18:25 < pardis> you'd easily install a component of the Linux kernel on OpenBSD? you're confident 18:26 < jmabsd> According to a quick google, FreeBSD has graphics acceleration in X on ARM 64 computers now thanks to a Panfrost driver. 18:26 < jmabsd> *port. 18:28 -!- pshufb [~lnn@user/emmastrck] has joined #openbsd 18:32 -!- zwr [~zwr@200-97-243-136.user3p.veloxzone.com.br] has quit [Read error: Connection reset by peer] 18:34 -!- skippy8 [~skippy8@user/Skippy8] has joined #openbsd 18:36 -!- pshufb [~lnn@user/emmastrck] has quit [Ping timeout: 276 seconds] 18:36 -!- gnucode [~gnucode@user/jab] has joined #openbsd 18:36 -!- Kayvlim [~kayvlim@user/kayvlim] has joined #openbsd 18:37 -!- zwr [~zwr@200-97-243-136.user3p.veloxzone.com.br] has joined #openbsd 18:38 -!- gnucode [~gnucode@user/jab] has quit [Client Quit] 18:44 -!- gnucode [~gnucode@user/jab] has joined #openbsd 18:44 -!- ublx [~ublx@user/ublx] has joined #openbsd 18:45 -!- uwharrie [~uwharrie@user/uwharrie] has joined #openbsd 18:49 -!- gatlinggoat [~Thunderbi@172.59.209.154] has quit [Ping timeout: 260 seconds] 18:52 -!- fluffery [~quassel@user/fluffery] has joined #openbsd 18:55 -!- jsto [~jsto@user/meow/jsto] has joined #openbsd 18:55 -!- adig [~default@2a02:2f0e:f30b:3401:c517:725:a087:8e09] has quit [Read error: Connection reset by peer] 18:58 -!- vlcg [~mirc-rc@user/vlcg] has joined #openbsd 18:58 -!- vlcg [~mirc-rc@user/vlcg] has quit [Client Quit] 18:59 -!- vlcg [mirc-rockc@user/vlcg] has joined #openbsd 19:00 -!- gnucode [~gnucode@user/jab] has quit [Quit: Leaving.] 19:05 -!- ivdsangen [~ivo@83-84-59-127.cable.dynamic.v4.ziggo.nl] has quit [Quit: leaving] 19:13 -!- gnucode [~gnucode@user/jab] has joined #openbsd 19:16 -!- gnucode [~gnucode@user/jab] has quit [Client Quit] 19:33 -!- slim [~slim@user/meow/slim] has quit [Quit: bWFkZSB5b3UgbG9vaw==] 19:33 -!- zimmer [~zimmer@user/zimmer] has quit [Read error: Connection reset by peer] 19:35 -!- slim [~slim@user/meow/slim] has joined #openbsd 19:36 -!- user71 [~user71@2001:1530:1001:de89:c7be:5862:f93:ccf6] has quit [Quit: Leaving] 19:36 -!- pstef [~pstef@user/pstef] has quit [Ping timeout: 248 seconds] 19:38 -!- lotsen [~lotsen@user/Lotsen] has quit [Ping timeout: 260 seconds] 19:40 -!- Everything [~Everythin@77.120.244.38] has joined #openbsd 19:41 -!- pshufb [~lnn@host-82-50-163-70.retail.telecomitalia.it] has joined #openbsd 19:41 -!- pshufb [~lnn@host-82-50-163-70.retail.telecomitalia.it] has quit [Changing host] 19:41 -!- pshufb [~lnn@user/emmastrck] has joined #openbsd 19:53 -!- Emru [~emru@manwe.emru.xyz] has quit [Quit: Gateway shutdown] 19:53 -!- Emru [~emru@manwe.emru.xyz] has joined #openbsd 19:55 -!- seninha [~seninha@user/seninha] has joined #openbsd 20:00 -!- Yonle- [~Yonle@user/yonle] has quit [Ping timeout: 248 seconds] 20:02 -!- _wnh_ [~Thunderbi@user/wnh] has joined #openbsd 20:05 -!- wnh [~Thunderbi@user/wnh] has quit [Ping timeout: 276 seconds] 20:05 -!- _wnh_ is now known as wnh 20:05 -!- Siva [Siva@lecturify.net] has quit [Ping timeout: 276 seconds] 20:06 -!- jsto [~jsto@user/meow/jsto] has quit [Quit: ZNC - https://znc.in] 20:11 -!- jsto [~jsto@user/meow/jsto] has joined #openbsd 20:11 -!- lusciouslover [~lusciousl@2603:6080:d03:610d::1050] has quit [Remote host closed the connection] 20:11 -!- lusciouslover [~lusciousl@2603:6080:d03:610d::1050] has joined #openbsd 20:11 -!- pshufb [~lnn@user/emmastrck] has quit [Ping timeout: 260 seconds] 20:16 -!- lolok [~lolok@user/lolok] has quit [Quit: lolok] 20:17 -!- feriman [~feriman@user/feriman] has quit [Ping timeout: 248 seconds] 20:18 -!- gnucode [~gnucode@user/jab] has joined #openbsd 20:19 -!- Everything [~Everythin@77.120.244.38] has quit [Quit: leaving] 20:24 -!- Lucanis [~lucanis@user/lucanis] has joined #openbsd 20:27 -!- Lucanis_ [~lucanis@user/lucanis] has joined #openbsd 20:28 -!- jmabsd [~jmabsd@user/jmabsd] has quit [Remote host closed the connection] 20:28 -!- jmabsd [~jmabsd@user/jmabsd] has joined #openbsd 20:31 -!- Lucanis [~lucanis@user/lucanis] has quit [Ping timeout: 265 seconds] 20:32 -!- zwr [~zwr@200-97-243-136.user3p.veloxzone.com.br] has quit [Read error: Connection reset by peer] 20:34 -!- lavaball [~Melissa@31.204.155.215] has quit [Remote host closed the connection] 20:37 -!- zwr [~zwr@200-97-243-136.user3p.veloxzone.com.br] has joined #openbsd 20:38 -!- pshufb [~lnn@host-82-50-163-70.retail.telecomitalia.it] has joined #openbsd 20:38 -!- pshufb [~lnn@host-82-50-163-70.retail.telecomitalia.it] has quit [Changing host] 20:38 -!- pshufb [~lnn@user/emmastrck] has joined #openbsd 20:41 -!- CrashOverride [~strcat@p57b4bf5c.dip0.t-ipconnect.de] has quit [Ping timeout: 244 seconds] 20:42 -!- neutron7 [~fivedolla@96.73.191.185] has joined #openbsd 20:43 -!- gman999 [~GMan999@user/gman999] has quit [Quit: WeeChat 4.4.2] 20:51 -!- tvtoon [~The_cUnix@user/tvtoon] has joined #openbsd 20:56 -!- noodle [~noodle@user/macarona] has quit [Ping timeout: 252 seconds] 20:56 < vortexx> https://flak.tedunangst.com/post/wobbly-letters 20:56 < vortexx> personaly I find that looks awful 20:57 < zelest> XD 20:58 -!- noone [~six@user/six] has joined #openbsd 21:00 -!- SirJitsu1 [~SirJitsu@162-231-111-175.lightspeed.livnmi.sbcglobal.net] has quit [Remote host closed the connection] 21:01 -!- SirJitsu1 [~SirJitsu@162-231-111-175.lightspeed.livnmi.sbcglobal.net] has joined #openbsd 21:03 -!- jgh [~jgh@hellmouth.gulag.org.uk] has joined #openbsd 21:04 < sibiria> the teletext color scheme does a number on the eyes, too 21:04 -!- gnucode [~gnucode@user/jab] has quit [Quit: Leaving.] 21:04 -!- noodle [~noodle@user/macarona] has joined #openbsd 21:06 -!- dogg0 [~dogg0@user/dogg0] has quit [Ping timeout: 248 seconds] 21:12 -!- el_pepe [~ed@185.109.89.74] has joined #openbsd 21:13 -!- neutron7 [~fivedolla@96.73.191.185] has quit [Ping timeout: 260 seconds] 21:15 -!- jmabsd [~jmabsd@user/jmabsd] has quit [Remote host closed the connection] 21:15 -!- jmabsd [~jmabsd@user/jmabsd] has joined #openbsd 21:16 -!- shiranaihito_ [~shiranaih@156.59.50.245] has quit [Quit: My Mac has gone to sleep. ZZZzzz…] 21:16 -!- tarxvfz [~tarxvfz@gateway/tor-sasl/tarxvfz] has quit [Remote host closed the connection] 21:20 -!- SirJitsu1 [~SirJitsu@162-231-111-175.lightspeed.livnmi.sbcglobal.net] has quit [Quit: Konversation terminated!] 21:23 -!- el_pepe [~ed@185.109.89.74] has quit [Ping timeout: 260 seconds] 21:25 -!- dogg0 [~dogg0@user/dogg0] has joined #openbsd 21:28 -!- ed2 [~ed@185.109.89.74] has joined #openbsd 21:31 -!- adip [~adip@c145-14.icpnet.pl] has quit [Ping timeout: 276 seconds] 21:33 -!- welcome [~Windshiel@1.147.19.129] has joined #openbsd 21:34 < welcome> HELO 21:34 < welcome> I had an idea 21:35 < welcome> called secured (as n secure - d for daemon) 21:35 < welcome> (as in secure - d for daemon) 21:36 < welcome> before you throw openbsd books at me...., citing reasons why openbsd is far from in need of a security review... 21:36 < welcome> I know 21:37 < welcome> BUT 21:37 < welcome> I had this idea while I was finishing a vanilla install of 7.7 21:40 < tvtoon> another good idea: buy a locker for your USB ports, SECURITY! 21:40 < welcome> the idea's strength comes from the principle that if there is a single port of call (the secured daemon) for anything going from outside the openbsd system to within, THEN: [o] programming can be focussed on one single point of stregth/failure and made so strong that the diminishing returns problem facing programmers passes zero and can actually become negative 21:42 < vortexx> welcome: have you watched the film Tron recently? Sounds similar to the MCP 21:42 < welcome> [o] a clear understanding of what is on what of either side of the secured deamon 21:42 < welcome> I have not seen the new Tron picture, actually 21:44 < welcome> [o] finally, inside the boundary that is defined by the decured daemon, there exists a machine-state environmental enclosure that is internal pristine 21:46 < welcome> This last, and the first qualities make it possible for the pristince environment to present to the User, an experience which is greater than that engineering limit imposed by the programming of the security mechana of OpenBSD 21:46 < quinq> Sorry, having seen Tron is a requirement for getting any answer from this channel 21:47 -!- memset [~memset@gateway/tor-sasl/memset] has quit [Remote host closed the connection] 21:47 -!- memset [~memset@gateway/tor-sasl/memset] has joined #openbsd 21:49 < welcome> Ie., openbsd will start to help it's developers (and everyone running it) by virtue , virtue of the fact that secured presents a pristine system, that is, once can expect with very little effort a associative benefit 21:49 < welcome> and with a bit more effort one can expect openbsd's security to even cultivate the User 21:50 < sibiria> it's not a bad idea on the surface 21:51 < welcome> Does it have to be the new version of Tron? 21:53 < welcome> I really doubt I can make openbsd better security-wise the way it currently is designed and I would not pretend to be that good at cryptography anyway, ... I also do not think there is anything "wrong" with it as it is 21:53 < welcome> openbsd is sheer genius 21:54 < welcome> I just had this idea is all 21:54 -!- ed2 [~ed@185.109.89.74] has quit [Quit: WeeChat 4.5.2] 21:55 < welcome> I understand, that if one serialises the security mechanism to a single port of call, 21:56 < welcome> there's two paths you can go by .... etc 21:56 < tvtoon> have you tried hardened? 21:58 < welcome> Not yet. .... but while you can look at the extra work needed to protect against exploits and attacker hackers on a single point of failure vs. single-mindedness, 21:59 < welcome> IF one COMMITS to the other path, it quickly becomes so secure that it can in fact produce the elixir of security, that being impossibly hard 21:59 < welcome> particularly 22:01 -!- jfsimon [~jfsimon19@lfbn-lyo-1-763-48.w92-137.abo.wanadoo.fr] has quit [Read error: Connection reset by peer] 22:01 < welcome> i you recall that with a pristine system environment within, as one becomes accustomed to working with it, one will by the laws aof coputer science be cultivated towars improving one's own metal aspect 22:03 -!- pshufb [~lnn@user/emmastrck] has quit [Ping timeout: 268 seconds] 22:04 < welcome> AND 22:04 < welcome> if oe has a single point offailure, as I said earlier, all will can be summoned to work on that oneport of call 22:05 < welcome> kind of like a great Sauron only with nowt but good in him 22:09 < cgnarne> sounds like the forbidden secret technique out of a wuxia novel 22:10 -!- amadaluzia [~amadaluzi@user/amadaluzia] has quit [Ping timeout: 260 seconds] 22:10 < welcome> I am unfamiliar with that text 22:11 < vortexx> welcome: I was referencing the 1982 Tron 22:11 < welcome> whoa 22:11 < welcome> I saw that when it came out 22:11 < welcome> ... 22:12 < welcome> I'm trying to typean intro to this idea for submission to Mr. DeRaadt 22:12 -!- drathir_tor [~drathir@wireguard/tunneler/drathir] has quit [Remote host closed the connection] 22:12 < welcome> it is not easy to talk to him in y experience 22:12 < vortexx> it's a very mainframish idea 22:13 < welcome> I have zero experience with mainframe computing, excepting a tiny study of part of a Cray's CPU 22:14 < welcome> over a decade ago 22:17 -!- drathir_tor [~drathir@wireguard/tunneler/drathir] has joined #openbsd 22:19 < welcome> interstingly though, that did cross my mind while I was writing it up with pen and paper 22:19 -!- pshufb [~lnn@host-82-50-163-70.retail.telecomitalia.it] has joined #openbsd 22:19 -!- pshufb [~lnn@host-82-50-163-70.retail.telecomitalia.it] has quit [Changing host] 22:19 -!- pshufb [~lnn@user/emmastrck] has joined #openbsd 22:19 -!- lusciouslover [~lusciousl@2603:6080:d03:610d::1050] has quit [Quit: \] 22:20 -!- lusciouslover [~lusciousl@2603:6080:d03:610d::1050] has joined #openbsd 22:21 < welcome> I must go and check the moon 22:22 < tvtoon> Fly me to the moon~~~ 22:24 < welcome> alas 22:24 < welcome> it has set 22:28 -!- pshufb [~lnn@user/emmastrck] has quit [Ping timeout: 272 seconds] 22:28 -!- skippy8 [~skippy8@user/Skippy8] has quit [Quit: WeeChat 4.6.3] 22:31 -!- zwr [~zwr@200-97-243-136.user3p.veloxzone.com.br] has quit [Read error: Connection reset by peer] 22:35 -!- sonya [~nologin@gateway/tor-sasl/sonya] has quit [Remote host closed the connection] 22:37 -!- zwr [~zwr@200-97-243-136.user3p.veloxzone.com.br] has joined #openbsd 22:43 -!- vdamewood [~vdamewood@fedora/vdamewood] has quit [Quit: Life beckons] 22:48 -!- seninha [~seninha@user/seninha] has quit [Ping timeout: 260 seconds] 22:59 -!- pshufb [~lnn@host-82-50-163-70.retail.telecomitalia.it] has joined #openbsd 22:59 -!- pshufb [~lnn@host-82-50-163-70.retail.telecomitalia.it] has quit [Changing host] 22:59 -!- pshufb [~lnn@user/emmastrck] has joined #openbsd 23:14 -!- hiroki [~hiroki@163.43.125.228] has joined #openbsd 23:16 -!- naoki [~Thunderbi@240f:10b:7440:1:5fe:d84:ea72:4aa3] has joined #openbsd 23:17 -!- hiroki [~hiroki@163.43.125.228] has quit [Client Quit] 23:18 -!- hiroki [~hiroki@163.43.88.244] has joined #openbsd 23:18 -!- hiroki [~hiroki@163.43.88.244] has quit [Client Quit] 23:19 -!- hiroki [~hiroki@163.43.125.228] has joined #openbsd 23:20 -!- jgh [~jgh@hellmouth.gulag.org.uk] has quit [Remote host closed the connection] 23:21 -!- jgh [~jgh@hellmouth.gulag.org.uk] has joined #openbsd 23:21 -!- hiroki [~hiroki@163.43.125.228] has quit [Client Quit] 23:23 -!- amadaluzia [~amadaluzi@user/amadaluzia] has joined #openbsd 23:23 -!- fro [fro@humpty.dance] has joined #openbsd 23:23 -!- jmabsd [~jmabsd@user/jmabsd] has quit [Ping timeout: 272 seconds] 23:25 -!- ilx [~ilx@46.210.220.245] has joined #openbsd 23:25 -!- ilx [~ilx@46.210.220.245] has quit [Changing host] 23:25 -!- ilx [~ilx@user/ilx] has joined #openbsd 23:27 -!- naoki [~Thunderbi@240f:10b:7440:1:5fe:d84:ea72:4aa3] has quit [Quit: naoki] 23:29 -!- jadi [~jadi@d23-16-146-102.bchsia.telus.net] has quit [Ping timeout: 276 seconds] 23:31 -!- amadaluzia [~amadaluzi@user/amadaluzia] has quit [Quit: ZNC 1.9.1 - https://znc.in] 23:32 -!- amadaluzia [~amadaluzi@user/amadaluzia] has joined #openbsd 23:35 -!- jadi [~jadi@d23-16-146-102.bchsia.telus.net] has joined #openbsd 23:35 -!- welcome [~Windshiel@1.147.19.129] has quit [Read error: Connection reset by peer] 23:38 -!- usagi_mimi [~usagi@user/usagi-mimi:93651] has quit [Ping timeout: 252 seconds] 23:39 -!- jadi [~jadi@d23-16-146-102.bchsia.telus.net] has quit [Ping timeout: 244 seconds] 23:39 -!- amadaluzia [~amadaluzi@user/amadaluzia] has quit [Ping timeout: 252 seconds] 23:40 -!- usagi_mimi [~usagi@user/usagi-mimi:93651] has joined #openbsd 23:43 -!- jgh [~jgh@hellmouth.gulag.org.uk] has quit [Read error: Connection reset by peer] 23:48 -!- m0v [~m0v@113.192.29.7] has joined #openbsd 23:48 -!- m0v [~m0v@113.192.29.7] has quit [Changing host] 23:48 -!- m0v [~m0v@user/m0v] has joined #openbsd 23:51 -!- jadi [~jadi@d23-16-146-102.bchsia.telus.net] has joined #openbsd 23:52 -!- pshufb [~lnn@user/emmastrck] has quit [Ping timeout: 260 seconds] 23:53 -!- amadaluzia [~amadaluzi@user/amadaluzia] has joined #openbsd 23:54 -!- amadaluzia [~amadaluzi@user/amadaluzia] has quit [Remote host closed the connection] 23:55 -!- amadaluzia [~amadaluzi@user/amadaluzia] has joined #openbsd --- Log closed Thu Jun 12 00:00:04 2025