--- Log opened Tue Apr 16 00:00:21 2024 --- Day changed Tue Apr 16 2024 00:00 -!- format_c [~format_c@2a02:b98:f181:4094:f550:7488:2d5:5ffa] has quit [Quit: format_c] 00:00 -!- djhankb [~djhankb@208.113.164.68] has joined #openbsd 00:07 -!- Leonarbro [~Leo@user/leonarbro] has quit [Quit: Bye] 00:13 -!- rynn [~rynn@216.30.158.143] has quit [Quit: rynn] 00:13 -!- neutrin0 [~neutrino@modemcable191.6-160-184.mc.videotron.ca] has quit [Quit: :wq] 00:14 -!- rynn [rynn@gateway/vpn/protonvpn/rynn] has joined #openbsd 00:14 -!- rynn [rynn@gateway/vpn/protonvpn/rynn] has quit [Client Quit] 00:15 -!- Guru_DE [~guru@2001:9e8:e800:9a00:80ef:2612:8c6d:b994] has quit [Ping timeout: 260 seconds] 00:18 -!- rynn [rynn@gateway/vpn/protonvpn/rynn] has joined #openbsd 00:19 -!- Guru_DE [~guru@i5C747935.versanet.de] has joined #openbsd 00:34 -!- djhankb [~djhankb@208.113.164.68] has quit [Remote host closed the connection] 00:34 < cat5> thrig sluggish cursor motions! it's vi(improved)! why are you using a mouse? 00:34 -!- djhankb [~djhankb@208.113.164.68] has joined #openbsd 00:37 < Bradipo> cursor != mouse 00:37 < Bradipo> pointer == mouse 00:39 -!- rennj [~rennj@50.231.97.170] has left #openbsd [] 00:41 -!- GnarledHorn [~GnarledHo@c-67-174-30-57.hsd1.fl.comcast.net] has quit [Remote host closed the connection] 00:42 < cat5> long day 00:42 < Bradipo> Indeed! 00:43 < cat5> never noticed sluggish cursor in vim, but maybe i need to hang out in vi more to see the difference 00:44 < cat5> xset r rate 300 50 in my ~/.profile makes hjkl movement speedy 00:44 < cat5> ~/.xsession rather 00:45 < cat5> though I don't use hjkl much, there's deeper navigation wizardry for these things 00:45 < Bradipo> I don't use arrows much (in vi). 00:45 < Bradipo> In fact, almost never. 00:47 < cat5> yep 00:50 < cat5> I found some vim notes I made a while back https://termbin.com/nrcn 00:50 < cat5> but probably the only cool thing in there is a couple functions at the bottom 00:51 < cat5> this needs updating, i have learned much more since then 00:55 -!- zanetti [~Thunderbi@2801:8a:c811:1:db41:1d15:857a:5f8c] has joined #openbsd 01:03 < mischief> my problem with vim is mostly that syntax on makes movement really terribly slow 01:03 < cat5> mischief: which method of movement? 01:03 -!- zanetti [~Thunderbi@2801:8a:c811:1:db41:1d15:857a:5f8c] has quit [Quit: zanetti] 01:04 < mischief> normal hjkl 01:06 < cat5> hmm. maybe I'm not sensitive to this or my r rate setting for x masks it 01:07 < cat5> but im usually hopping around text by other methods 01:07 -!- djhankb [~djhankb@208.113.164.68] has quit [Remote host closed the connection] 01:08 -!- djhankb [~djhankb@208.113.164.68] has joined #openbsd 01:08 < Bradipo> I "hop" around using whichever makes sense in the context... 01:08 < Bradipo> Sometimes W and B, sometimes /, sometimes hjkl, etc. 01:09 < Bradipo> Sometimes ctrl-a, sometimes {}, sometimes %, just depends. 01:10 < cat5> yeah, I only mean to say that I rely on skipping to next/previous word, paragraph, stuff like zt to center page at cursor line, %, and so on more than hjkl 01:10 < Bradipo> Some of these may not have the same meanging in vim as they do in vi, so if they don't work, not sure what to say. :-) 01:10 < cat5> oh pretty close, for instance w for next word or b for back a word 01:10 < Bradipo> Well, I use both w W and b B. 01:11 < cat5> right 01:11 < Bradipo> Also e E 01:11 < cat5> ^ $ reaching beginning end of line... o O insert line above below. oh man, vi/vim is a video game with endless content 01:11 < Bradipo> Yep. 01:12 < Bradipo> "xyy followed by @x 01:13 < cat5> in vim xyy would be delete a character then yank the rest of the line, i dunno what @x is 01:14 < Bradipo> Well, I didn't say xyy, I said "xyy :-) 01:15 < Bradipo> @x is one of the most useful features of vi... 01:15 < cat5> oh you're yanking the line inside ""? like yi" or something? 01:15 < Bradipo> http://man.openbsd.org/vi#@~2 01:15 < Bradipo> No. 01:16 < Bradipo> "x creates a named buffer called x, and yy yanks the current line into that buffer. 01:16 < cat5> ohhhh. damn yeah that's nice 01:16 * oldlaptop buys, at a minimum, the Plan 9 idea that the mouse is a good tool for editing 01:16 < Bradipo> Then @x executes whatever is in that buffer. 01:16 < oldlaptop> at the very least given s/mouse/trackpoint (which embeds the thing in home row for you) 01:17 < cat5> Bradipo: i'll be stealing this "xyy @x 01:17 < Bradipo> I use multiple buffers when editing... 01:17 < Bradipo> "s, "w, "h, etc... 01:17 < Bradipo> Just depends on how many places I need to remember in the file. 01:18 < Bradipo> Sorry, how many different buffers I might need. 01:19 < Bradipo> You can also do something like: "xyy 10j "xp 01:20 < Bradipo> And maybe I have multiple buffers: 10j "xp "yP 01:20 < Bradipo> That pastes x after and y before. 01:20 < cat5> ok THAT one I would actually use 01:20 < Bradipo> Of course 10j is just one kind of movement, it's more likely that I'll use /search "xp "yP n "xp "yP 01:22 < Bradipo> That's a bit contrived because I really need another movement between the pasting of x and y. 01:22 < Bradipo> But you get the point. 01:22 < cat5> love it man 01:23 < Bradipo> After having learned a lot of vi's potential, which I've barely scraped, I learned the features of vim weren't that useful anymore. 01:23 < Bradipo> s/aped/atched/ 01:23 < cat5> that's probably the direction I will end up going, I will end up revisiting the stuff I use the most in vim and seeing if there's anything I can't do in vi 01:24 < cat5> answer will probably be "yeah i can do it in vi" 01:24 < Bradipo> Well, there are some things that vi won't do... 01:24 < Bradipo> block level copy/paste... 01:25 < Bradipo> But then, I never found much real use for it. 01:25 < cat5> useful when im doing html crap 01:25 < Bradipo> e.g. selecting a matrix of blocks in the file. 01:25 < Bradipo> Really? 01:25 < cat5> yeah, because i move stuff around on a page a lot to get things placed where I want sometimes 01:25 < Bradipo> I'm not sure how fetching (5,10)-(10,10) is a useful method for text. 01:25 < cat5> oh i misunderstood 01:26 < Bradipo> Where (x,y)-(x,y). 01:26 < Bradipo> Rather (x,y)--(m,n). 01:26 < cat5> yeah i never use that, for some reason i didnt see the word matrix and was thining of "selecting blocks of text" like visual mode etc 01:27 < Bradipo> Right, not blocks of text, blocks of characters over lines. 01:27 < cat5> maybe some insane person is doing spreadsheets in vim/ascii? 01:27 < cat5> could this be the use case 01:28 < Bradipo> Yeah, maybe. 01:29 < Bradipo> But yeah, for yanking multiple lines, I usually just mark the begin and end of the range of lines (e.g. :ka on the first line, :kb on the second line) and then use :'a,'by 01:29 < Bradipo> s/second/last/ 01:29 < cat5> that's clever 01:30 < Bradipo> most people probably fidget with a mouse... 01:30 < cat5> i got this thing in my config: vnoremap oo :w !cat \| nc termbin.com 9999 01:30 < cat5> send visually selected block of text to pastebin 01:30 < Bradipo> Well, with a mouse and a mouse enabled vim. 01:30 < Bradipo> But using a mouse slows down my typerate. 01:31 < Bradipo> Is that a map? 01:31 < cat5> yeah, by default is \ so \oo remaps the key sequence \oo in visual mode to execute external command 01:31 < Bradipo> vi also supports maps, but I don't use them very often... 01:32 < cat5> er \oo is ramapped to do that rather 01:33 < cat5> use that all the time, i was going to also make it send the URL it returns to my clipboard so i dont have to select it to share 01:34 -!- xx [~xx@user/xx] has quit [Ping timeout: 260 seconds] 01:34 < cat5> blew everyones mind at work i wrote this weird function that asks for a host then executes a script over there and then returns the output to local machine's clipboard and plays a nice little system bell sound when its complete 01:35 -!- seninha_ [~seninha@user/seninha] has quit [Quit: Leaving] 01:36 -!- marlin [~marlin@49.205.101.155] has joined #openbsd 01:36 < cat5> but these are people who use GNU nano so the bar to impress is low 01:36 < Bradipo> Oh my, nano is painful. 01:36 < cat5> it hurts to watch 01:36 < Bradipo> It does. 01:37 < byteskeptical> i use -> map gp :r!xclip -o -selection clipboard 01:37 < Bradipo> Watching someone in nano hurts more than watching someone using vi who only knows vim. ;-) 01:37 < cat5> byteskeptical: i like that one 01:38 < Bradipo> You can always identify a vim user by watching them get frustrated when the arrow keys don't work as they think in edit mode. :-) 01:38 < byteskeptical> lol 01:38 < Bradipo> Now, it looks like nvi actually does support arrow keys---I'm not sure if that was always true. 01:39 < cat5> im confused, do you mean insert mode? why would you be trying to use arrow keys while inserting 01:40 < Bradipo> Because vim enables that behavior. 01:40 < Bradipo> Because all other editors in the world allow you to use arrows while editing. 01:40 < Bradipo> Personally I don't care, I don't use the arrow keys anyway. 01:41 < mischief> byteskeptical: can't you use "*Y instead 01:41 < cat5> we have normal mode, insert, visual, command, and replace modes 01:41 -!- djhankb [~djhankb@208.113.164.68] has quit [Remote host closed the connection] 01:41 < cat5> (in vim) 01:41 < cat5> arrow keys / hjkl do not work for navigatin in insert mode 01:42 < Bradipo> Precisely. 01:42 -!- djhankb [~djhankb@208.113.164.68] has joined #openbsd 01:42 < byteskeptical> mischief: hmmm possibly I think so 01:42 < Bradipo> I mean, of course hjkl don't work... they are characters being inserted. 01:42 < cat5> is the same in vi right 01:42 < Bradipo> But are you sure that the arrow keys don't work in vim? 01:42 < cat5> they work fine in normal mode 01:42 < Bradipo> Last time I used vim they did, but that was many years ago. 01:43 < cat5> e.g. im in insert mode and hit esc to return to normal mode and can nav with arrows 01:43 < Bradipo> I just checked... 01:43 < Bradipo> The arrow keys still work in vim while in INSERT mode. 01:43 < cat5> oh nice 01:43 < Bradipo> "work" means they navigate. 01:43 < mischief> arrows work fine for me in normal and insert 01:43 < cat5> too bad my brain is hard wired on hjkl 01:43 < Bradipo> Better if you don't get accustomed to it. 01:44 < cat5> although I do have backspace setup to do backspace things: set backspace=indent,eol,start 01:44 < Bradipo> Because if you ever try to use arrow keys in INSERT on an *true* vi, you'll get nasty control characters inserted into your text. 01:44 < cat5> yes 01:44 < cat5> i can probably drop the backspace thing at this point though since I never use it 01:48 < Bradipo> Backspace in INSERT mode? 01:53 < cat5> yeah that was some cruft left in my config from years ago, when muscle memory ocassionaly struck and I tried to delete a character with delete key 01:53 < cat5> no longer used 01:54 -!- memset [~memset@gateway/tor-sasl/memset] has joined #openbsd 01:54 < Bradipo> Ahh, that, right. 02:07 -!- rynn [rynn@gateway/vpn/protonvpn/rynn] has quit [Quit: rynn] 02:10 -!- \dev\null is now known as devnull 02:15 -!- djhankb [~djhankb@208.113.164.68] has quit [Remote host closed the connection] 02:16 -!- djhankb [~djhankb@208.113.164.68] has joined #openbsd 02:16 -!- A1ice [~a1ice@gateway/tor-sasl/a1ice] has joined #openbsd 02:21 -!- memset [~memset@gateway/tor-sasl/memset] has quit [Ping timeout: 260 seconds] 02:23 -!- lbia [~lbia@user/lbia] has quit [Quit: lbia] 02:23 -!- Xenguy [~Xenguy@user/xenguy] has quit [Ping timeout: 272 seconds] 02:24 -!- memset [~memset@gateway/tor-sasl/memset] has joined #openbsd 02:31 -!- varioust [~varioust@gateway/tor-sasl/varioust] has quit [Ping timeout: 260 seconds] 02:40 -!- ublx [~ublx@user/ublx] has quit [Quit: ublx] 02:50 -!- djhankb [~djhankb@208.113.164.68] has quit [Remote host closed the connection] 02:50 -!- djhankb [~djhankb@208.113.164.68] has joined #openbsd 02:54 -!- jacobk [~quassel@utdpat242094.utdallas.edu] has joined #openbsd 03:03 -!- zanetti [~Thunderbi@187.106.34.240] has joined #openbsd 03:08 -!- zanetti [~Thunderbi@187.106.34.240] has quit [Client Quit] 03:21 -!- Bradipo [~Bradipo@50.77.44.29] has quit [Ping timeout: 260 seconds] 03:23 -!- djhankb [~djhankb@208.113.164.68] has quit [Remote host closed the connection] 03:24 -!- djhankb [~djhankb@208.113.164.68] has joined #openbsd 03:26 -!- h3at_ [~qw@gateway/tor-sasl/h3at] has quit [Remote host closed the connection] 03:27 -!- h3at [~qw@gateway/tor-sasl/h3at] has joined #openbsd 03:28 -!- marlin [~marlin@49.205.101.155] has quit [Quit: Client closed] 03:28 -!- xet7 [~xet7@user/xet7] has quit [Remote host closed the connection] 03:30 -!- xet7 [~xet7@user/xet7] has joined #openbsd 03:37 -!- kleinersche1m [~kleinersc@user/kleinersche1m] has quit [Ping timeout: 252 seconds] 03:37 -!- thulis [~kleinersc@2a02:3100:5d67:cb01:ba27:ebff:fe26:18f8] has joined #openbsd 03:40 -!- joe9 [~joe@c-73-24-194-198.hsd1.az.comcast.net] has joined #openbsd 03:47 -!- thulis [~kleinersc@2a02:3100:5d67:cb01:ba27:ebff:fe26:18f8] has quit [Quit: See ya!] 03:48 -!- kleinersche1m [~kleinersc@user/kleinersche1m] has joined #openbsd 03:57 -!- mxz__ [~mxz@user/mxz] has joined #openbsd 03:57 -!- djhankb [~djhankb@208.113.164.68] has quit [Remote host closed the connection] 03:58 -!- djhankb [~djhankb@208.113.164.68] has joined #openbsd 03:58 -!- mxz [~mxz@user/mxz] has quit [Ping timeout: 256 seconds] 03:58 -!- mxz__ is now known as mxz 03:58 -!- mxz_ [~mxz@user/mxz] has quit [Ping timeout: 268 seconds] 03:59 -!- Leone [~Leo@45.72.211.215] has quit [Read error: Connection reset by peer] 04:21 -!- penne [~penne@gateway/tor-sasl/penne] has quit [Remote host closed the connection] 04:22 -!- penne [~penne@gateway/tor-sasl/penne] has joined #openbsd 04:22 -!- A1ice [~a1ice@gateway/tor-sasl/a1ice] has quit [Remote host closed the connection] 04:23 -!- A1ice [~a1ice@gateway/tor-sasl/a1ice] has joined #openbsd 04:24 -!- duckworld [~duckworld@user/duckworld] has quit [Ping timeout: 258 seconds] 04:27 -!- mw [~mw@ripley.0x6d77.org] has quit [Quit: kumquat] 04:27 -!- mw [~mw@ripley.0x6d77.org] has joined #openbsd 04:28 -!- duckworld [~duckworld@user/duckworld] has joined #openbsd 04:30 -!- A1ice [~a1ice@gateway/tor-sasl/a1ice] has quit [Ping timeout: 260 seconds] 04:31 -!- bsd4me [~bsduser@user/bsd4me] has quit [Quit: leaving] 04:31 -!- djhankb [~djhankb@208.113.164.68] has quit [Remote host closed the connection] 04:32 -!- djhankb [~djhankb@208.113.164.68] has joined #openbsd 04:34 -!- penne [~penne@gateway/tor-sasl/penne] has quit [Remote host closed the connection] 04:34 -!- A1ice [~a1ice@gateway/tor-sasl/a1ice] has joined #openbsd 04:34 -!- penne [~penne@gateway/tor-sasl/penne] has joined #openbsd 04:35 -!- domovod [~domovod@176.196.122.197] has joined #openbsd 04:40 -!- rawgreaze [~rawgreaze@user/rawgreaze] has quit [Ping timeout: 240 seconds] 04:41 -!- jmcgnh [~jmcgnh@wikipedia/jmcgnh] has quit [Read error: Connection reset by peer] 04:46 -!- rawgreaze [~rawgreaze@user/rawgreaze] has joined #openbsd 05:02 -!- euphores [~SASL_euph@user/euphores] has quit [Ping timeout: 264 seconds] 05:05 -!- djhankb [~djhankb@208.113.164.68] has quit [Remote host closed the connection] 05:06 -!- djhankb [~djhankb@208.113.164.68] has joined #openbsd 05:07 -!- jlmk [~jlmk@user/jlmk] has quit [] 05:11 -!- jmcgnh [~jmcgnh@wikipedia/jmcgnh] has joined #openbsd 05:27 -!- desnudopenguino [~Thunderbi@c-73-157-16-238.hsd1.wa.comcast.net] has quit [Ping timeout: 260 seconds] 05:28 -!- desnudopenguino [~Thunderbi@c-73-157-16-238.hsd1.wa.comcast.net] has joined #openbsd 05:40 -!- djhankb [~djhankb@208.113.164.68] has quit [Remote host closed the connection] 05:40 -!- djhankb [~djhankb@208.113.164.68] has joined #openbsd 05:41 -!- sunwind` [~paradox@gateway/vpn/pia/sunwind] has quit [Ping timeout: 256 seconds] 05:41 -!- nature [~user@2a03:6000:9e20:104::1] has quit [Ping timeout: 255 seconds] 05:42 -!- sunwind [~paradox@gateway/vpn/pia/sunwind] has joined #openbsd 05:42 -!- horrad [~horrad@p50989fe8.dip0.t-ipconnect.de] has joined #openbsd 05:43 -!- adip [~adip@c159-63.icpnet.pl] has joined #openbsd 05:43 -!- A1ice [~a1ice@gateway/tor-sasl/a1ice] has quit [Remote host closed the connection] 05:44 -!- A1ice [~a1ice@gateway/tor-sasl/a1ice] has joined #openbsd 05:45 -!- shiranaihito_ [~shiranaih@ppp-124-120-193-68.revip2.asianet.co.th] has joined #openbsd 05:46 -!- zetef [~quassel@5.2.182.99] has joined #openbsd 05:48 -!- drathir_tor [~drathir@wireguard/tunneler/drathir] has quit [Remote host closed the connection] 05:51 -!- adip [~adip@c159-63.icpnet.pl] has quit [Ping timeout: 255 seconds] 05:53 -!- drathir_tor [~drathir@wireguard/tunneler/drathir] has joined #openbsd 06:04 -!- mxz_ [~mxz@user/mxz] has joined #openbsd 06:05 -!- domovod [~domovod@176.196.122.197] has quit [Ping timeout: 252 seconds] 06:09 -!- sunwind [~paradox@gateway/vpn/pia/sunwind] has quit [Quit: Outside Context Problem.] 06:14 -!- djhankb [~djhankb@208.113.164.68] has quit [Remote host closed the connection] 06:15 -!- djhankb [~djhankb@208.113.164.68] has joined #openbsd 06:16 -!- memset [~memset@gateway/tor-sasl/memset] has quit [Remote host closed the connection] 06:16 -!- memset [~memset@gateway/tor-sasl/memset] has joined #openbsd 06:18 -!- genpaku [~waldner@107.191.100.185] has quit [Read error: Connection reset by peer] 06:20 -!- iNomad [~iNomad@user/iNomad] has quit [Ping timeout: 256 seconds] 06:21 -!- iNomad [~iNomad@user/iNomad] has joined #openbsd 06:21 -!- todd [~todd@gateway/tor-sasl/toddf] has quit [Remote host closed the connection] 06:23 -!- desnudopenguino [~Thunderbi@c-73-157-16-238.hsd1.wa.comcast.net] has quit [Ping timeout: 256 seconds] 06:23 -!- A1ice [~a1ice@gateway/tor-sasl/a1ice] has quit [Quit: Unlibre time out!] 06:23 -!- feriman [~feriman@user/feriman] has joined #openbsd 06:25 -!- desnudopenguino [~Thunderbi@c-73-157-16-238.hsd1.wa.comcast.net] has joined #openbsd 06:27 -!- todd [~todd@gateway/tor-sasl/toddf] has joined #openbsd 06:28 -!- format_c [~format_c@2a02:b98:f181:4094:f550:7488:2d5:5ffa] has joined #openbsd 06:28 -!- fossdd [~fossdd@sourcehut/user/fossdd] has quit [Ping timeout: 256 seconds] 06:31 -!- fossdd [~fossdd@sourcehut/user/fossdd] has joined #openbsd 06:38 -!- fossdd [~fossdd@sourcehut/user/fossdd] has quit [Ping timeout: 256 seconds] 06:40 -!- fossdd [~fossdd@sourcehut/user/fossdd] has joined #openbsd 06:41 -!- gbowne1 [~gbowne1@97-113-92-242.tukw.qwest.net] has quit [Quit: Leaving] 06:41 -!- adip [~adip@c159-63.icpnet.pl] has joined #openbsd 06:42 -!- drathir_tor [~drathir@wireguard/tunneler/drathir] has quit [Remote host closed the connection] 06:42 -!- penne [~penne@gateway/tor-sasl/penne] has quit [Remote host closed the connection] 06:42 -!- drathir_tor [~drathir@wireguard/tunneler/drathir] has joined #openbsd 06:43 -!- penne [~penne@gateway/tor-sasl/penne] has joined #openbsd 06:48 -!- format_c [~format_c@2a02:b98:f181:4094:f550:7488:2d5:5ffa] has quit [Quit: format_c] 06:49 -!- djhankb [~djhankb@208.113.164.68] has quit [Remote host closed the connection] 06:49 -!- djhankb [~djhankb@208.113.164.68] has joined #openbsd 06:52 -!- struchu [~struchu@62.87.192.114] has joined #openbsd 06:55 -!- zetef [~quassel@5.2.182.99] has quit [Ping timeout: 255 seconds] 06:58 -!- adip [~adip@c159-63.icpnet.pl] has quit [Ping timeout: 256 seconds] 07:05 -!- miojo [~miojo@187.19.173.226] has quit [Remote host closed the connection] 07:05 -!- miojo [~miojo@187.19.173.226] has joined #openbsd 07:06 -!- shiranaihito_ [~shiranaih@ppp-124-120-193-68.revip2.asianet.co.th] has quit [Quit: My Mac has gone to sleep. ZZZzzz…] 07:07 -!- sunwind [~paradox@gateway/vpn/pia/sunwind] has joined #openbsd 07:13 -!- penne [~penne@gateway/tor-sasl/penne] has quit [Remote host closed the connection] 07:13 -!- penne [~penne@gateway/tor-sasl/penne] has joined #openbsd 07:15 -!- penne [~penne@gateway/tor-sasl/penne] has quit [Client Quit] 07:15 -!- penne [~penne@gateway/tor-sasl/penne] has joined #openbsd 07:15 -!- zetef [~quassel@5.2.182.99] has joined #openbsd 07:19 -!- Xenguy [~Xenguy@user/xenguy] has joined #openbsd 07:21 -!- kotrcka [~user@ip-94-112-194-228.bb.vodafone.cz] has joined #openbsd 07:21 -!- Rue_ [~rue@1-162-148-94.dynamic-ip.hinet.net] has joined #openbsd 07:23 -!- djhankb [~djhankb@208.113.164.68] has quit [Remote host closed the connection] 07:23 -!- djhankb [~djhankb@208.113.164.68] has joined #openbsd 07:33 -!- cypheon [~cypheon@user/cypheon] has joined #openbsd 07:34 -!- comradeCrow [~comradeCr@99-110-128-132.lightspeed.irvnca.sbcglobal.net] has quit [Ping timeout: 255 seconds] 07:35 -!- penne [~penne@gateway/tor-sasl/penne] has quit [Remote host closed the connection] 07:35 -!- penne [~penne@gateway/tor-sasl/penne] has joined #openbsd 07:37 -!- xx [~xx@user/xx] has joined #openbsd 07:42 -!- shiranaihito_ [~shiranaih@ppp-58-11-158-174.revip2.asianet.co.th] has joined #openbsd 07:43 -!- martian67 [~martian67@user/meow/martian67] has quit [Remote host closed the connection] 07:44 -!- martian67 [~martian67@user/meow/martian67] has joined #openbsd 07:45 -!- cornpaffies [~cornpaffi@user/cornpaffies] has joined #openbsd 07:46 -!- adig [~default@109.166.139.25] has joined #openbsd 07:46 -!- memset [~memset@gateway/tor-sasl/memset] has quit [Ping timeout: 260 seconds] 07:50 -!- lavaball [~Melissa@31.204.155.215] has joined #openbsd 07:50 -!- martian67 [~martian67@user/meow/martian67] has quit [Remote host closed the connection] 07:50 -!- Rue_ [~rue@1-162-148-94.dynamic-ip.hinet.net] has quit [Quit: WeeChat 4.2.1] 07:50 -!- martian67 [~martian67@user/meow/martian67] has joined #openbsd 07:55 -!- Rue_ [~rue@1-162-148-94.dynamic-ip.hinet.net] has joined #openbsd 07:58 -!- djhankb [~djhankb@208.113.164.68] has quit [Remote host closed the connection] 07:58 -!- memset [~memset@gateway/tor-sasl/memset] has joined #openbsd 07:58 -!- djhankb [~djhankb@208.113.164.68] has joined #openbsd 08:02 -!- tribaal [~tribaal@ubuntu/member/tribaal] has quit [Quit: ZNC - https://znc.in] 08:02 -!- tribaal [~tribaal@ubuntu/member/tribaal] has joined #openbsd 08:03 -!- ikichiga_ [~ikichiga@178.205.50.180] has quit [Ping timeout: 240 seconds] 08:04 -!- ikichiga [~ikichiga@178.205.50.180] has joined #openbsd 08:05 -!- Rue_ [~rue@1-162-148-94.dynamic-ip.hinet.net] has quit [Quit: WeeChat 4.2.1] 08:05 -!- Rue_ [~rue@1-162-148-94.dynamic-ip.hinet.net] has joined #openbsd 08:08 -!- b50d [~b50d@62.96.54.30] has joined #openbsd 08:08 -!- xFCFFDFFFFEFFFAF [~psyhician@88.201.243.61] has joined #openbsd 08:16 -!- ikarso [uid475540@id-475540.tinside.irccloud.com] has joined #openbsd 08:18 -!- zetef [~quassel@5.2.182.99] has quit [Ping timeout: 256 seconds] 08:19 -!- finkfox [~finkfox@user/finkfox] has joined #openbsd 08:26 -!- sonya [~nologin@gateway/tor-sasl/sonya] has joined #openbsd 08:26 -!- finkfox [~finkfox@user/finkfox] has quit [Ping timeout: 255 seconds] 08:28 -!- lbia [~lbia@user/lbia] has joined #openbsd 08:32 -!- djhankb [~djhankb@208.113.164.68] has quit [Remote host closed the connection] 08:32 -!- djhankb [~djhankb@208.113.164.68] has joined #openbsd 08:44 -!- zetef [~quassel@5.2.182.99] has joined #openbsd 08:53 -!- domovod [~domovod@176.196.122.197] has joined #openbsd 09:06 -!- djhankb [~djhankb@208.113.164.68] has quit [Remote host closed the connection] 09:06 -!- djhankb [~djhankb@208.113.164.68] has joined #openbsd 09:12 -!- psydroid [~psydroid@user/psydroid] has joined #openbsd 09:16 -!- A1ice [~a1ice@gateway/tor-sasl/a1ice] has joined #openbsd 09:16 -!- A1ice [~a1ice@gateway/tor-sasl/a1ice] has quit [Client Quit] 09:17 -!- jacobk [~quassel@utdpat242094.utdallas.edu] has quit [Ping timeout: 268 seconds] 09:18 -!- penne [~penne@gateway/tor-sasl/penne] has quit [Ping timeout: 260 seconds] 09:23 -!- penne [~penne@gateway/tor-sasl/penne] has joined #openbsd 09:24 -!- halden^ is now known as halden 09:38 -!- sunwind [~paradox@gateway/vpn/pia/sunwind] has quit [Quit: Outside Context Problem.] 09:38 -!- lavaball [~Melissa@31.204.155.215] has quit [Remote host closed the connection] 09:39 -!- djhankb [~djhankb@208.113.164.68] has quit [Remote host closed the connection] 09:40 -!- djhankb [~djhankb@208.113.164.68] has joined #openbsd 09:45 -!- lavaball [~Melissa@31.204.155.215] has joined #openbsd 09:55 -!- antanst0 [~antanst@user/antanst] has quit [Quit: The Lounge - https://thelounge.chat] 09:55 -!- antanst0 [~antanst@user/antanst] has joined #openbsd 09:57 -!- antanst0 [~antanst@user/antanst] has quit [Client Quit] 09:58 -!- antanst0 [~antanst@user/antanst] has joined #openbsd 10:00 -!- penne [~penne@gateway/tor-sasl/penne] has quit [Remote host closed the connection] 10:01 -!- penne [~penne@gateway/tor-sasl/penne] has joined #openbsd 10:02 -!- sunwind [~paradox@gateway/vpn/pia/sunwind] has joined #openbsd 10:03 -!- L29Ah [~L29Ah@wikipedia/L29Ah] has joined #openbsd 10:04 -!- zetef [~quassel@5.2.182.99] has quit [Ping timeout: 252 seconds] 10:04 < L29Ah> does openbsd employ xace or any other methods to isolate X clients from snooping on each other (for things like xinput2)? 10:05 -!- antanst0 [~antanst@user/antanst] has quit [Quit: The Lounge - https://thelounge.chat] 10:09 -!- finkfox [~finkfox@user/finkfox] has joined #openbsd 10:11 -!- adip [~adip@c159-63.icpnet.pl] has joined #openbsd 10:14 -!- djhankb [~djhankb@208.113.164.68] has quit [Remote host closed the connection] 10:14 -!- djhankb [~djhankb@208.113.164.68] has joined #openbsd 10:15 -!- accelerat0r [~user@user/accelerat0r] has quit [Remote host closed the connection] 10:18 < sonya> L29Ah: pledge and unveil are used for process control. examples are firefox and chromium (afaik) 10:19 -!- zetef [~quassel@5.2.182.99] has joined #openbsd 10:19 -!- pentanol [~pentanol@185.57.29.142] has joined #openbsd 10:25 -!- yeahitsme [~root@user/yeahitsme] has joined #openbsd 10:26 -!- antanst0 [~antanst@user/antanst] has joined #openbsd 10:33 -!- desnudopenguino [~Thunderbi@c-73-157-16-238.hsd1.wa.comcast.net] has quit [Ping timeout: 256 seconds] 10:33 -!- psydroid [~psydroid@user/psydroid] has quit [Quit: KVIrc 5.0.0 Aria http://www.kvirc.net/] 10:42 < L29Ah> sonya: this doesn't seem to be related to access to various X features 10:42 -!- op2 [~op2@user/op2] has quit [Remote host closed the connection] 10:45 -!- ikarso [uid475540@id-475540.tinside.irccloud.com] has quit [Quit: Connection closed for inactivity] 10:45 -!- zetef [~quassel@5.2.182.99] has quit [Remote host closed the connection] 10:46 -!- zetef [~quassel@5.2.182.99] has joined #openbsd 10:48 -!- djhankb [~djhankb@208.113.164.68] has quit [Remote host closed the connection] 10:48 -!- djhankb [~djhankb@208.113.164.68] has joined #openbsd 10:51 -!- zorz [~zorz@user/zorz] has joined #openbsd 11:00 -!- sunwind [~paradox@gateway/vpn/pia/sunwind] has quit [Ping timeout: 252 seconds] 11:01 -!- sunwind [~paradox@172.49.6.51.dyn.plus.net] has joined #openbsd 11:05 < sonya> L29Ah: then i misunderstood your question, sorry.. may be https://www.xenocara.org/ is what you're in.. anyway xbase75:/usr/X11R6/include/xorg/xace.h and xbase75:/usr/X11R6/include/xorg/xacestr.h is in, may be other things are already included also 11:08 -!- op2 [~op2@user/op2] has joined #openbsd 11:14 -!- zetef [~quassel@5.2.182.99] has quit [Ping timeout: 272 seconds] 11:16 -!- domovod [~domovod@176.196.122.197] has quit [Ping timeout: 268 seconds] 11:17 -!- domovod [~domovod@176.196.122.197] has joined #openbsd 11:19 -!- lavaball [~Melissa@31.204.155.215] has quit [Remote host closed the connection] 11:23 -!- djhankb [~djhankb@208.113.164.68] has quit [Remote host closed the connection] 11:23 -!- djhankb [~djhankb@208.113.164.68] has joined #openbsd 11:24 -!- lavaball [~Melissa@31.204.155.215] has joined #openbsd 11:26 -!- scain [~scain@2603:8080:b104:4e00:45cf:678b:a7f:b897] has joined #openbsd 11:38 -!- format_c [~format_c@2a02:b98:f181:4094:f550:7488:2d5:5ffa] has joined #openbsd 11:40 -!- zetef [~quassel@5.2.182.99] has joined #openbsd 11:51 -!- domovod [~domovod@176.196.122.197] has quit [Ping timeout: 240 seconds] 11:54 -!- ublx [~ublx@user/ublx] has joined #openbsd 11:56 -!- memset [~memset@gateway/tor-sasl/memset] has quit [Remote host closed the connection] 11:56 -!- memset [~memset@gateway/tor-sasl/memset] has joined #openbsd 11:56 -!- djhankb [~djhankb@208.113.164.68] has quit [Remote host closed the connection] 11:57 -!- djhankb [~djhankb@208.113.164.68] has joined #openbsd 12:00 -!- krl [~krl@h-155-4-221-200.NA.cust.bahnhof.se] has joined #openbsd 12:00 -!- zetef [~quassel@5.2.182.99] has quit [Remote host closed the connection] 12:02 -!- krl_ [~krl@h-155-4-221-200.NA.cust.bahnhof.se] has quit [Ping timeout: 260 seconds] 12:03 -!- donofrio [~donofrio@actproxy.faa.gov] has joined #openbsd 12:03 -!- yeahitsme [~root@user/yeahitsme] has quit [Quit: Leaving] 12:10 -!- miojo [~miojo@187.19.173.226] has quit [Remote host closed the connection] 12:11 -!- feriman [~feriman@user/feriman] has quit [Ping timeout: 268 seconds] 12:11 -!- feriman_ [~feriman@user/feriman] has joined #openbsd 12:14 -!- pentanol [~pentanol@185.57.29.142] has quit [Quit: Client closed] 12:24 -!- rynn [rynn@gateway/vpn/protonvpn/rynn] has joined #openbsd 12:25 -!- pentanol [~pentanol@185.57.29.142] has joined #openbsd 12:26 -!- finkfox [~finkfox@user/finkfox] has quit [Ping timeout: 255 seconds] 12:27 -!- user71 [~user71@2001:1530:1011:6605:1e6f:65ff:fe88:557f] has joined #openbsd 12:31 -!- djhankb [~djhankb@208.113.164.68] has quit [Remote host closed the connection] 12:31 -!- djhankb [~djhankb@208.113.164.68] has joined #openbsd 12:34 -!- kaisersosse [~kaisersos@user/kaisersosse] has joined #openbsd 12:34 -!- finkfox [~finkfox@user/finkfox] has joined #openbsd 12:38 -!- zcheng3 [~zcheng3@d108-173-21-8.abhsia.telus.net] has joined #openbsd 12:41 -!- seninha [~seninha@user/seninha] has joined #openbsd 12:45 -!- Rue_ [~rue@1-162-148-94.dynamic-ip.hinet.net] has quit [Quit: WeeChat 4.2.1] 12:51 -!- A1ice [~a1ice@gateway/tor-sasl/a1ice] has joined #openbsd 12:53 -!- finkfox [~finkfox@user/finkfox] has quit [Ping timeout: 255 seconds] 12:56 -!- ikarso [uid475540@id-475540.tinside.irccloud.com] has joined #openbsd 12:56 -!- PyR3X [~PyR3X@user/pyr3x] has left #openbsd [] 12:56 -!- PyR3X [~PyR3X@user/pyr3x] has joined #openbsd 12:57 -!- pentanol [~pentanol@185.57.29.142] has quit [Quit: Client closed] 13:00 -!- byteskeptical [~amnesia@user/byteskeptical] has quit [Remote host closed the connection] 13:00 -!- miojo [~miojo@187.19.173.226] has joined #openbsd 13:01 -!- penne [~penne@gateway/tor-sasl/penne] has quit [Ping timeout: 260 seconds] 13:02 -!- pentanol [~pentanol@185.57.29.142] has joined #openbsd 13:03 -!- synaps3 [~bob@user/synaps3] has joined #openbsd 13:03 -!- n8n [n8n@user/n8n] has quit [Quit: WeeChat 4.2.2] 13:04 -!- ficonni [~ficonni@46.235.98.21] has joined #openbsd 13:05 -!- djhankb [~djhankb@208.113.164.68] has quit [Remote host closed the connection] 13:06 -!- djhankb [~djhankb@208.113.164.68] has joined #openbsd 13:09 -!- memset [~memset@gateway/tor-sasl/memset] has quit [Remote host closed the connection] 13:09 -!- A1ice [~a1ice@gateway/tor-sasl/a1ice] has quit [Remote host closed the connection] 13:09 -!- horrad [~horrad@p50989fe8.dip0.t-ipconnect.de] has quit [Remote host closed the connection] 13:10 -!- memset [~memset@gateway/tor-sasl/memset] has joined #openbsd 13:10 -!- A1ice [~a1ice@gateway/tor-sasl/a1ice] has joined #openbsd 13:13 -!- namaste [~namaste@user/xyk] has quit [Read error: Connection reset by peer] 13:19 -!- pfau [~pfau@24.229.169.40] has quit [Quit: Leaving] 13:20 -!- pfau [~pfau@24.229.169.40.res-cmts.sm3.ptd.net] has joined #openbsd 13:20 -!- Xenguy [~Xenguy@user/xenguy] has quit [Quit: "To play for a draw [...] is to some degree a crime against chess." - Mikhail Tal] 13:22 -!- format_c [~format_c@2a02:b98:f181:4094:f550:7488:2d5:5ffa] has quit [Quit: format_c] 13:27 -!- pfau is now known as tpfau 13:28 -!- tpfau [~pfau@24.229.169.40.res-cmts.sm3.ptd.net] has quit [Changing host] 13:28 -!- tpfau [~pfau@user/tpfau] has joined #openbsd 13:30 -!- rain0r [~rainer@static.198.178.130.94.clients.your-server.de] has quit [Quit: rain0r] 13:31 -!- pentanol [~pentanol@185.57.29.142] has quit [Quit: Client closed] 13:32 -!- rain0r [~rainer@static.198.178.130.94.clients.your-server.de] has joined #openbsd 13:32 -!- byteskeptical [~amnesia@user/byteskeptical] has joined #openbsd 13:34 -!- bsd4me [~bsduser@user/bsd4me] has joined #openbsd 13:39 -!- djhankb [~djhankb@208.113.164.68] has quit [Remote host closed the connection] 13:40 -!- zcheng3 [~zcheng3@d108-173-21-8.abhsia.telus.net] has quit [Ping timeout: 268 seconds] 13:40 -!- djhankb [~djhankb@208.113.164.68] has joined #openbsd 13:40 -!- namaste [~namaste@user/xyk] has joined #openbsd 13:40 -!- kaisersosse [~kaisersos@user/kaisersosse] has quit [Ping timeout: 246 seconds] 13:41 -!- seninha [~seninha@user/seninha] has quit [Quit: Leaving] 13:42 -!- josuah [~josuah@46.23.94.12] has joined #openbsd 13:43 -!- meena [~meena@static.202.157.181.135.clients.your-server.de] has left #openbsd [The Lounge - https://thelounge.chat] 13:44 -!- om3ga [~om3ga@46.49.41.80] has quit [Ping timeout: 260 seconds] 13:45 -!- bsd4me [~bsduser@user/bsd4me] has quit [Quit: leaving] 13:52 -!- om3ga [~om3ga@46.49.41.80] has joined #openbsd 13:53 -!- qqq [~qqq@92.43.167.61] has quit [Quit: Lost terminal] 13:55 -!- axreios [~axreios@user/axreios] has joined #openbsd 13:56 -!- axreios [~axreios@user/axreios] has left #openbsd [] 13:58 -!- zcheng3 [~zcheng3@d108-173-21-8.abhsia.telus.net] has joined #openbsd 14:02 -!- bsd4me [~bsduser@user/bsd4me] has joined #openbsd 14:03 -!- Kruppt [~Kruppt@user/Kruppt] has joined #openbsd 14:14 -!- djhankb [~djhankb@208.113.164.68] has quit [Remote host closed the connection] 14:14 -!- djhankb [~djhankb@208.113.164.68] has joined #openbsd 14:16 -!- davlefou [~davlefou@2a01:e0a:5f4:4bd0:8cc8:ba2f:2267:e7b0] has quit [Ping timeout: 256 seconds] 14:20 -!- qqq [~qqq@92.43.167.61] has joined #openbsd 14:26 -!- pentanol [~pentanol@185.57.29.142] has joined #openbsd 14:29 -!- davlefou [~davlefou@2a01:e0a:5f4:4bd0:5d17:1877:c4a5:fd1e] has joined #openbsd 14:29 -!- kaisersosse [~kaisersos@user/kaisersosse] has joined #openbsd 14:30 -!- struchu [~struchu@62.87.192.114] has quit [Quit: WeeChat 4.2.1] 14:31 -!- ublx [~ublx@user/ublx] has quit [Quit: ublx] 14:34 -!- Bradipo [~Bradipo@50.77.44.29] has joined #openbsd 14:35 -!- desnudopenguino [~Thunderbi@c-73-157-16-238.hsd1.wa.comcast.net] has joined #openbsd 14:37 < tpfau> i installed openbsd 7.5 on my pws600au yesterday, downloaded ports and started an install of zsh. it's been compiling for over 20 hours now... 14:38 < sibiria> ok but why 14:38 < sibiria> you can install pre-built packages, instead of compiling them yourself 14:39 < IcePic> sibiria: pws600au is an Alpha from what I gather 14:39 < IcePic> no pkgs for those yet 14:39 < tpfau> they are terminating the openvms hobbyist program. i'm looking for something else to do with the machine. it's a very old alpha based workstation 14:39 < sibiria> oh, a rare Alphan 14:39 < sibiria> best of luck to you and your electricity bill 14:40 < tpfau> i can remember when alphas first came out. i remember how fast they were. what happened??? :) 14:40 < lts> Everything bloated 14:40 < sibiria> DEC died 14:41 < Bradipo> Speaking of bloat. It was nice to find that xpdf3 is still available as a separate package. I don't like the new xpdf4. 14:41 < Bradipo> xpdf4 relies on qt and doesn't even work. Most of the buttons have no icons so I have no idea what I'm clicking on. 14:42 -!- jmcunx [jmccue@user/zjmc] has joined #openbsd 14:43 < IcePic> obsd 6.3 seems to have been the last release for which pkgs for alpha were built 14:43 < Bradipo> I still have a DEC Alpha... cannot get it to boot because the video isn't working. Though it does have serial. 14:43 < tpfau> i only see 7.4 and 7.5 on the servers and neither has any alpha packages. guess i'm on my own. 14:44 < tpfau> i found a suitable video card on ebay to replace the original one that had issues 14:44 -!- al1r4d [~244e6cd0@user/al1r4d] has joined #openbsd 14:45 -!- synaps3 [~bob@user/synaps3] has quit [Remote host closed the connection] 14:47 -!- nature [~user@2a03:6000:9e20:104::1] has joined #openbsd 14:47 < miah> i had some alphas in 1998 and they were slow then 14:48 -!- djhankb [~djhankb@208.113.164.68] has quit [Remote host closed the connection] 14:48 < tpfau> ports documentation mentions an app named "portslist". any idea where i can find it? i can't find it in the ports directories. 14:49 < miah> while the alpha does use a lot of electricity it also doubles as a space heater, so if you live in a cold climate it works out 14:49 -!- djhankb [~djhankb@208.113.164.68] has joined #openbsd 14:50 < IcePic> tpfau: I thought it could have been in /usr/ports/infrastructure/bin, but didn't find "portslist" there. 8-( 14:51 -!- CrashOverride [~strcat@p54855566.dip0.t-ipconnect.de] has joined #openbsd 14:52 < IcePic> its a package, but I didn't find its port.. 14:52 < tpfau> i just plugged it into the power meter. it's running about 200W 14:52 < Bradipo> Heh, I should test mine. I never wondered how much power it consumes. 14:52 < Bradipo> Does have a noisy SCSI drive though. 14:53 < miah> i miss old scsi drives because hearing the drive head function was usually a good way to determine if a computer was doing anything 14:53 < tpfau> i've had a few whiny scsi drives. the current ones i'm using aren't too bad 14:54 < miah> tpfau: which alpha do you have? i had some alphastation/200's and a multia and some others that ive forgotten about 14:54 < tpfau> meanwhile, my brand new 24 core dell system is drawing 75W but it's idle 14:54 < tpfau> i have a pws600au personal workstation 14:55 < IcePic> tpfau: I think perhaps the sqlports "port" also creates (or possibly creates) portslist, but I think for most usage of ports, you should be able to live without it, even if the ports handbook mentions it 14:55 < IcePic> I've done obsd since 2.2 or something, and never heard of it until today so.. 14:55 < phy1729> databases/sqlports/Makefile:PKGNAME-list = portslist-$V maybe that? 14:56 < tpfau> IcePic: probably true, i've been finding what i'm looking for with 'ls -d /usr/ports/*/**' 14:56 < miah> 2.2... is that back when fdisk required you to manually calculate blocks? 14:56 -!- swaggboi [~kvirc@slackware.uk/supporter/swaggboi] has quit [Ping timeout: 256 seconds] 14:57 < tpfau> phy1729: that looks like it, thanks 14:58 < miah> that pws600 looks like a nice system 14:58 -!- h3at [~qw@gateway/tor-sasl/h3at] has quit [Quit: leaving] 14:58 < miah> definitely beefier than my /200's 15:00 < tpfau> it's not bad. i should have bought the xp1000, though. one of each was available on ebay at the time and i bought the cheaper one. 15:00 -!- A1ice [~a1ice@gateway/tor-sasl/a1ice] has quit [Quit: Unlibre time out!] 15:00 -!- pentanol [~pentanol@185.57.29.142] has quit [Ping timeout: 250 seconds] 15:01 < tpfau> i had another alpha before this one but it died. i think it might have been a 200. i remember it being horribly slow. 15:02 < miah> ya thats how i remember them, but this was decades ago at this point so everything was relatively slow 15:02 < miah> i feel like a lot of the slowness of older computers came down to the disk too 15:02 -!- thrig [~thrig@c-73-221-177-233.hsd1.wa.comcast.net] has joined #openbsd 15:03 < tpfau> the 200 had 50 pin scsi drives. the pws has 68 pin drives. the 68 pin drives are much faster. pws also has a later generation alpha chip. 15:04 < miah> indeed. sounds like a fun system to work with =) 15:04 < miah> i ended up moving cross country several times and left all my vintage computers in different states 15:07 -!- rawgreaze [~rawgreaze@user/rawgreaze] has quit [Quit: ZNC 1.8.2 - https://znc.in] 15:07 < IcePic> miah: depended on the drive type I guess, IDE disks before LBA had almost no info to give the OS about its size 15:07 < IcePic> miah: so you would have to do cylinders,heads,sectors to get the size right 15:07 < IcePic> miah: but I ran it mostly on sparc32 and amiga then 15:07 < IcePic> they don't have such problems :) 15:08 < miah> ya that sounds right. ~98 i was installing openbsd / netbsd on any old computer i could find. probably some old clunky 386's and 486's 15:08 -!- ivdsangen [~ivo@86-95-161-96.fixed.kpn.net] has joined #openbsd 15:11 -!- rawgreaze [~rawgreaze@user/rawgreaze] has joined #openbsd 15:14 < betabug> I think a Mac IIcx was my first openbsd machine, except it wasn't really mine 15:14 < betabug> then I installed on a Quadra 700 and used that for a looooong time 15:15 < miah> nice! a friend and i put netbsd on a apple llc and ran into a fun issue because the clock was set to like 1902 and.. unix is weird when the date is before the epoch 15:16 < miah> iic? llc? looks the same in my brain 15:17 < vortexx> https://newsletter.3mdeb.com/archive/8thVzI5so/ReBpt3IZY/BLI03pS_il <-- this landed in my mailbox the other day, seems to announce UEFI support for the APU2/3/4/5/6. Has anyone tried this? Might require reinstalling OpenBSD on a GPT configured disk 15:20 -!- miojo [~miojo@187.19.173.226] has quit [Remote host closed the connection] 15:22 -!- djhankb [~djhankb@208.113.164.68] has quit [Remote host closed the connection] 15:23 -!- djhankb [~djhankb@208.113.164.68] has joined #openbsd 15:23 < pirateoverboard> Too bad all apu is eol 15:23 -!- jacobk [~quassel@utdpat242053.utdallas.edu] has joined #openbsd 15:26 < miah> ya they looked like a great platform 15:28 -!- gman999 [~GMan999@user/gman999] has quit [Quit: WeeChat 4.0.4] 15:28 -!- shiranaihito_ [~shiranaih@ppp-58-11-158-174.revip2.asianet.co.th] has quit [Read error: Connection reset by peer] 15:28 -!- shiranaihito_ [~shiranaih@ppp-58-11-158-174.revip2.asianet.co.th] has joined #openbsd 15:29 -!- qqq [~qqq@92.43.167.61] has quit [Read error: Connection reset by peer] 15:30 -!- d3javu [~Alabena@user/d3javu] has joined #openbsd 15:30 -!- penne [~penne@gateway/tor-sasl/penne] has joined #openbsd 15:30 -!- qqq [~qqq@92.43.167.61] has joined #openbsd 15:31 -!- miojo [~miojo@187.19.173.226] has joined #openbsd 15:32 -!- kaisersosse [~kaisersos@user/kaisersosse] has quit [Remote host closed the connection] 15:32 -!- kaisersosse [~kaisersos@user/kaisersosse] has joined #openbsd 15:33 < vortexx> as far as OpenBSD goes, you don't really get any security advantages from booting UEFI vs MBR do you? At least not without a lot of UEFI fiddling 15:34 -!- b50d [~b50d@62.96.54.30] has quit [Remote host closed the connection] 15:40 < betabug> for a while I had to run calls to rdate with cron, or the time would drift a lot 15:40 < betabug> mac68k openbsd wasn't always the best supported platform I guess, some weird hardware 15:40 -!- terullian [~sonne@37.48.94.19] has joined #openbsd 15:42 < pkubaj> vortexx: i'm in 3mdeb's validation team, before that release i tried using ubuntu and debian, it worked just fine 15:42 < pkubaj> unfortunately we don't test openbsd 15:43 -!- A1ice [~a1ice@gateway/tor-sasl/a1ice] has joined #openbsd 15:43 -!- al1r4d [~244e6cd0@user/al1r4d] has quit [Quit: The Lounge - https://thelounge.chat] 15:44 -!- al1r4d [~7205f4fc@user/al1r4d] has joined #openbsd 15:45 -!- al1r4d [~7205f4fc@user/al1r4d] has quit [Client Quit] 15:46 -!- domovod [~domovod@176.196.122.197] has joined #openbsd 15:46 < vortexx> pkubaj: ok thanks, I might give dasharo a go in the coming days just to see 15:47 < pkubaj> vortexx: it should really just work 15:47 < pkubaj> on other boards we installed freebsd, windows, they work just fine 15:49 -!- al1r4d [~7205f4fc@user/al1r4d] has joined #openbsd 15:49 -!- format_c [~format_c@2a02:b98:f181:4094:f550:7488:2d5:5ffa] has joined #openbsd 15:49 < vortexx> pkubaj: OpenBSD is unable to boot an MBR formated drive on UEFI, and GPT on MBR. I'll get back to you on results 15:50 -!- echelon [~echelon@gateway/tor-sasl/steerpike] has quit [Remote host closed the connection] 15:52 -!- gknux [~gknux@user/galaxy-knuckles/x-3015990] has quit [Ping timeout: 268 seconds] 15:53 -!- echelon [~echelon@gateway/tor-sasl/steerpike] has joined #openbsd 15:53 < echelon> hi, is there anything similar to setfacl in openbsd? 15:57 < thrig> I recall someone on the orange site complaining that openbsd doesn't support extended acls 15:57 -!- djhankb [~djhankb@208.113.164.68] has quit [Remote host closed the connection] 15:57 < vortexx> ffs doesn't have acls... but there's chflags, which isn't really the same at all 15:57 -!- djhankb [~djhankb@208.113.164.68] has joined #openbsd 15:58 < vortexx> chflags is a great way to have problems at upgrade time 15:58 < thrig> secure by default! 15:58 < thrig> oh yeah Apple had a shellshock version of bash you couldn't fix because chflags 15:59 < pkubaj> vortexx: that is openbsd's fault, not dasharo's 16:00 -!- A7ice [~a1ice@gateway/tor-sasl/a1ice] has joined #openbsd 16:01 -!- A7ice [~a1ice@gateway/tor-sasl/a1ice] has quit [Remote host closed the connection] 16:01 < echelon> this is for a folder that exists in my home directory, so i don't think a system upgrade would be impacted 16:01 < vortexx> pkubaj: of course 16:02 < vortexx> echelon: test test and test again to be sure then 16:03 -!- strajder [~strajder@user/strajder] has joined #openbsd 16:03 -!- A1ice [~a1ice@gateway/tor-sasl/a1ice] has quit [Ping timeout: 260 seconds] 16:03 < echelon> i'll just add the user to my group 16:04 -!- haocrcmt^ [~cd@c-98-242-74-66.hsd1.ga.comcast.net] has quit [Remote host closed the connection] 16:04 -!- A1ice [~a1ice@gateway/tor-sasl/a1ice] has joined #openbsd 16:04 -!- A1ice is now known as Human 16:05 -!- Human is now known as A1ice 16:05 -!- jmcunx [jmccue@user/zjmc] has left #openbsd [] 16:05 -!- cmburn [~cmburn@67-220-26-83.fttp.usinternet.com] has joined #openbsd 16:06 -!- psydroid [~psydroid@user/psydroid] has joined #openbsd 16:07 -!- CrashOverride [~strcat@p54855566.dip0.t-ipconnect.de] has quit [Ping timeout: 252 seconds] 16:07 -!- euphores [~SASL_euph@user/euphores] has joined #openbsd 16:09 -!- CrashOverride [~strcat@p57b4b696.dip0.t-ipconnect.de] has joined #openbsd 16:09 -!- kroovy [~libera@62.27.201.192] has quit [Ping timeout: 255 seconds] 16:11 -!- kaisersosse [~kaisersos@user/kaisersosse] has quit [Ping timeout: 268 seconds] 16:11 -!- euphores [~SASL_euph@user/euphores] has quit [Client Quit] 16:12 -!- sonya [~nologin@gateway/tor-sasl/sonya] has quit [Ping timeout: 260 seconds] 16:15 -!- kroovy [~libera@62.27.201.192] has joined #openbsd 16:18 -!- jacobk [~quassel@utdpat242053.utdallas.edu] has quit [Ping timeout: 240 seconds] 16:18 -!- lavaball [~Melissa@31.204.155.215] has quit [Quit: lavaball] 16:19 -!- Kruppt [~Kruppt@user/Kruppt] has quit [Quit: Leaving] 16:19 -!- euphores [~SASL_euph@user/euphores] has joined #openbsd 16:20 -!- pentanol [~pentanol@185.57.29.142] has joined #openbsd 16:21 -!- gman999 [~GMan999@user/gman999] has joined #openbsd 16:29 -!- sonya [~nologin@gateway/tor-sasl/sonya] has joined #openbsd 16:30 -!- jacobk [~quassel@64.189.201.150] has joined #openbsd 16:31 -!- zcheng3 [~zcheng3@d108-173-21-8.abhsia.telus.net] has quit [Quit: leaving] 16:31 -!- djhankb [~djhankb@208.113.164.68] has quit [Remote host closed the connection] 16:32 -!- djhankb [~djhankb@208.113.164.68] has joined #openbsd 16:36 -!- GnarledHorn [~GnarledHo@c-67-174-30-57.hsd1.fl.comcast.net] has joined #openbsd 16:37 -!- miojo [~miojo@187.19.173.226] has quit [Remote host closed the connection] 16:37 -!- miojo [~miojo@187.19.173.226] has joined #openbsd 16:38 -!- jfsimon1981 [~jfsimon19@78.155.142.228] has joined #openbsd 16:38 < avemestr> sibiria, mischief There's new Odroids available: https://www.hardkernel.com/ 16:40 < avemestr> Seems OpenBSD already run on "Alder Lake" CPUs, not sure about "Alder Lake-N". The H4* Odroids seems to improve performance over H3*, but at the cost of slightly higher power consumption. 16:41 < mischief> my h2+ still pushes packets just fine, hopefully it has a long life :) 16:41 < mischief> the celeron J4115 is certainly not fast but it does the job 16:41 < avemestr> Yes, no need to upgrade just because new shiny. 16:42 -!- A7ice [~a1ice@gateway/tor-sasl/a1ice] has joined #openbsd 16:42 < avemestr> I just wanted to mention the new products, since we discussed Odroids a few days ago :-) 16:44 -!- A1ice [~a1ice@gateway/tor-sasl/a1ice] has quit [Ping timeout: 260 seconds] 16:45 -!- Guest3 [~Guest99@76.204.90.69] has joined #openbsd 16:45 -!- kaisersosse [~kaisersos@user/kaisersosse] has joined #openbsd 16:46 -!- Guest3 [~Guest99@76.204.90.69] has left #openbsd [] 16:46 -!- A7ice [~a1ice@gateway/tor-sasl/a1ice] has quit [Client Quit] 16:48 -!- Nixkernal [~Nixkernal@240.17.194.178.dynamic.wline.res.cust.swisscom.ch] has quit [Ping timeout: 255 seconds] 16:48 -!- ClaudioM [claudiom@tilde.institute] has joined #openbsd 16:54 < vortexx> avemestr: thanks for the heads up on that, interesting. 17:02 -!- zcheng3 [~zcheng3@d108-173-21-8.abhsia.telus.net] has joined #openbsd 17:04 -!- ivdsangen [~ivo@86-95-161-96.fixed.kpn.net] has quit [Ping timeout: 240 seconds] 17:06 -!- djhankb [~djhankb@208.113.164.68] has quit [Remote host closed the connection] 17:06 -!- djhankb [~djhankb@208.113.164.68] has joined #openbsd 17:09 -!- artmdl [~art5456@d172-218-174-94.bchsia.telus.net] has joined #openbsd 17:10 < avemestr> vortexx: The H2+, H3+, H4+ and H4 Ultra CPUs compared: https://www.cpubenchmark.net/compare/3679vs4565vs5337vs5213/Intel-Celeron-J4115-vs-Intel-Pentium-Silver-N6005-vs-Intel-N97-vs-Intel-i3-N305 17:11 < avemestr> The H4+ seems slightly "squeezed" between H3+ and H4 Ultra. 17:11 -!- ivdsangen [~ivo@86-95-161-96.fixed.kpn.net] has joined #openbsd 17:12 < vortexx> I'm more interested in TDP... Not super worried over performance, I'm sure it can push the 2.5Gbe interfaces to the max? 17:13 < vortexx> in OpenBSD that is, not other OSes 17:14 -!- strajder [~strajder@user/strajder] has quit [Quit: leaving] 17:18 -!- cornpaffies [~cornpaffi@user/cornpaffies] has quit [Quit: bye] 17:20 -!- jmcunx [jmccue@user/zjmc] has joined #openbsd 17:21 < avemestr> The H3+ is probably the best in that case then. 17:24 -!- miojo [~miojo@187.19.173.226] has quit [Remote host closed the connection] 17:26 -!- f_ [~AUGESOUND@fases/developer/funderscore] has joined #openbsd 17:29 -!- kdc [~kdc@user/kdc] has joined #openbsd 17:31 * sonya is happy with "Alder Lake-N95" noname notebook, though there're some rough edges 17:31 -!- jlavsund [~jlavsund@37.250.69.45.bredband.tre.se] has joined #openbsd 17:35 < betabug> put some gaffer tape on those edges? 17:37 < sonya> just left'em as they are :)) 17:40 -!- djhankb [~djhankb@208.113.164.68] has quit [Remote host closed the connection] 17:41 -!- djhankb [~djhankb@208.113.164.68] has joined #openbsd 17:50 -!- f_ [~AUGESOUND@fases/developer/funderscore] has quit [Remote host closed the connection] 17:50 -!- f_ [~AUGESOUND@fases/developer/funderscore] has joined #openbsd 17:53 < sonya> oh.. just've read the topic.. zsh.. isn't ksh93 is a better shell for lowres hardware? if tcsh/csh is not an option.. 17:54 -!- miojo [~miojo@187.19.173.226] has joined #openbsd 17:54 -!- lavaball [~Melissa@31.204.155.215] has joined #openbsd 17:56 < avemestr> sonya: "rough edges" like "not configured" in dmesg, or? 17:56 < sonya> avemestr: cpu0: Enhanced SpeedStep 3392 MHz: speeds: 1701, 1700, 1600, 1500, 1400, 1300, 1200, 1100, 1000, 900, 800 MHz 17:56 < sonya> this^ 17:57 < sonya> do you see it? 17:57 -!- jacobk [~quassel@64.189.201.150] has quit [Ping timeout: 268 seconds] 17:57 < avemestr> The joys of "performance" and "efficiency" cores? 17:58 < sonya> N95 is capable to work from 400MHz to 3.4GHz, but.. irl (7.5) it reports range from 800 to 1.7 max 17:58 < sonya> dunno.. in win10 it works 400-3.4 17:59 < sonya> per core 17:59 -!- uncleyear [~ian@178.66.131.200] has quit [Quit: Lost terminal] 18:00 < sonya> cpu0: Intel(R) N95, 3392.18 MHz, 06-be-00, patch 0000000e 18:00 -!- uncleyear [~ian@178.66.131.200] has joined #openbsd 18:06 < sonya> sorry, need to go.. bb 18:06 -!- bsd4me [~bsduser@user/bsd4me] has quit [Ping timeout: 240 seconds] 18:08 -!- jacobk [~quassel@utdpat241055.utdallas.edu] has joined #openbsd 18:13 -!- sonya [~nologin@gateway/tor-sasl/sonya] has quit [Ping timeout: 260 seconds] 18:13 -!- pentanol [~pentanol@185.57.29.142] has quit [Quit: Client closed] 18:15 -!- djhankb [~djhankb@208.113.164.68] has quit [Remote host closed the connection] 18:15 -!- djhankb [~djhankb@208.113.164.68] has joined #openbsd 18:20 -!- tostr [60aa75e090@user/tostr] has joined #openbsd 18:23 -!- kaisersosse [~kaisersos@user/kaisersosse] has quit [Remote host closed the connection] 18:23 -!- kaisersosse [~kaisersos@user/kaisersosse] has joined #openbsd 18:26 -!- martian67 [~martian67@user/meow/martian67] has quit [Ping timeout: 260 seconds] 18:26 -!- martian67 [~martian67@user/meow/martian67] has joined #openbsd 18:31 -!- ivdsangen [~ivo@86-95-161-96.fixed.kpn.net] has quit [Quit: https://github.com/ivdsangen] 18:31 -!- zcheng3 [~zcheng3@d108-173-21-8.abhsia.telus.net] has quit [Ping timeout: 260 seconds] 18:34 -!- rawgreaze [~rawgreaze@user/rawgreaze] has quit [Quit: ZNC 1.8.2 - https://znc.in] 18:36 -!- dsrt^ [~cd@c-98-242-74-66.hsd1.ga.comcast.net] has joined #openbsd 18:40 -!- rawgreaze [~rawgreaze@user/rawgreaze] has joined #openbsd 18:41 -!- amnesiac [~amnesiac@85.236.190.173] has joined #openbsd 18:43 < amnesiac> Hi. Why sound in os could be only single channel - like mono signal ? Even over usb sound interface. 18:44 -!- nature [~user@2a03:6000:9e20:104::1] has quit [Read error: Connection reset by peer] 18:44 -!- Posterdati [~Posterdat@user/Posterdati] has quit [Quit: KVIrc 5.0.0 Aria http://www.kvirc.net/] 18:45 -!- Posterdati [~Posterdat@user/Posterdati] has joined #openbsd 18:46 -!- f_ [~AUGESOUND@fases/developer/funderscore] has quit [Quit: To contact me, send a memo using MemoServ, PM f_[xmpp], or send an email. See https://vitali64.duckdns.org/.] 18:46 -!- jlavsund [~jlavsund@37.250.69.45.bredband.tre.se] has quit [Remote host closed the connection] 18:49 -!- djhankb [~djhankb@208.113.164.68] has quit [Remote host closed the connection] 18:50 -!- djhankb [~djhankb@208.113.164.68] has joined #openbsd 18:53 -!- amnesiac [~amnesiac@85.236.190.173] has quit [Ping timeout: 260 seconds] 18:55 -!- domovod [~domovod@176.196.122.197] has quit [Ping timeout: 268 seconds] 18:58 -!- CheckMyBrain [uid559926@id-559926.tinside.irccloud.com] has joined #openbsd 19:00 -!- rawgreaze [~rawgreaze@user/rawgreaze] has quit [Quit: ZNC 1.8.2 - https://znc.in] 19:07 -!- rawgreaze [~rawgreaze@user/rawgreaze] has joined #openbsd 19:12 -!- amnesiac [~amnesiac@85.236.190.173] has joined #openbsd 19:14 -!- format_c [~format_c@2a02:b98:f181:4094:f550:7488:2d5:5ffa] has quit [Quit: format_c] 19:14 -!- amnesiac [~amnesiac@85.236.190.173] has quit [Remote host closed the connection] 19:15 < ssm_> update, my rc.local is being read correctly after fixing perms 19:15 -!- gbowne1 [~gbowne1@97-113-92-242.tukw.qwest.net] has joined #openbsd 19:22 -!- puffybuf [~puffy@user/puffybuf] has joined #openbsd 19:23 -!- djhankb [~djhankb@208.113.164.68] has quit [Remote host closed the connection] 19:23 -!- ClaudioM [claudiom@tilde.institute] has quit [Quit: leaving] 19:28 -!- kdc [~kdc@user/kdc] has quit [Quit: Leaving] 19:29 -!- bsd4me [~bsduser@user/bsd4me] has joined #openbsd 19:30 -!- ficonni [~ficonni@46.235.98.21] has quit [Quit: Lost terminal] 19:36 -!- jacobk [~quassel@utdpat241055.utdallas.edu] has quit [Ping timeout: 240 seconds] 19:37 -!- shdw [~shdw@static.218.156.216.95.clients.your-server.de] has quit [Quit: connection reset by purr] 19:38 -!- chiselfuse [~chiselfus@user/chiselfuse] has quit [Remote host closed the connection] 19:39 -!- lac [~lac@ool-4578e644.dyn.optonline.net] has quit [Ping timeout: 260 seconds] 19:39 -!- chiselfuse [~chiselfus@user/chiselfuse] has joined #openbsd 19:42 -!- adig [~default@109.166.139.25] has quit [Read error: Connection reset by peer] 19:44 -!- shdw [~shdw@static.218.156.216.95.clients.your-server.de] has joined #openbsd 19:45 -!- jacobk [~quassel@64.189.201.150] has joined #openbsd 19:49 -!- ublx [~ublx@user/ublx] has joined #openbsd 19:49 -!- feriman_ [~feriman@user/feriman] has quit [Ping timeout: 256 seconds] 19:49 -!- user71 [~user71@2001:1530:1011:6605:1e6f:65ff:fe88:557f] has quit [Quit: Leaving] 19:50 -!- memset [~memset@gateway/tor-sasl/memset] has quit [Remote host closed the connection] 19:51 -!- memset [~memset@gateway/tor-sasl/memset] has joined #openbsd 19:54 -!- vezhlys [~vezhlys@213.159.57.238] has joined #openbsd 19:58 -!- martian67 [~martian67@user/meow/martian67] has quit [Remote host closed the connection] 19:58 -!- lep [~lep@94.31.85.133] has quit [Ping timeout: 255 seconds] 19:58 -!- martian67 [~martian67@user/meow/martian67] has joined #openbsd 19:59 -!- shdw [~shdw@static.218.156.216.95.clients.your-server.de] has quit [Quit: connection reset by purr] 20:00 -!- djhankb [~djhankb@208.113.164.68] has joined #openbsd 20:00 -!- rawgreaze [~rawgreaze@user/rawgreaze] has quit [Ping timeout: 246 seconds] 20:01 -!- cmburn [~cmburn@67-220-26-83.fttp.usinternet.com] has quit [Quit: Leaving.] 20:01 -!- shiranaihito_ [~shiranaih@ppp-58-11-158-174.revip2.asianet.co.th] has quit [Quit: My Mac has gone to sleep. ZZZzzz…] 20:02 -!- shdw [~shdw@static.218.156.216.95.clients.your-server.de] has joined #openbsd 20:03 -!- rawgreaze [~rawgreaze@user/rawgreaze] has joined #openbsd 20:06 -!- jlmk [~jlmk@user/jlmk] has joined #openbsd 20:12 -!- absc [~absc@213.55.240.29] has joined #openbsd 20:12 -!- desnudopenguino [~Thunderbi@c-73-157-16-238.hsd1.wa.comcast.net] has quit [Ping timeout: 264 seconds] 20:15 -!- desnudopenguino [~Thunderbi@c-73-157-16-238.hsd1.wa.comcast.net] has joined #openbsd 20:15 < zorz> /// 20:15 -!- zorz [~zorz@user/zorz] has quit [Quit: Lost terminal] 20:16 -!- zorz [~zorz@user/zorz] has joined #openbsd 20:21 -!- jfsimon1981 [~jfsimon19@78.155.142.228] has quit [Remote host closed the connection] 20:21 -!- jfsimon1981 [~jfsimon19@78.155.142.228] has joined #openbsd 20:22 -!- n8n [n8n@user/n8n] has joined #openbsd 20:25 -!- ikarso [uid475540@id-475540.tinside.irccloud.com] has quit [Quit: Connection closed for inactivity] 20:28 -!- sonya [~nologin@gateway/tor-sasl/sonya] has joined #openbsd 20:30 < echelon> so openbsd has no pre-packaged pgp utils? 20:30 < echelon> part of the base image, i mean 20:31 < sibiria> nope 20:32 < echelon> ok, maybe i'll write my own 20:32 < thrig> signify got written rather than using PGP 20:33 < echelon> yeah, i was curious why they didn't just use pgp to verify 20:34 < GnarledHorn> complexity, size of codebase, bells and whistles 20:34 < thrig> http://www.openbsd.org/papers/bsdcan-signify.html 20:35 -!- djhankb [~djhankb@208.113.164.68] has quit [Remote host closed the connection] 20:35 -!- djhankb [~djhankb@208.113.164.68] has joined #openbsd 20:37 -!- format_c [~format_c@2a02:b98:f181:4094:f550:7488:2d5:5ffa] has joined #openbsd 20:42 -!- finkfox [~finkfox@user/finkfox] has joined #openbsd 20:43 -!- zorz [~zorz@user/zorz] has quit [Quit: Lost terminal] 20:43 -!- geekthattweaks [uid433447@user/geekthattweaks] has joined #openbsd 20:44 -!- zorz [~zorz@user/zorz] has joined #openbsd 20:46 -!- jas-maelstrom [~jas@2600:8803:7685:4e00::ffdc] has quit [Remote host closed the connection] 20:50 -!- bsd4me [~bsduser@user/bsd4me] has quit [Quit: leaving] 20:52 -!- Guest81 [~Guest81@2001:bc8:1640:523:dc00:ff:fe11:6be5] has joined #openbsd 20:53 -!- sonya [~nologin@gateway/tor-sasl/sonya] has quit [Remote host closed the connection] 20:54 -!- sonya [~nologin@gateway/tor-sasl/sonya] has joined #openbsd 20:57 -!- lavaball [~Melissa@31.204.155.215] has quit [Remote host closed the connection] 20:58 -!- bsd4me [~bsduser@user/bsd4me] has joined #openbsd 20:58 -!- format_c [~format_c@2a02:b98:f181:4094:f550:7488:2d5:5ffa] has quit [Quit: format_c] 20:59 -!- jacobk [~quassel@64.189.201.150] has quit [Ping timeout: 268 seconds] 21:00 -!- sergiomiguelrp__ [~quassel@190.123.237.219] has joined #openbsd 21:01 -!- GnarledHorn [~GnarledHo@c-67-174-30-57.hsd1.fl.comcast.net] has quit [Remote host closed the connection] 21:01 -!- Guest81 [~Guest81@2001:bc8:1640:523:dc00:ff:fe11:6be5] has quit [Quit: Client closed] 21:01 -!- thddx [~devon@tilde.town] has quit [Quit: WeeChat 3.5] 21:08 -!- CrashOverride [~strcat@p57b4b696.dip0.t-ipconnect.de] has quit [Ping timeout: 260 seconds] 21:08 -!- jacobk [~quassel@129.110.242.224] has joined #openbsd 21:08 -!- djhankb [~djhankb@208.113.164.68] has quit [Remote host closed the connection] 21:09 -!- djhankb [~djhankb@208.113.164.68] has joined #openbsd 21:11 -!- chiselfuse [~chiselfus@user/chiselfuse] has quit [Remote host closed the connection] 21:12 -!- chiselfuse [~chiselfus@user/chiselfuse] has joined #openbsd 21:12 -!- zetef [~quassel@5.2.182.98] has joined #openbsd 21:16 -!- psydroid [~psydroid@user/psydroid] has quit [Quit: KVIrc 5.0.0 Aria http://www.kvirc.net/] 21:16 -!- psydroid [~psydroid@user/psydroid] has joined #openbsd 21:17 -!- sunwind [~paradox@172.49.6.51.dyn.plus.net] has quit [Ping timeout: 260 seconds] 21:18 -!- miojo [~miojo@187.19.173.226] has quit [Remote host closed the connection] 21:19 -!- miojo [~miojo@187.19.173.226] has joined #openbsd 21:21 -!- kaisersosse [~kaisersos@user/kaisersosse] has quit [Ping timeout: 255 seconds] 21:23 -!- dam64 [~dam64@about/aquilenet/vodoo/dam64] has quit [Excess Flood] 21:24 -!- dam64 [~dam64@about/aquilenet/vodoo/dam64] has joined #openbsd 21:28 -!- dam64 [~dam64@about/aquilenet/vodoo/dam64] has quit [Excess Flood] 21:28 -!- dam64 [~dam64@about/aquilenet/vodoo/dam64] has joined #openbsd 21:29 -!- sunwind [~paradox@gateway/vpn/pia/sunwind] has joined #openbsd 21:29 -!- Nahual [~Nahual@centos/community/Nahual] has quit [Quit: Leaving.] 21:33 -!- dam64 [~dam64@about/aquilenet/vodoo/dam64] has quit [Client Quit] 21:33 -!- psydroid [~psydroid@user/psydroid] has quit [Quit: KVIrc 5.0.0 Aria http://www.kvirc.net/] 21:35 -!- ublx [~ublx@user/ublx] has quit [Ping timeout: 272 seconds] 21:37 -!- dam64 [~dam64@about/aquilenet/vodoo/dam64] has joined #openbsd 21:39 -!- dam64 [~dam64@about/aquilenet/vodoo/dam64] has quit [Client Quit] 21:40 -!- dam64 [~dam64@about/aquilenet/vodoo/dam64] has joined #openbsd 21:42 -!- djhankb [~djhankb@208.113.164.68] has quit [Remote host closed the connection] 21:43 -!- djhankb [~djhankb@208.113.164.68] has joined #openbsd 21:43 -!- dam64 [~dam64@about/aquilenet/vodoo/dam64] has quit [Client Quit] 21:44 -!- dam64 [~dam64@about/aquilenet/vodoo/dam64] has joined #openbsd 21:49 -!- memset [~memset@gateway/tor-sasl/memset] has quit [Remote host closed the connection] 21:49 -!- memset [~memset@gateway/tor-sasl/memset] has joined #openbsd 21:50 -!- jas-maelstrom [~jas@2600:8803:7685:4e00::4bd6] has joined #openbsd 21:50 < unpx> Hello there, I'm trying to dual boot OpenBSD (currently 75), with Windows 10. I managed to find most information about this, but I'm now stuck at boot since I couldn't install the correct firmware 21:51 -!- jfsimon1981 [~jfsimon19@78.155.142.228] has quit [Remote host closed the connection] 21:51 < unpx> I'm on a Dell Precision 5530, that has just one nvme slot, that is recognized as sd0 21:51 < unpx> To recognize the install75.img I have to unplug and replug the usb stick 21:52 < unpx> I created the partition for openbsd install and installation run smootly 21:52 < vortexx> you're going to need a boot manager for that 21:52 < unpx> Now the crucial part is installing firmware since iwm is not recognized correctly 21:52 < vortexx> refind probably is easiest 21:52 < unpx> vortexx: I'm stuck even before that 21:53 < unpx> My usb stick has the .img flashed in the first MB of this 4GB stick, then I created a FAT32 partition with the firmware in it 21:53 < unpx> but I can't mount that partitiob 21:53 < unpx> Is the only solution to bring another usb stick? 21:53 < vortexx> unpx: basically you copy the BOOTX64.EFI to the EFI partition (better to create a subdir called OpenBSD) 21:54 < vortexx> then point the boot manager at it 21:54 -!- scain [~scain@2603:8080:b104:4e00:45cf:678b:a7f:b897] has quit [Quit: Konversation terminated!] 21:54 < unpx> Or is there some magic combination of fdisk/disklabel so I can mount the second partition of my usb install disk? 21:54 < unpx> vortexx: please read carefully 21:55 < unpx> My problem is that I can't use wifi on laptop, so I bring innthe same usb stick two partitions, one is the install75.img, the other is a FAT32 partition 21:55 < uwharrie> where are you getting that procedure for firmware handling from? 21:56 < unpx> I can see them from fdisk, but disklabel can't see the FAT32 disk 21:56 < vortexx> unpx: are you trying to install to a USB disk or to the internal drive? 21:56 < unpx> uwharrie: I made it up since I do not have another OpenBSD to forge an img with firmware I need 21:56 < unpx> vortexx: to the internal drive 21:56 < vortexx> mount_msdos will mount the partition, it'll be sdXi 21:56 -!- gman999 [~GMan999@user/gman999] has quit [Quit: WeeChat 4.0.4] 21:57 < unpx> vortexx: I only have a EFI partition there 21:58 < unpx> To recap 21:58 < unpx> USB with install75.img in the first partition and FAT32 with firmware in the second 21:59 < unpx> Launch bsd.rd and can't see second partition of USB stick with firmeare I need 21:59 < unpx> Does this require a second USB stick? 21:59 < vortexx> doesn't matter, all you need is install75.img to install 22:00 < vortexx> post install you can add the firmware once booted into the OS 22:00 -!- meros67817602046 [~meros@78-72-66-176-no600.tbcn.telia.com] has quit [Read error: Connection reset by peer] 22:00 -!- miojo [~miojo@187.19.173.226] has quit [Remote host closed the connection] 22:00 -!- meros67817602046 [~meros@78-72-66-176-no600.tbcn.telia.com] has joined #openbsd 22:02 -!- absc [~absc@213.55.240.29] has quit [Quit: Got to go. irctk 1.1.0-alpha] 22:05 < echelon> how do i keep ports up to date? 22:05 -!- zimmer__ [~zimmer@user/zimmer] has quit [Ping timeout: 246 seconds] 22:06 < unpx> vortexx: it won't wirhout an internet connection 22:06 < unpx> silly 22:06 -!- jacobk [~quassel@129.110.242.224] has quit [Ping timeout: 260 seconds] 22:07 < fro> what 22:07 < uwharrie> echelon: using cvs 22:08 -!- eirian [eirian@user/eirian] has quit [Ping timeout: 260 seconds] 22:08 -!- okidoki [~okidoki@irc.ink] has quit [Read error: Connection reset by peer] 22:08 -!- okidoki [~okidoki@irc.ink] has joined #openbsd 22:10 < oldlaptop> unpx: installXX.(img|iso) do not require a network connection to install. 22:11 < oldlaptop> (You might want one in the fairly uncommon case where you have a site set or something. If you had such a thing you probably wouldn't in the position of asking questions like this in a channel like this - and also probably wouldn't be using installXX in the first place, but never mind) 22:16 -!- djhankb [~djhankb@208.113.164.68] has quit [Remote host closed the connection] 22:17 -!- djhankb [~djhankb@208.113.164.68] has joined #openbsd 22:18 -!- cschutijser [~irc@mail.schutijser.com] has quit [Ping timeout: 264 seconds] 22:19 -!- memset [~memset@gateway/tor-sasl/memset] has quit [Remote host closed the connection] 22:19 -!- zcheng3 [~zcheng3@d108-173-21-8.abhsia.telus.net] has joined #openbsd 22:20 -!- cschutijser [~irc@mail.schutijser.com] has joined #openbsd 22:20 -!- memset [~memset@gateway/tor-sasl/memset] has joined #openbsd 22:21 -!- zetef [~quassel@5.2.182.98] has quit [Remote host closed the connection] 22:23 -!- zimmer [~zimmer@user/zimmer] has joined #openbsd 22:24 -!- finkfox [~finkfox@user/finkfox] has quit [Ping timeout: 255 seconds] 22:32 -!- vdamewood [~vdamewood@fedora/vdamewood] has joined #openbsd 22:35 -!- eirian [eirian@user/eirian] has joined #openbsd 22:47 -!- AlaskanEmily [~AlaskanEm@user/alaskanemily] has joined #openbsd 22:49 -!- xx [~xx@user/xx] has quit [Remote host closed the connection] 22:50 -!- djhankb [~djhankb@208.113.164.68] has quit [Remote host closed the connection] 22:50 -!- donofrio_ [~donofrio@c-68-40-123-196.hsd1.mi.comcast.net] has joined #openbsd 22:50 -!- djhankb [~djhankb@208.113.164.68] has joined #openbsd 22:53 -!- AlaskanEmily [~AlaskanEm@user/alaskanemily] has quit [Ping timeout: 255 seconds] 22:53 -!- adip [~adip@c159-63.icpnet.pl] has quit [Ping timeout: 246 seconds] 22:54 -!- donofrio [~donofrio@actproxy.faa.gov] has quit [Ping timeout: 252 seconds] 23:01 -!- desnudopenguino [~Thunderbi@c-73-157-16-238.hsd1.wa.comcast.net] has quit [Ping timeout: 252 seconds] 23:02 -!- gvg [~dcd@user/gvg] has quit [Ping timeout: 268 seconds] 23:03 -!- desnudopenguino [~Thunderbi@c-73-157-16-238.hsd1.wa.comcast.net] has joined #openbsd 23:04 -!- gvg_ [~dcd@user/gvg] has quit [Remote host closed the connection] 23:04 -!- gvg [~dcd@user/gvg] has joined #openbsd 23:04 -!- gvg_ [~dcd@user/gvg] has joined #openbsd 23:10 -!- jab [~user@user/jab] has joined #openbsd 23:16 -!- penne [~penne@gateway/tor-sasl/penne] has quit [Ping timeout: 260 seconds] 23:18 -!- sonya [~nologin@gateway/tor-sasl/sonya] has quit [Remote host closed the connection] 23:18 -!- jacobk [~quassel@97.77.183.162] has joined #openbsd 23:20 -!- gvg__ [~dcd@user/gvg] has joined #openbsd 23:22 -!- gvg_ [~dcd@user/gvg] has quit [Ping timeout: 268 seconds] 23:24 -!- djhankb [~djhankb@208.113.164.68] has quit [Remote host closed the connection] 23:24 -!- Bradipo [~Bradipo@50.77.44.29] has quit [Quit: Lost terminal] 23:24 -!- djhankb [~djhankb@208.113.164.68] has joined #openbsd 23:26 -!- qqq [~qqq@92.43.167.61] has quit [Remote host closed the connection] 23:26 -!- gvg_ [~dcd@user/gvg] has joined #openbsd 23:27 -!- penne [~penne@gateway/tor-sasl/penne] has joined #openbsd 23:28 -!- gvg [~dcd@user/gvg] has quit [Ping timeout: 268 seconds] 23:30 -!- jacobk [~quassel@97.77.183.162] has quit [Ping timeout: 260 seconds] 23:32 -!- gvg_ [~dcd@user/gvg] has quit [Ping timeout: 268 seconds] 23:32 -!- gvg__ [~dcd@user/gvg] has quit [Ping timeout: 268 seconds] 23:36 -!- penne [~penne@gateway/tor-sasl/penne] has quit [Remote host closed the connection] 23:37 -!- penne [~penne@gateway/tor-sasl/penne] has joined #openbsd 23:43 -!- tf [~tf@user/tf] has quit [Quit: tf] 23:44 -!- tf [~tf@user/tf] has joined #openbsd 23:45 -!- Xenguy [~Xenguy@user/xenguy] has joined #openbsd 23:47 -!- geekthattweaks [uid433447@user/geekthattweaks] has quit [Quit: Connection closed for inactivity] 23:50 -!- [0x1eef_] [~0x1eef@al-quran.reflectslight.io] has joined #openbsd 23:50 -!- weres [~libera@konyahin.xyz] has quit [Ping timeout: 255 seconds] 23:51 -!- kon4ru [~libera@konyahin.xyz] has joined #openbsd 23:52 -!- [0x1eef] [~0x1eef@al-quran.reflectslight.io] has quit [Ping timeout: 256 seconds] 23:54 -!- zcheng3 [~zcheng3@d108-173-21-8.abhsia.telus.net] has quit [Ping timeout: 260 seconds] 23:58 -!- djhankb [~djhankb@208.113.164.68] has quit [Remote host closed the connection] 23:58 -!- djhankb [~djhankb@208.113.164.68] has joined #openbsd --- Log closed Wed Apr 17 00:00:48 2024