--- Log opened Sat Aug 19 00:00:25 2023 --- Day changed Sat Aug 19 2023 00:00 -!- adip [~adip@c136-225.icpnet.pl] has quit [Ping timeout: 246 seconds] 00:15 -!- ArGGu^^ [~quassel@84-231-120-216.elisa-mobile.fi] has quit [Quit: https://quassel-irc.org - Chat comfortably. Anywhere.] 00:16 -!- morte_ [~user@user/monkey/x-0691028] has quit [Ping timeout: 245 seconds] 00:23 -!- miojo [~miojo@191.18.228.206] has quit [Remote host closed the connection] 00:27 -!- acidfoo [~acidfoo@modemcable137.64-162-184.mc.videotron.ca] has joined #openbsd 00:31 -!- acidfoo [~acidfoo@modemcable137.64-162-184.mc.videotron.ca] has quit [Ping timeout: 245 seconds] 00:34 -!- Guru_DE [~guru@2001:9e8:e809:7f00:c00a:ac5b:fc7a:ecd3] has quit [Ping timeout: 246 seconds] 00:38 -!- Guru_DE [~guru@200-231-142-46.pool.kielnet.net] has joined #openbsd 01:00 -!- CrashOverride [~strcat@p54854431.dip0.t-ipconnect.de] has quit [Ping timeout: 256 seconds] 01:00 -!- acidfoo [~acidfoo@modemcable137.64-162-184.mc.videotron.ca] has joined #openbsd 01:01 -!- Eyesack [~Thunderbi@user/Eyesack] has joined #openbsd 01:06 -!- acidfoo [~acidfoo@modemcable137.64-162-184.mc.videotron.ca] has quit [Ping timeout: 260 seconds] 01:06 -!- tozhu [~tozhu@43.250.63.38] has joined #openbsd 01:12 -!- begriffs [~begriffs@user/begriffs] has joined #openbsd 01:13 < begriffs> Is this recommendation a good one? "It is recommended to set the script suid root. The script will then chroot and then drop privileges to the user set in the config file or to 01:13 < begriffs> its real uid." 01:14 < begriffs> That's from the installation section of https://github.com/madroach/minimalist 01:14 < thrig> I'd be more prone to not make it suid but start it as root so that doas can screen for duplicate env vars and whatnot 01:16 < begriffs> Would I use doas in /etc/aliases then? 01:18 -!- tozhu [~tozhu@43.250.63.38] has quit [Quit: tozhu] 01:21 -!- nyah [~nyah@york-06-b2-v4wan-167893-cust646.vm25.cable.virginm.net] has quit [Quit: leaving] 01:21 < pardis> begriffs: it is generally a bad idea to make *any* interpreted script setuid 01:21 < pardis> it is prone to race conditions 01:22 < thrig> or security exploits, etc 01:23 < pardis> what the kernel actually does when it loads a script is that it opens the file, reads the #!, then executes the interpreter with the script as an argument 01:24 < pardis> there is a delay between the kernel executing the interpreter and the interpreter opening the script, during which time the script at that path may have changed to a completely different file, which may no longer be setuid 01:25 < pardis> this is alluded to in script(7) 01:33 -!- acidfoo [~acidfoo@modemcable137.64-162-184.mc.videotron.ca] has joined #openbsd 01:34 < begriffs> Oh, nice man page. I see the caveats section you're talking about. 01:34 -!- desnudopenguino1 [~Thunderbi@c-73-35-234-26.hsd1.wa.comcast.net] has joined #openbsd 01:34 < oldlaptop> begriffs: I note that this project long predates pledge(2)/unveil(2) 01:35 -!- desnudopenguino [~Thunderbi@c-73-35-234-26.hsd1.wa.comcast.net] has quit [Ping timeout: 256 seconds] 01:35 -!- desnudopenguino1 is now known as desnudopenguino 01:35 < oldlaptop> if all it's using root privileges for is chroot, I'd sooner it pledge/unveil itself (which ISTR there is support for in perl?) 01:36 < oldlaptop> *probably* not that huge a lift to make that change 01:36 < begriffs> Interesting, I do see https://metacpan.org/pod/Unix::Pledge 01:37 < oldlaptop> There is or used to be something in base, I thought 01:37 < thrig> perl -MOpenBSD::Pledge -e42 01:38 -!- acidfoo [~acidfoo@modemcable137.64-162-184.mc.videotron.ca] has quit [Ping timeout: 252 seconds] 01:38 < thrig> kinda tricky with some modules that want to autoload stuff after the pledge 01:40 < begriffs> So I would change the first line (#!/usr/bin/perl -Tw) to invoke with those pledge flags? 01:40 < oldlaptop> I wouldn't think so 01:40 -!- ArGGu^^ [~quassel@84-231-33-24.elisa-mobile.fi] has joined #openbsd 01:41 < thrig> -T won't gain you much (some argue for removing it from perl) 01:41 * begriffs reads https://man.openbsd.org/OpenBSD%3A%3APledge 01:41 < oldlaptop> if you wanted to replace its chroot call, you'd presumably need to study it and figure out which paths need to be unveiled and which promises it needs 01:42 < oldlaptop> (I would assume you'd also want https://man.openbsd.org/OpenBSD%3A%3AUnveil - which is what most directly replaces the abuse of chroot as a "sandbox") 01:43 < begriffs> Let's say I figure out exactly which paths it needs and which promises. When that's in place I run it from /etc/aliases like so? minimalist-example: "|/usr/bin/doas /usr/local/sbin/minimalist.pl list" 01:44 < oldlaptop> The point of following my suggestion would be to remove any need for root privileges. 01:44 < thrig> aliases are probably run as root so doas probably isn't doing much 01:45 -!- tozhu [~tozhu@43.250.63.38] has joined #openbsd 01:47 < begriffs> Why does the script want root at all? Is it to be able to then switch into the role of a different dedicated user? 01:48 -!- acidfoo [~acidfoo@184.162.64.137] has joined #openbsd 01:49 < pardis> chroot requires root 01:51 < oldlaptop> If normal users could use chroot, they would be able to do things like substitute their own versions of interesting files like /etc/passwd 01:52 < oldlaptop> (presumably there are myriad other ways to do things like confuse setuid binaries) 01:54 -!- Alhazred [~Alhazred@user/Alhazred] has quit [Ping timeout: 246 seconds] 01:57 -!- magyar [~magyar@user/magyar] has quit [Read error: Connection reset by peer] 01:57 -!- Eyesack [~Thunderbi@user/Eyesack] has quit [Ping timeout: 246 seconds] 01:58 -!- magyar [~magyar@user/magyar] has joined #openbsd 02:01 -!- Alhazred [~Alhazred@user/Alhazred] has joined #openbsd 02:04 -!- Eyesack [~Thunderbi@user/Eyesack] has joined #openbsd 02:09 -!- sonne [~vmlinuz@user/sonne] has quit [Ping timeout: 240 seconds] 02:13 -!- tozhu [~tozhu@43.250.63.38] has quit [Quit: tozhu] 02:30 -!- SOLARIS_s [~SOLARIS_s@99.235.11.104] has joined #openbsd 02:36 -!- tozhu [~tozhu@43.250.63.38] has joined #openbsd 02:41 -!- acidfoo [~acidfoo@184.162.64.137] has quit [Ping timeout: 248 seconds] 02:43 -!- chrisz [m51q1s1tum@195.52.174.168] has quit [Ping timeout: 246 seconds] 02:45 -!- chrisz [j1aj73ld18@195.52.169.39] has joined #openbsd 02:47 -!- Eyesack [~Thunderbi@user/Eyesack] has quit [Quit: Eyesack] 02:47 -!- tozhu [~tozhu@43.250.63.38] has quit [Quit: tozhu] 02:52 -!- tozhu [~tozhu@43.250.63.38] has joined #openbsd 02:53 -!- tozhu [~tozhu@43.250.63.38] has quit [Client Quit] 02:54 -!- drKlaw [~drKlaw@107-221-142-66.lightspeed.hstntx.sbcglobal.net] has joined #openbsd 02:56 -!- drKlaw [~drKlaw@107-221-142-66.lightspeed.hstntx.sbcglobal.net] has left #openbsd [] 02:56 -!- SexWarrior [~DankFrank@2a01:4b00:940e:f600:1c05:4c99:6e1c:b7f1] has quit [Quit: Leaving] 02:57 -!- seninha [~seninha@user/seninha] has quit [Quit: Leaving] 03:21 -!- kaydenlsr [~kaydenlsr@user/kaydenlsr] has joined #openbsd 03:25 < hirigaray> avemestr: thank you 03:26 -!- jambove [~jambove@51B6E227.dsl.pool.telekom.hu] has quit [Ping timeout: 245 seconds] 03:26 -!- jambove_ [~jambove@51B6E2EA.dsl.pool.telekom.hu] has joined #openbsd 03:31 -!- accelerat0r [~user@user/accelerat0r] has quit [Read error: Connection reset by peer] 03:32 -!- tozhu [~tozhu@43.250.63.38] has joined #openbsd 03:33 -!- accelerat0r [~user@user/accelerat0r] has joined #openbsd 03:37 -!- fflam [~mdt@pool-100-7-27-90.rcmdva.fios.verizon.net] has quit [Quit: WeeChat 4.0.3] 03:39 -!- fflam [~mdt@pool-100-7-27-90.rcmdva.fios.verizon.net] has joined #openbsd 03:44 < begriffs> I cloned the code locally and added unveil, but what is all the other getuid setuid stuff in this code block for? https://github.com/madroach/minimalist/blob/master/minimalist.pl#L207-L238 03:45 < begriffs> If I won't be running as root, do I need any of that at all? Assuming it's a fancy way of doing unveil($conf{directory}) and then change to non-root. 03:49 -!- tozhu [~tozhu@43.250.63.38] has quit [Quit: tozhu] 03:52 -!- Potpourri [~Potpourri@146.70.199.168] has quit [Ping timeout: 246 seconds] 03:53 -!- Potpourri [~Potpourri@146.70.188.232] has joined #openbsd 03:53 -!- xet7 [~xet7@user/xet7] has quit [Ping timeout: 245 seconds] 03:55 -!- Valeria22 [~Valeria22@user/Valeria22] has quit [Quit: Konversation terminated!] 04:00 -!- tozhu [~tozhu@43.250.63.38] has joined #openbsd 04:00 -!- tozhu [~tozhu@43.250.63.38] has quit [Client Quit] 04:13 -!- shiranaihito_ [~shiranaih@2001-b011-4012-dc93-a03f-e806-1ffa-791c.dynamic-ip6.hinet.net] has joined #openbsd 04:13 < pardis> $> == 0 means effective uid is root 04:14 < pardis> if you aren't running as root, that if block will never be entered 04:14 < pardis> perl special variables are documented in perlvar(1) 04:33 -!- jambove [~jambove@51B6E4BB.dsl.pool.telekom.hu] has joined #openbsd 04:36 -!- jambove_ [~jambove@51B6E2EA.dsl.pool.telekom.hu] has quit [Ping timeout: 244 seconds] 04:41 -!- kaydenlsr [~kaydenlsr@user/kaydenlsr] has quit [Ping timeout: 260 seconds] 04:42 -!- bradd [~quassel@user/bradd] has quit [Remote host closed the connection] 04:46 -!- jambove_ [~jambove@51B6E195.dsl.pool.telekom.hu] has joined #openbsd 04:48 -!- jambove [~jambove@51B6E4BB.dsl.pool.telekom.hu] has quit [Ping timeout: 260 seconds] 04:52 -!- zimmer [~zimmer@92.40.217.189] has quit [Ping timeout: 248 seconds] 05:00 -!- taco_2023 [~quassel@104.220.205.158] has joined #openbsd 05:06 -!- zcheng3 [~zcheng3@d108-173-21-8.abhsia.telus.net] has quit [Ping timeout: 260 seconds] 05:11 -!- srfsh_ [~srfsh@user/srfsh] has quit [Ping timeout: 246 seconds] 05:18 -!- taco_2023 [~quassel@104.220.205.158] has quit [Remote host closed the connection] 05:19 -!- srfsh [~srfsh@user/srfsh] has joined #openbsd 05:21 -!- ikarso [uid475540@id-475540.tinside.irccloud.com] has joined #openbsd 05:28 -!- fifi [~fifi@188.47.117.4.ipv4.supernova.orange.pl] has joined #openbsd 05:29 -!- sheikhshard [~Administr@101.68.198.157] has joined #openbsd 05:35 -!- fifi [~fifi@188.47.117.4.ipv4.supernova.orange.pl] has quit [Remote host closed the connection] 05:39 -!- van [~van@mx.nocebo.space] has quit [Quit: WeeChat 3.8] 05:40 -!- DanielNechtan [~int16h@user/bombuzal] has quit [Quit: b0rk] 05:40 -!- k0ga [~k0ga@simple-cc.org] has quit [Quit: Lost terminal] 05:48 < chrisz> So minimalist is still in use? 05:49 < chrisz> You can run minimalist without root. But if you do, it will chroot and drop privileges. 05:50 -!- Xenguy [~Xenguy@user/xenguy] has quit [Remote host closed the connection] 05:51 -!- Xenguy [~Xenguy@user/xenguy] has joined #openbsd 05:55 -!- fallback [fallback@2605:6400:20:b4:2df7:c15d:5c14:7a83] has quit [Ping timeout: 244 seconds] 05:59 -!- njn [~njn@2601:143:c600:4c50:f4ba:eafa:285f:8633] has joined #openbsd 05:59 -!- njn [~njn@2601:143:c600:4c50:f4ba:eafa:285f:8633] has quit [Changing host] 05:59 -!- njn [~njn@user/njn] has joined #openbsd 06:02 < njn> I wonder why there's been no summary of changes for current, since the release of 7.3 06:03 < njn> I don't know if I'm up to reading 3000 messages in the archives lol 06:03 -!- fallback [fallback@2605:6400:20:b4:d215:d916:1183:4c75] has joined #openbsd 06:10 -!- billchenchina [~billchenc@117.136.116.128] has joined #openbsd 06:15 -!- artmdl [~art5456@d172-218-174-94.bchsia.telus.net] has joined #openbsd 06:16 -!- ThinkT510 [~auronanda@sortix/contributor/ThinkT510] has quit [Quit: WeeChat 4.0.3] 06:21 -!- ThinkT510 [~auronanda@sortix/contributor/ThinkT510] has joined #openbsd 06:22 -!- adip [~adip@c136-225.icpnet.pl] has joined #openbsd 06:32 -!- Jaywalker [~Jaywalker@209.33.126.194] has quit [Ping timeout: 245 seconds] 06:32 -!- Jaywalker [~Jaywalker@209.33.126.194] has joined #openbsd 06:41 -!- tercaL [~tercaL@user/tercal] has joined #openbsd 06:52 -!- Guru_DE [~guru@200-231-142-46.pool.kielnet.net] has quit [Read error: Connection reset by peer] 06:55 -!- vysn [~vysn@user/vysn] has joined #openbsd 06:58 -!- Guru_DE [~guru@2001:9e8:e80f:1800:c68a:41dc:3d03:1646] has joined #openbsd 07:11 -!- xls [~xls@user/xicles] has quit [Ping timeout: 248 seconds] 07:12 < avemestr> I think the problem might be, if it is announced on e.g. https://www.openbsd.org/plus.html some people will "want" some specific change and therefore switch to -current, experience bugs, and then complain. 07:14 < avemestr> So a change might be "Now support for fancy new gfx", people switch to -current because of that, but accidentially somebody just broke some other part of the system, which can be expected to happen on -current. 07:15 -!- Leopold [~quassel@23.137.249.65] has joined #openbsd 07:15 -!- feriman [~feriman@user/feriman] has joined #openbsd 07:15 -!- betabube [~betabube@2001:871:250:5a19:d255:e836:cafd:ba49] has joined #openbsd 07:18 -!- Leopold_ [~quassel@gateway/tor-sasl/leopold] has quit [Ping timeout: 246 seconds] 07:18 < betabube> i hope openbsd works with ventoy 07:19 -!- ivdsangen [~ivo@86-95-161-96.fixed.kpn.net] has joined #openbsd 07:23 -!- xls [~xls@user/xicles] has joined #openbsd 07:25 -!- bilegeek [~bilegeek@2600:1008:b06f:9cf9:f684:76cd:d659:2987] has joined #openbsd 07:28 -!- feriman [~feriman@user/feriman] has quit [Read error: Connection reset by peer] 07:30 -!- feriman [~feriman@user/feriman] has joined #openbsd 07:33 -!- lavaball [~Melissa@31.204.155.215] has joined #openbsd 07:37 -!- billchenchina- [~billchenc@210.28.139.54] has joined #openbsd 07:40 -!- billchenchina [~billchenc@117.136.116.128] has quit [Ping timeout: 246 seconds] 07:43 -!- fifi [~fifi@188.47.117.4.ipv4.supernova.orange.pl] has joined #openbsd 07:44 -!- betabube [~betabube@2001:871:250:5a19:d255:e836:cafd:ba49] has quit [Quit: WeeChat 4.0.3] 07:44 -!- betabube [~betabube@2001:871:250:5a19:d255:e836:cafd:ba49] has joined #openbsd 07:47 -!- znedw235 [~znedw@home.znedw.com] has quit [Quit: The Lounge - https://thelounge.chat] 07:50 -!- CrashOverride [~strcat@p54854431.dip0.t-ipconnect.de] has joined #openbsd 07:51 -!- znedw235 [~znedw@home.znedw.com] has joined #openbsd 07:57 -!- lavaball [~Melissa@31.204.155.215] has quit [Remote host closed the connection] 07:59 -!- betabube [~betabube@2001:871:250:5a19:d255:e836:cafd:ba49] has quit [Quit: WeeChat 4.0.3] 08:05 -!- fifi [~fifi@188.47.117.4.ipv4.supernova.orange.pl] has quit [Remote host closed the connection] 08:06 -!- fifi [~fifi@188.47.117.4.ipv4.supernova.orange.pl] has joined #openbsd 08:08 -!- memset [~memset@gateway/tor-sasl/memset] has joined #openbsd 08:10 -!- ikarso [uid475540@id-475540.tinside.irccloud.com] has quit [Quit: Connection closed for inactivity] 08:14 -!- fifi [~fifi@188.47.117.4.ipv4.supernova.orange.pl] has quit [Read error: Connection reset by peer] 08:14 -!- fifi_ [~fifi@188.47.117.4.ipv4.supernova.orange.pl] has joined #openbsd 08:15 -!- fifi_ [~fifi@188.47.117.4.ipv4.supernova.orange.pl] has quit [Remote host closed the connection] 08:24 -!- Xenguy [~Xenguy@user/xenguy] has quit [Remote host closed the connection] 08:26 -!- Xenguy [~Xenguy@user/xenguy] has joined #openbsd 08:26 -!- Xenguy [~Xenguy@user/xenguy] has quit [Remote host closed the connection] 08:27 -!- Xenguy [~Xenguy@user/xenguy] has joined #openbsd 08:32 -!- qontinuum [~qontinuum@user/qontinuum] has quit [Quit: connection reset by purr] 08:32 -!- qontinuum [~qontinuum@user/qontinuum] has joined #openbsd 08:35 -!- solo [~solo@c-71-233-186-50.hsd1.ct.comcast.net] has quit [Read error: Connection reset by peer] 08:42 -!- fifi [~fifi@188.47.117.4.ipv4.supernova.orange.pl] has joined #openbsd 08:48 -!- solo [~solo@c-71-233-185-227.hsd1.ct.comcast.net] has joined #openbsd 08:48 -!- bilegeek [~bilegeek@2600:1008:b06f:9cf9:f684:76cd:d659:2987] has quit [Quit: Leaving] 08:49 -!- billchenchina- [~billchenc@210.28.139.54] has quit [Remote host closed the connection] 08:50 -!- slim [~slim@user/slim] has quit [Quit: bWFkZSB5b3UgbG9vaw==] 08:52 -!- slim [~slim@user/slim] has joined #openbsd 08:53 -!- schalken [~schalken@117-118-178-69.gci.net] has quit [Ping timeout: 256 seconds] 08:55 -!- njn [~njn@user/njn] has quit [Ping timeout: 248 seconds] 08:57 -!- qontinuum [~qontinuum@user/qontinuum] has quit [Remote host closed the connection] 08:59 -!- rurtty [~wwwww@46.235.97.222] has joined #openbsd 08:59 -!- qontinuum [~qontinuum@user/qontinuum] has joined #openbsd 09:04 -!- a1fa [~a1fa@user/a1fa] has quit [Ping timeout: 256 seconds] 09:04 -!- AlaskanEmily [~AlaskanEm@user/alaskanemily] has quit [Remote host closed the connection] 09:07 -!- bradd [~quassel@user/bradd] has joined #openbsd 09:10 -!- djhankb [~djhankb@208.113.164.68] has quit [Remote host closed the connection] 09:11 -!- djhankb [~djhankb@208.113.164.68] has joined #openbsd 09:19 -!- Xenguy [~Xenguy@user/xenguy] has quit [Ping timeout: 246 seconds] 09:21 -!- norayr [~norayr@37.252.78.253] has joined #openbsd 09:33 -!- meros67817602046 [~meros@213-64-148-45-no600.tbcn.telia.com] has joined #openbsd 09:44 -!- buq [~buq@user/buq] has joined #openbsd 09:45 -!- buq [~buq@user/buq] has quit [Client Quit] 09:45 -!- zimmer [~zimmer@92.40.217.186.threembb.co.uk] has joined #openbsd 09:45 -!- dqk [~dqk@lfbn-gre-1-178-214.w90-112.abo.wanadoo.fr] has quit [Ping timeout: 244 seconds] 09:53 -!- NiceBird [~NiceBird@176.88.89.93] has quit [Quit: bbl] 09:54 -!- NiceBird [~NiceBird@176.88.89.93] has joined #openbsd 09:55 -!- NiceBirb [~NiceBird@176.88.89.93] has joined #openbsd 09:59 -!- NiceBird [~NiceBird@176.88.89.93] has quit [Ping timeout: 246 seconds] 10:00 -!- meros67817602046 [~meros@213-64-148-45-no600.tbcn.telia.com] has quit [Quit: The Lounge - https://thelounge.chat] 10:00 -!- meros67817602046 [~meros@213-64-148-45-no600.tbcn.telia.com] has joined #openbsd 10:02 -!- w0x0st [~fooman@87.76.253.250] has joined #openbsd 10:02 -!- actioninja6302 [~actioninj@user/actioninja] has quit [Quit: see ya mane] 10:03 -!- actioninja [~actioninj@user/actioninja] has joined #openbsd 10:07 -!- schalken [~schalken@117-118-178-69.gci.net] has joined #openbsd 10:10 -!- yella [regg@2607:fb91:1de1:7516:1ff6:63ff:bfef:bbcc] has joined #openbsd 10:10 -!- yella [regg@2607:fb91:1de1:7516:1ff6:63ff:bfef:bbcc] has quit [Changing host] 10:10 -!- yella [regg@user/yella] has joined #openbsd 10:10 -!- yella [regg@user/yella] has quit [Max SendQ exceeded] 10:12 -!- terminalpusher [~terminalp@2a01:586:95c4:1:dae5:85ff:c612:e8bf] has joined #openbsd 10:14 -!- yella [regg@user/yella] has joined #openbsd 10:14 -!- lavaball [~Melissa@31.204.155.215] has joined #openbsd 10:15 -!- yella [regg@user/yella] has quit [Max SendQ exceeded] 10:15 -!- yu [~yu@user/yu] has quit [Read error: Connection reset by peer] 10:15 -!- jf [~jf@user/jonfle] has quit [Read error: Connection reset by peer] 10:16 -!- yella [regg@2607:fb91:1de1:7516:1ff6:63ff:bfef:bbcc] has joined #openbsd 10:16 -!- yella [regg@2607:fb91:1de1:7516:1ff6:63ff:bfef:bbcc] has quit [Changing host] 10:16 -!- yella [regg@user/yella] has joined #openbsd 10:17 -!- yella [regg@user/yella] has quit [Max SendQ exceeded] 10:21 -!- yella [regg@user/yella] has joined #openbsd 10:21 -!- tozhu [~tozhu@43.250.63.38] has joined #openbsd 10:22 -!- yella [regg@user/yella] has quit [Max SendQ exceeded] 10:23 -!- schalken [~schalken@117-118-178-69.gci.net] has quit [Ping timeout: 244 seconds] 10:27 -!- yella [regg@2607:fb91:1de1:7516:1ff6:63ff:bfef:bbcc] has joined #openbsd 10:27 -!- yella [regg@2607:fb91:1de1:7516:1ff6:63ff:bfef:bbcc] has quit [Changing host] 10:27 -!- yella [regg@user/yella] has joined #openbsd 10:28 -!- yella [regg@user/yella] has quit [Max SendQ exceeded] 10:32 -!- yella [regg@2607:fb91:1de1:7516:1ff6:63ff:bfef:bbcc] has joined #openbsd 10:32 -!- yella [regg@2607:fb91:1de1:7516:1ff6:63ff:bfef:bbcc] has quit [Changing host] 10:32 -!- yella [regg@user/yella] has joined #openbsd 10:40 -!- tercaL [~tercaL@user/tercal] has quit [Quit: enter the Tekken!] 10:43 -!- rurtty [~wwwww@46.235.97.222] has quit [Quit: Leaving] 10:52 -!- a1fa [~a1fa@user/a1fa] has joined #openbsd 10:58 -!- schalken [~schalken@117-118-178-69.gci.net] has joined #openbsd 11:00 -!- terminalpusher [~terminalp@2a01:586:95c4:1:dae5:85ff:c612:e8bf] has quit [Ping timeout: 246 seconds] 11:02 -!- schalken [~schalken@117-118-178-69.gci.net] has quit [Ping timeout: 246 seconds] 11:11 -!- sliced [~sliced@ip-185.238.207.18.laito.net.pl] has joined #openbsd 11:15 -!- rurtty [~wwwww@46.235.97.222] has joined #openbsd 11:18 -!- fifi [~fifi@188.47.117.4.ipv4.supernova.orange.pl] has quit [Ping timeout: 244 seconds] 11:24 -!- Xenguy [~Xenguy@user/xenguy] has joined #openbsd 11:33 -!- fifi [~fifi@188.47.117.4.ipv4.supernova.orange.pl] has joined #openbsd 11:37 -!- CosmicDJ [~cosmicdj@p200300e24f279701a55ef67790ef8d53.dip0.t-ipconnect.de] has quit [Ping timeout: 245 seconds] 11:38 -!- CosmicDJ [~cosmicdj@p200300e24f279701857ae6e5e0a16afb.dip0.t-ipconnect.de] has joined #openbsd 11:41 -!- w0x0st is now known as fide77_79 11:41 -!- fifi [~fifi@188.47.117.4.ipv4.supernova.orange.pl] has quit [Ping timeout: 260 seconds] 11:46 -!- fide77_79 is now known as sevenprimesnd 11:47 -!- Xenguy [~Xenguy@user/xenguy] has quit [Ping timeout: 246 seconds] 11:49 -!- schalken [~schalken@117-118-178-69.gci.net] has joined #openbsd 11:50 -!- zcheng3 [~zcheng3@d108-173-21-8.abhsia.telus.net] has joined #openbsd 11:50 -!- Xenguy [~Xenguy@user/xenguy] has joined #openbsd 11:51 -!- fifi [~fifi@188.47.117.4.ipv4.supernova.orange.pl] has joined #openbsd 11:58 -!- fifi [~fifi@188.47.117.4.ipv4.supernova.orange.pl] has quit [Ping timeout: 246 seconds] 11:59 -!- linetrace [~linetrace@c-76-19-81-84.hsd1.vt.comcast.net] has quit [Ping timeout: 256 seconds] 12:00 -!- fifi [~fifi@188.47.117.4.ipv4.supernova.orange.pl] has joined #openbsd 12:03 -!- Xenguy [~Xenguy@user/xenguy] has quit [Ping timeout: 245 seconds] 12:08 -!- lavaball [~Melissa@31.204.155.215] has quit [Remote host closed the connection] 12:09 -!- fifi [~fifi@188.47.117.4.ipv4.supernova.orange.pl] has quit [Ping timeout: 256 seconds] 12:10 -!- fifi [~fifi@188.47.117.4] has joined #openbsd 12:13 -!- feriman [~feriman@user/feriman] has quit [Ping timeout: 246 seconds] 12:19 -!- fifi [~fifi@188.47.117.4] has quit [Ping timeout: 248 seconds] 12:19 -!- fifi [~fifi@188.47.117.4.ipv4.supernova.orange.pl] has joined #openbsd 12:23 -!- rurtty [~wwwww@46.235.97.222] has quit [Quit: Leaving] 12:47 -!- dqk [~dqk@lfbn-gre-1-178-214.w90-112.abo.wanadoo.fr] has joined #openbsd 12:48 -!- Xenguy [~Xenguy@user/xenguy] has joined #openbsd 12:48 -!- fifi [~fifi@188.47.117.4.ipv4.supernova.orange.pl] has quit [Read error: Connection reset by peer] 12:49 -!- fifi [~fifi@188.47.117.4.ipv4.supernova.orange.pl] has joined #openbsd 12:50 -!- rafael [~rafael@user/rafael] has quit [Quit: Ping timeout (120 seconds)] 12:50 -!- sinvet__ [~sinvet@user/sinvet] has joined #openbsd 12:50 -!- sinvet [~sinvet@user/sinvet] has quit [Remote host closed the connection] 12:51 -!- rafael [~rafael@192.154.3.130] has joined #openbsd 12:51 -!- rafael [~rafael@192.154.3.130] has quit [Changing host] 12:51 -!- rafael [~rafael@user/rafael] has joined #openbsd 12:52 -!- todd [~todd@gateway/tor-sasl/toddf] has quit [Ping timeout: 246 seconds] 12:52 -!- sevenprimesnd [~fooman@87.76.253.250] has quit [Ping timeout: 256 seconds] 12:58 -!- seninha [~seninha@user/seninha] has joined #openbsd 12:58 -!- todd [~todd@gateway/tor-sasl/toddf] has joined #openbsd 12:58 -!- nedko [~nedko@gateway/tor-sasl/nedko] has quit [Quit: kernel panic] 12:59 -!- seninha [~seninha@user/seninha] has quit [Remote host closed the connection] 12:59 -!- seninha [~seninha@user/seninha] has joined #openbsd 13:01 -!- linetrace [~linetrace@c-76-19-81-84.hsd1.vt.comcast.net] has joined #openbsd 13:05 -!- fifi [~fifi@188.47.117.4.ipv4.supernova.orange.pl] has quit [Ping timeout: 246 seconds] 13:06 -!- fide77_79_el_7th [~fooman@87.76.253.250] has joined #openbsd 13:07 -!- fifi [~fifi@188.47.117.4.ipv4.supernova.orange.pl] has joined #openbsd 13:08 -!- fide77_79_el_7th is now known as abbat 13:08 -!- abbat [~fooman@87.76.253.250] has quit [Remote host closed the connection] 13:10 -!- abbat [~tabba@87.76.253.250] has joined #openbsd 13:11 -!- abbat is now known as abba 13:11 -!- abba [~tabba@87.76.253.250] has quit [Remote host closed the connection] 13:11 -!- Hackerpcs [~user@user/hackerpcs] has quit [Quit: Hackerpcs] 13:12 -!- abba [~abba2@87.76.253.250] has joined #openbsd 13:12 -!- ikarso [uid475540@id-475540.tinside.irccloud.com] has joined #openbsd 13:13 -!- Hackerpcs [~user@user/hackerpcs] has joined #openbsd 13:14 -!- Hackerpcs [~user@user/hackerpcs] has quit [Max SendQ exceeded] 13:16 -!- Valeria22 [~Valeria22@user/Valeria22] has joined #openbsd 13:20 -!- Hackerpcs [~user@user/hackerpcs] has joined #openbsd 13:24 -!- anandprabhu [~anandprab@94.201.237.158] has joined #openbsd 13:32 -!- miojo [~miojo@45.189.240.119] has joined #openbsd 13:37 -!- jf [~jf@user/jonfle] has joined #openbsd 13:37 -!- yu [~yu@user/yu] has joined #openbsd 13:45 -!- KaitoDaumoto [~asdf@user/kaitodaumoto] has quit [Remote host closed the connection] 13:52 -!- xet7 [~xet7@user/xet7] has joined #openbsd 13:52 -!- tetra_ [~irc@shiso.obsd.me] has quit [Remote host closed the connection] 13:56 -!- an3223 [~user@user/an3223] has quit [Ping timeout: 246 seconds] 13:56 -!- an3223 [~user@user/an3223] has joined #openbsd 13:58 -!- fifi [~fifi@188.47.117.4.ipv4.supernova.orange.pl] has quit [Ping timeout: 256 seconds] 14:01 -!- fifi [~fifi@188.47.117.4.ipv4.supernova.orange.pl] has joined #openbsd 14:02 -!- fifi [~fifi@188.47.117.4.ipv4.supernova.orange.pl] has quit [Remote host closed the connection] 14:02 -!- fifi [~fifi@188.47.117.4.ipv4.supernova.orange.pl] has joined #openbsd 14:06 -!- sonne [~vmlinuz@user/sonne] has joined #openbsd 14:20 -!- abba [~abba2@87.76.253.250] has quit [Ping timeout: 250 seconds] 14:21 < begriffs> chrisz: have you used minimalist? I just wanted to try something simpler than mailman. 14:23 -!- jacobk [~quassel@47-186-104-130.dlls.tx.frontiernet.net] has quit [Ping timeout: 256 seconds] 14:30 -!- Paul [~Paul@user/paul] has joined #openbsd 14:31 -!- heapify [~heapify@93-44-91-50.ip96.fastwebnet.it] has joined #openbsd 14:32 -!- nature [~user@2a03:6000:9e13:100::2] has joined #openbsd 14:32 -!- lavaball [~Melissa@31.204.155.215] has joined #openbsd 14:34 -!- _yella_ [regg@2607:fb90:c9e2:e10a:694b:b7fe:fc16:9a7] has joined #openbsd 14:34 -!- _yella_ [regg@2607:fb90:c9e2:e10a:694b:b7fe:fc16:9a7] has quit [Changing host] 14:34 -!- _yella_ [regg@user/yella] has joined #openbsd 14:34 -!- yella [regg@user/yella] has quit [Ping timeout: 248 seconds] 14:35 -!- ILoveCandy [~mckl@user/mckl] has quit [Ping timeout: 246 seconds] 14:36 -!- ILoveCandy [~mckl@user/mckl] has joined #openbsd 14:50 -!- heapify [~heapify@93-44-91-50.ip96.fastwebnet.it] has quit [Quit: heapify] 15:00 -!- Alhazred [~Alhazred@user/Alhazred] has quit [Quit: leaving] 15:10 -!- shiranaihito__ [~shiranaih@123-192-192-149.dynamic.kbronet.com.tw] has joined #openbsd 15:10 -!- |darc| [darc@23.112.65.16] has quit [Remote host closed the connection] 15:11 -!- |darc| [darc@23-112-65-16.lightspeed.nworla.sbcglobal.net] has joined #openbsd 15:13 -!- shiranaihito_ [~shiranaih@2001-b011-4012-dc93-a03f-e806-1ffa-791c.dynamic-ip6.hinet.net] has quit [Ping timeout: 246 seconds] 15:13 -!- rurtty [~wwwww@46.235.97.222] has joined #openbsd 15:21 -!- fifi [~fifi@188.47.117.4.ipv4.supernova.orange.pl] has quit [Ping timeout: 240 seconds] 15:26 -!- Guru_DE [~guru@2001:9e8:e80f:1800:c68a:41dc:3d03:1646] has quit [Remote host closed the connection] 15:26 -!- morte_ [~user@user/monkey/x-0691028] has joined #openbsd 15:31 -!- Guru_DE [~guru@2001:9e8:e80f:1800:c68a:41dc:3d03:1646] has joined #openbsd 15:31 -!- terminalpusher [~terminalp@2a01:586:95c4:1:9db2:eef7:2073:e9fb] has joined #openbsd 15:50 -!- devune [~devune@nastycode.com] has quit [Ping timeout: 250 seconds] 15:51 -!- Kilroy [Kilroy@user/Kilroy] has quit [Ping timeout: 246 seconds] 15:51 -!- ludovicus [jimbo@user/ludovicus] has quit [Ping timeout: 246 seconds] 15:53 -!- devune [devune@2605:6400:864b:3026:44a7:e9fc:75c3:54d3] has joined #openbsd 15:53 -!- Lucas6023 [~Lucas6023@gateway/tor-sasl/lucas6023] has quit [Ping timeout: 246 seconds] 15:54 -!- user71 [~user71@2001:1530:1012:a95f:1e6f:65ff:fe88:557f] has joined #openbsd 15:55 -!- PyR3X [~PyR3X@user/pyr3x] has quit [Quit: quit] 15:55 -!- Lucas6023 [~Lucas6023@gateway/tor-sasl/lucas6023] has joined #openbsd 15:58 -!- devune [devune@2605:6400:864b:3026:44a7:e9fc:75c3:54d3] has quit [Remote host closed the connection] 15:58 -!- lester29 [~lester29@lester29.nastycode.com] has quit [Remote host closed the connection] 15:58 -!- irc-open-up [~irc-open-@bounce.nastycode.com] has quit [Remote host closed the connection] 15:58 -!- PyR3X [~PyR3X@user/pyr3x] has joined #openbsd 15:58 -!- PyR3X [~PyR3X@user/pyr3x] has quit [Client Quit] 15:59 -!- monkeybusiness [~monkeybus@user/monkeybusiness] has quit [Quit: Bye] 16:00 -!- PyR3X [~PyR3X@user/pyr3x] has joined #openbsd 16:02 -!- monkeybusiness [~monkeybus@user/monkeybusiness] has joined #openbsd 16:08 -!- Xenguy [~Xenguy@user/xenguy] has quit [Quit: Leaving] 16:11 -!- jpb [~jpb@jimby.jimby.name] has quit [Quit: bye...] 16:13 -!- mothman [~mothman@user/mothman] has quit [Read error: Connection reset by peer] 16:15 -!- Xenguy [~Xenguy@user/xenguy] has joined #openbsd 16:15 -!- jpb [~jpb@104.225.1.79] has joined #openbsd 16:16 -!- morte_ [~user@user/monkey/x-0691028] has quit [Remote host closed the connection] 16:18 -!- miojo [~miojo@45.189.240.119] has quit [Remote host closed the connection] 16:18 -!- njn [~njn@2601:143:c600:4c50:f4ba:eafa:285f:8633] has joined #openbsd 16:18 -!- njn [~njn@2601:143:c600:4c50:f4ba:eafa:285f:8633] has quit [Changing host] 16:18 -!- njn [~njn@user/njn] has joined #openbsd 16:20 -!- jpb_ [~jpb@jimby.jimby.name] has joined #openbsd 16:20 -!- jpb [~jpb@104.225.1.79] has quit [Read error: Connection reset by peer] 16:24 -!- ikarso [uid475540@id-475540.tinside.irccloud.com] has quit [Quit: Connection closed for inactivity] 16:24 -!- njn [~njn@user/njn] has quit [Ping timeout: 248 seconds] 16:25 -!- an3223 [~user@user/an3223] has quit [Ping timeout: 246 seconds] 16:25 -!- concrete_houses [~g@c-73-47-11-183.hsd1.ma.comcast.net] has quit [Ping timeout: 252 seconds] 16:27 -!- an3223 [~user@user/an3223] has joined #openbsd 16:27 -!- concrete_houses [~g@c-73-47-11-183.hsd1.ma.comcast.net] has joined #openbsd 16:32 -!- fflam [~mdt@pool-100-7-27-90.rcmdva.fios.verizon.net] has quit [Quit: WeeChat 4.0.3] 16:35 -!- fflam [~mdt@pool-100-7-27-90.rcmdva.fios.verizon.net] has joined #openbsd 16:39 -!- waves [~waves@user/waves] has quit [Ping timeout: 256 seconds] 16:39 -!- Alhazred [~Alhazred@user/Alhazred] has joined #openbsd 16:41 -!- elastic_dog [~elastic_d@2a01:118f:620:5c00:3e1e:4014:786a:95cb] has quit [Ping timeout: 240 seconds] 16:53 -!- elastic_dog [~elastic_d@2a01:118f:620:5c00:3e1e:4014:786a:95cb] has joined #openbsd 16:55 -!- jaj [~jaj@menial.joachim.cc] has left #openbsd [] 17:01 -!- Kilroy [Kilroy@user/Kilroy] has joined #openbsd 17:02 -!- ficonni [~ficonni@178-223-147-2.dynamic.isp.telekom.rs] has joined #openbsd 17:03 -!- ludovicus [jimbo@user/ludovicus] has joined #openbsd 17:04 -!- rurtty [~wwwww@46.235.97.222] has quit [Quit: Leaving] 17:06 -!- acidfoo [~acidfoo@modemcable137.64-162-184.mc.videotron.ca] has joined #openbsd 17:10 -!- acidfoo [~acidfoo@modemcable137.64-162-184.mc.videotron.ca] has quit [Ping timeout: 240 seconds] 17:13 -!- taco_2023 [~quassel@104.220.205.158] has joined #openbsd 17:14 -!- waves [~waves@user/waves] has joined #openbsd 17:14 -!- jaj [~jaj@menial.joachim.cc] has joined #openbsd 17:15 -!- miojo [~miojo@45.189.240.119] has joined #openbsd 17:17 -!- taco_2023 [~quassel@104.220.205.158] has quit [Client Quit] 17:17 -!- fifi [~fifi@188.47.117.4.ipv4.supernova.orange.pl] has joined #openbsd 17:18 -!- comradeCrow [~comradeCr@99-110-128-132.lightspeed.irvnca.sbcglobal.net] has quit [Quit: Goodbye...] 17:20 -!- fifi [~fifi@188.47.117.4.ipv4.supernova.orange.pl] has quit [Remote host closed the connection] 17:20 -!- fifi [~fifi@188.47.117.4.ipv4.supernova.orange.pl] has joined #openbsd 17:23 -!- comradeCrow [~comradeCr@99-110-128-132.lightspeed.irvnca.sbcglobal.net] has joined #openbsd 17:25 -!- loadmasther [~loadmasth@190.5.47.212] has joined #openbsd 17:29 -!- loadmasther [~loadmasth@190.5.47.212] has quit [Client Quit] 17:36 -!- ficonni [~ficonni@178-223-147-2.dynamic.isp.telekom.rs] has quit [Quit: leaving] 17:53 -!- winq [~winq@2a10:3781:43c:0:4846:583c:2a:1f75] has joined #openbsd 17:53 -!- winq [~winq@2a10:3781:43c:0:4846:583c:2a:1f75] has quit [Changing host] 17:53 -!- winq [~winq@user/winq] has joined #openbsd 17:57 -!- tercaL [~tercaL@user/tercal] has joined #openbsd 18:03 -!- fro [fro@humpty.dance] has quit [Remote host closed the connection] 18:09 -!- vysn [~vysn@user/vysn] has quit [Remote host closed the connection] 18:09 -!- eki [~eki@dsl-hkibng41-54f85a-212.dhcp.inet.fi] has quit [Quit: leaving] 18:13 -!- Posterdati [~Posterdat@user/Posterdati] has quit [Quit: KVIrc 5.0.0 Aria http://www.kvirc.net/] 18:13 -!- Posterdati [~Posterdat@user/Posterdati] has joined #openbsd 18:16 -!- acidfoo [~acidfoo@modemcable137.64-162-184.mc.videotron.ca] has joined #openbsd 18:16 -!- taco_2023 [~quassel@104.220.205.158] has joined #openbsd 18:18 -!- Xenguy [~Xenguy@user/xenguy] has quit [Ping timeout: 245 seconds] 18:18 -!- Xenguy [~Xenguy@user/xenguy] has joined #openbsd 18:21 -!- taco_2023 [~quassel@104.220.205.158] has quit [Client Quit] 18:21 -!- humblebumble_202 [~quassel@104.220.205.158] has joined #openbsd 18:23 -!- ficonni [~ficonni@178-223-147-2.dynamic.isp.telekom.rs] has joined #openbsd 18:25 -!- fro [fro@humpty.dance] has joined #openbsd 18:38 -!- ficonni_ [~ficonni@178-223-147-2.dynamic.isp.telekom.rs] has joined #openbsd 18:38 -!- eki [~eki@dsl-hkibng41-54f85a-212.dhcp.inet.fi] has joined #openbsd 18:42 -!- aaro [aaro@user/aaro] has quit [Quit: ""] 18:46 -!- tercaL [~tercaL@user/tercal] has quit [Quit: Going offline, see ya! (www.adiirc.com)] 18:49 -!- anandprabhu [~anandprab@94.201.237.158] has quit [Quit: Textual IRC Client: www.textualapp.com] 18:52 -!- Bit_MCP [~Bit_MCP@99.22.255.91] has joined #openbsd 18:59 -!- irc-open-up [bounce@bounce.nastycode.com] has joined #openbsd 19:00 -!- AlaskanEmily [~AlaskanEm@user/alaskanemily] has joined #openbsd 19:10 -!- lester29 [lester29@lester29.nastycode.com] has joined #openbsd 19:10 -!- ficonni_ [~ficonni@178-223-147-2.dynamic.isp.telekom.rs] has quit [Quit: leaving] 19:11 -!- ficonni_ [~ficonni@178-223-147-2.dynamic.isp.telekom.rs] has joined #openbsd 19:12 -!- Bit_MCP [~Bit_MCP@99.22.255.91] has quit [Quit: Leaving] 19:19 -!- toxic063 [~toxic0@82.66.203.96] has quit [Ping timeout: 246 seconds] 19:21 -!- morte_ [~user@user/monkey/x-0691028] has joined #openbsd 19:24 -!- morte_ [~user@user/monkey/x-0691028] has quit [Remote host closed the connection] 19:25 -!- morte_ [~user@user/monkey/x-0691028] has joined #openbsd 19:25 -!- aaro [aaro@user/aaro] has joined #openbsd 19:33 -!- toxic063 [~toxic0@82.66.203.96] has joined #openbsd 19:41 -!- nyah [~nyah@york-06-b2-v4wan-167893-cust646.vm25.cable.virginm.net] has joined #openbsd 19:43 -!- zimmer [~zimmer@92.40.217.186.threembb.co.uk] has quit [Remote host closed the connection] 19:43 -!- zimmer [~zimmer@92.40.217.192.threembb.co.uk] has joined #openbsd 19:45 -!- morte_ [~user@user/monkey/x-0691028] has quit [Remote host closed the connection] 19:46 -!- adi_onl [~adi_onl@109.166.131.239] has joined #openbsd 19:53 -!- kodcode [~kodcode@user/kodcode] has joined #openbsd 19:58 -!- ivdsangen [~ivo@86-95-161-96.fixed.kpn.net] has quit [Quit: https://github.com/ivdsangen] 19:59 -!- solaare [~solaarae@user/solaarae] has quit [Ping timeout: 246 seconds] 20:01 -!- solaare [~solaarae@user/solaarae] has joined #openbsd 20:08 -!- ficonni_ [~ficonni@178-223-147-2.dynamic.isp.telekom.rs] has quit [Quit: leaving] 20:10 -!- adi_onl [~adi_onl@109.166.131.239] has quit [Quit: Client closed] 20:19 -!- ikarso [uid475540@id-475540.tinside.irccloud.com] has joined #openbsd 20:20 -!- shiranaihito__ [~shiranaih@123-192-192-149.dynamic.kbronet.com.tw] has quit [Quit: My Mac has gone to sleep. ZZZzzz…] 20:25 -!- morte_ [~user@user/monkey/x-0691028] has joined #openbsd 20:26 -!- memset [~memset@gateway/tor-sasl/memset] has quit [Ping timeout: 246 seconds] 20:26 -!- memset [~memset@gateway/tor-sasl/memset] has joined #openbsd 20:27 -!- begriffs [~begriffs@user/begriffs] has quit [Quit: Leaving] 20:28 -!- zimmer [~zimmer@92.40.217.192.threembb.co.uk] has quit [Ping timeout: 246 seconds] 20:31 -!- adi_onl [~adi_onl@109.166.131.239] has joined #openbsd 20:32 < adi_onl> Hi, I'm created an crunchgen conf file: 20:32 < adi_onl> srcdirs /usr/src/bin 20:32 < adi_onl> progs echo ls 20:33 < adi_onl> I'm doing crunchgen -m Makefile crunch.conf 20:33 < adi_onl>  make objs 20:33 < adi_onl> But make is giving me: 20:33 < adi_onl> ld: error: undefined symbol: _crunched_echo_stub 20:34 < adi_onl> These are the exact steps from the crunchgen(8) man page. 20:34 < avemestr> My guess is you need some "ln" lines, as shown in that manpage. 20:35 < adi_onl> Those ln's are some sort of aliases. 20:35 < adi_onl> It doesn't work with the ln's either. 20:36 -!- user71 [~user71@2001:1530:1012:a95f:1e6f:65ff:fe88:557f] has quit [Quit: Leaving] 20:44 < adi_onl> It's related to this  -E Don't prepend stub names with an underscore. 20:45 < adi_onl> Ok, running with -E gives me other errors related to ls. 20:45 < adi_onl> But removing ls from the progs list, gives me working binary with echo in it. 20:47 -!- jak3b [~jak3b@user/jak3b] has joined #openbsd 20:48 < adi_onl> Had to add libs -lutil to get ls to work! 20:48 < adi_onl> Ok, fixed it! 20:48 < adi_onl> :D 20:48 < adi_onl> -E was the key! 20:50 -!- solo [~solo@c-71-233-185-227.hsd1.ct.comcast.net] has quit [Ping timeout: 244 seconds] 20:52 -!- grobi [~grobi@user/grobi] has quit [Remote host closed the connection] 20:52 -!- solo [~solo@c-71-233-184-37.hsd1.ct.comcast.net] has joined #openbsd 20:55 -!- sibiria [~sibiria@user/sibiria] has quit [Read error: Connection reset by peer] 20:55 -!- tetra_ [~irc@superpod.delphinusdns.org] has joined #openbsd 20:56 -!- grobi [~grobi@user/grobi] has joined #openbsd 20:59 -!- grobi [~grobi@user/grobi] has quit [Client Quit] 20:59 -!- grobi [~grobi@user/grobi] has joined #openbsd 20:59 -!- ArGGu^^ [~quassel@84-231-33-24.elisa-mobile.fi] has quit [Quit: https://quassel-irc.org - Chat comfortably. Anywhere.] 21:00 -!- grobi [~grobi@user/grobi] has quit [Client Quit] 21:00 -!- jak3b [~jak3b@user/jak3b] has quit [Quit: WeeChat 4.0.3] 21:00 -!- grobi [~grobi@user/grobi] has joined #openbsd 21:05 -!- shored [~shored@user/shored] has quit [Ping timeout: 248 seconds] 21:07 -!- shored [~shored@user/shored] has joined #openbsd 21:07 -!- miojo [~miojo@45.189.240.119] has quit [Remote host closed the connection] 21:08 -!- feriman [~feriman@user/feriman] has joined #openbsd 21:10 -!- robertdfrench [~robert@149.28.43.177] has joined #openbsd 21:19 -!- morte_ [~user@user/monkey/x-0691028] has quit [Remote host closed the connection] 21:29 -!- fifi [~fifi@188.47.117.4.ipv4.supernova.orange.pl] has quit [Remote host closed the connection] 21:30 -!- terminalpusher [~terminalp@2a01:586:95c4:1:9db2:eef7:2073:e9fb] has quit [Remote host closed the connection] 21:31 -!- sibiria [~sibiria@user/sibiria] has joined #openbsd 21:35 -!- fifi [~fifi@188.47.117.4.ipv4.supernova.orange.pl] has joined #openbsd 21:43 -!- morte_ [~user@user/monkey/x-0691028] has joined #openbsd 21:48 -!- cation [cation@user/cation] has quit [Ping timeout: 245 seconds] 21:48 -!- fifi [~fifi@188.47.117.4.ipv4.supernova.orange.pl] has quit [Remote host closed the connection] 21:50 -!- desnudopenguino [~Thunderbi@c-73-35-234-26.hsd1.wa.comcast.net] has quit [Ping timeout: 245 seconds] 21:50 -!- morte_ [~user@user/monkey/x-0691028] has quit [Remote host closed the connection] 21:53 -!- lavaball [~Melissa@31.204.155.215] has quit [Remote host closed the connection] 21:55 -!- morte_ [~user@user/monkey/x-0691028] has joined #openbsd 21:55 -!- morte_ [~user@user/monkey/x-0691028] has quit [Remote host closed the connection] 22:01 -!- desnudopenguino [~Thunderbi@c-73-35-234-26.hsd1.wa.comcast.net] has joined #openbsd 22:04 < cjones> good afternoon, I'm running into an issue when disabling the inteldrm driver and running syspatch. New kernels fail to install/relink because of the kernel re-ordering: 22:04 -!- f451 [~f451@89.145.80.101] has quit [Read error: Connection reset by peer] 22:04 < cjones> Relinking to create unique kernel... failed! 22:04 < cjones> !!! "/usr/libexec/reorder_kernel" must be run manually to install the new kernel 22:04 -!- feriman [~feriman@user/feriman] has quit [Ping timeout: 246 seconds] 22:05 < cjones> when I try to run "/usr/libexec/reorder_kernel" manually it just runs with no error but the kernel does not change 22:06 -!- djhankb [~djhankb@208.113.164.68] has quit [Remote host closed the connection] 22:07 -!- djhankb [~djhankb@208.113.164.68] has joined #openbsd 22:09 < thrig> it's a shell script so maybe try -x 22:21 < adi_onl> Any tips for an Nvidia graphics card? 22:21 < adi_onl> Not supported by nv(4)? 22:22 -!- jaj [~jaj@menial.joachim.cc] has left #openbsd [] 22:22 -!- jaj [~jaj@menial.joachim.cc] has joined #openbsd 22:24 < sibiria> cjones: have you changed configuration of the kernel perhaps? 22:24 < sibiria> with config(8) 22:25 < sibiria> disabling inteldrm sounds like that 22:25 < sibiria> openbsd, being a bit different", changes the kernel file itself when configuring instead of keeping config in a separate file 22:25 -!- jacobk [~quassel@47.186.98.31] has joined #openbsd 22:26 < sibiria> you will need to undo the config changes so that the kernel's checksum matches and so that it can be subjected to the patch 22:27 -!- grobi [~grobi@user/grobi] has quit [Remote host closed the connection] 22:42 < pardis> adi_onl: the only tip that comes to mind is "don't" 22:43 < adi_onl> Except that one! Haha! :D 22:43 < adi_onl> This is the laptop I have right now! :D 22:45 < oldlaptop> There really isn't anything else to say: only very old nvidia hardware has any form of support at all 22:45 < oldlaptop> if neither vesa or efifb is good enough, you need to find video hardware that is supported 22:46 -!- cation [cation@user/cation] has joined #openbsd 22:46 < oldlaptop> I'm told nvidia is slowly starting to open up their driver stack, which could *possibly*, theoretically, eventually lead to openbsd support some years from now 22:46 < oldlaptop> (supposing someone does the work) 22:47 < adi_onl> Which GPUs are well supported? 22:47 < oldlaptop> in the meantime, intel video hardware is pretty well-supported, as are most radeons (some of the new ones are relatively flaky) 22:48 < oldlaptop> a laptop with switchable graphics should work so long as there's some way to ensure the intel (it generally seems to be intel?) integrated GPU is actually connected to the display. 22:48 -!- talos [~talos@2600:6c5d:0:4b06:2608:ea56:e222:87c5] has quit [Remote host closed the connection] 22:49 < adi_onl> Anyway, I'm only asking for chrome, not sure how much GPU driver affects it. 22:50 < adi_onl> I'm running an ASUS N551JK-CN103D, not sure it has switchable graphics, dmesg displays inteldrm0: 1920x1080, 32bpp 22:51 < adi_onl> vendor "NVIDIA", unknown product 0x1391 (class display subclass 3D, rev 0xa2) at pci1 dev 0 function 0 not configured 22:51 < adi_onl> inteldrm0 at pci0 dev 2 function 0 "Intel HD Graphics 4600" rev 0x06 22:52 < oldlaptop> That would suggest you (a) have switchable graphics and (b) the intel integrated GPU is being properly detected and set up 22:53 < adi_onl> :D 22:53 < adi_onl> Cool! 22:53 < oldlaptop> unfortunately it's hard to say what each GPU is actually physically connected to 22:53 -!- jaj [~jaj@menial.joachim.cc] has left #openbsd [] 22:59 < adi_onl> I'll check if I can disable the Nvidia GPU in BIOS. 22:59 -!- critr [~critr@user/grayrock] has joined #openbsd 22:59 < oldlaptop> Sometimes that's possible; normally all that'll get you is some modest power savings from having the thing more thoroughly powered off 23:03 < adi_onl> But wouldn't that prove that the Intel GPU is connected to the display? 23:09 < oldlaptop> Wouldn't what prove that? 23:09 < oldlaptop> The dmesg proves that it exists, and (unfortunately) nothing more 23:10 < adi_onl> Disabling the NVidia GPU in the BIOS would prove the Intel GPU is connceted to the display. 23:10 < adi_onl> Assuming I have a "disable Nvidia GPU" function in the BIOS. 23:10 < oldlaptop> If a firmware setting to disable the nvidia GPU exists, that would imply it's physically connected to at least some output, probably (at minimum) the built-in display 23:10 < adi_onl> Agree! 23:10 < oldlaptop> (On the one switchable machine I made the mistake of buying, that is all it's connected to.) 23:11 < adi_onl> I understand! 23:11 < oldlaptop> The precise details of what's connected to what vary from machine to machine, sometimes even between very closely related machines. 23:12 < oldlaptop> (As I found out, the intel GPU is physically connected to the VGA port on a thinkpad T420/520, but not a thinkpad W520) 23:21 -!- adi_onl [~adi_onl@109.166.131.239] has quit [Quit: Client closed] 23:21 -!- ficonni_ [~ficonni@178.223.147.2] has joined #openbsd 23:22 -!- CrashOverride [~strcat@p54854431.dip0.t-ipconnect.de] has quit [Ping timeout: 244 seconds] 23:23 -!- skreech [skreech@user/skreech] has quit [Ping timeout: 260 seconds] 23:23 -!- SexWarrior [~DankFrank@2a01:4b00:940e:f600:b9e7:622e:f6f3:a40d] has joined #openbsd 23:25 -!- jaj [~jaj@menial.joachim.cc] has joined #openbsd 23:26 -!- winq [~winq@user/winq] has quit [Read error: Connection reset by peer] 23:27 -!- adi_onl [~adi_onl@109.166.131.239] has joined #openbsd 23:33 -!- skreech [skreech@user/skreech] has joined #openbsd 23:49 -!- ikarso [uid475540@id-475540.tinside.irccloud.com] has quit [Quit: Connection closed for inactivity] --- Log closed Sun Aug 20 00:00:41 2023