--- Log opened Thu Apr 06 00:00:36 2023 00:00 < Zyxer> oldlaptop: Thanks I'll check it out 00:01 < Zyxer> My usb shows up as Ideazon, is that some OpenBSD audio or USB device handler or driver or layer or something? 00:06 < jf> ok, you *might* have a shortcut in sndiod. https://cvsweb.openbsd.org/src/usr.bin/sndiod/dsp.h 00:06 < jf> that #define ADATA_BITS 24 in dsp.h 00:07 < jf> there is some ifdef code for handling forced 16 bit mode 00:07 < jf> so if you want to try something less drastic than the kernel, try compiling a sndiod with ADATA_BITS 16 00:07 < Zyxer> I got actually more info on OpenBSD than linux, linux got error on requesting device descriptors when lsusb while OpenBSD had no issue with that. 00:07 < Zyxer> https://clbin.com/EaMVL 00:08 < Zyxer> jf: But I need 24 bits for the audio? Only 16 is gonna make it only be mic I think 00:08 < jf> usb device descriptors are .. quirky. sometimes the devices get developed mostly on windows boxes and pass the windows drivers, but are not "correct" device desriptors. 00:09 < Zyxer> Ah, I see. 00:09 < jf> yeah, you want 24 for output and 16 for input (according to that pastebin) 00:09 -!- m3a [~m3a@104.158.106.178] has quit [Ping timeout: 248 seconds] 00:09 -!- akash [~akash@103.175.101.42] has joined #openbsd 00:09 < jf> (look for bBitResolution in the pastbin)( 00:09 -!- akash [~akash@103.175.101.42] has quit [Remote host closed the connection] 00:09 < Zyxer> Yes, I saw that 00:10 -!- akash [~akash@103.175.101.42] has joined #openbsd 00:10 -!- akash [~akash@103.175.101.42] has quit [Remote host closed the connection] 00:10 -!- akash [~akash@103.175.101.42] has joined #openbsd 00:10 -!- akash [~akash@103.175.101.42] has quit [Read error: Connection reset by peer] 00:11 -!- akash [~akash@103.175.101.42] has joined #openbsd 00:11 < Zyxer> So if I compile sndiod with ADATA_BITS 16 won't it make my headset unable to play sound? 00:12 -!- tozhu [~tozhu@218.89.253.2] has quit [Quit: tozhu] 00:13 < jf> not sure :) 00:14 < jf> where i'm "puzzled" is why the device reports 16 bit for the mic, but that info does not reach sndiod (via the uaudio device code). i .. expected it to reach sndiod 00:14 < jf> (not done any usb audio work for .. years .. so i'm very rusty) 00:14 < pardis> I suspect it will make no difference whatsoever 00:14 < Zyxer> Yea well it somehow does use 16bit when I open audio device as only rec 00:14 < pardis> I believe ADATA_BITS is only used for sndiod's internal audio processing and not the mode it opens the hardware with 00:15 < pardis> but I could be wrong 00:15 -!- gnucode [~joshua@user/jab] has joined #openbsd 00:15 -!- akash [~akash@103.175.101.42] has quit [Ping timeout: 250 seconds] 00:15 < Zyxer> sndiod -f rsnd/1 -m rec -d -d and then I can record using microphone. Can't play any sound tho' 00:16 < jf> i keep going back to that line from a day ago ( "aucat0: 48000Hz, s24le4lsb, rec 0:1, 20 blocks of 480 frames" ) and wondering why it isn't s16 00:16 -!- nyah [~nyah@cpc75709-york6-2-0-cust260.7-1.cable.virginm.net] has quit [Quit: leaving] 00:17 < jf> pardis looks like used for clipping (dsp.c) curiously the DEFAULT_BITS is defined as 16, so i'm back wondering about that sndiod logline about the aucat connection. maybe i should be looking at if / why aucat is asking sndiod for 24 00:17 < Zyxer> Yea, and when I specify s16 sndiod still reports s24 00:17 -!- morte_ [~user@user/monkey/x-0691028] has quit [Remote host closed the connection] 00:18 < Zyxer> I think pardis is onto something, what we have tried has been changing bit on software level not hwo it communicates with the actual device 00:18 < pardis> this is why I suggested using the hardware audio device directly and avoiding sndiod to try to narrow down the problem 00:19 < Zyxer> Yes but I failed to open it the way you described, aucat refused (didn't find device rsnd/1) no matter how I tried to go about it 00:20 < Zyxer> Unless I was not suppose to run sndiod at the same time 00:21 -!- xtile [~terrain@c-24-56-224-169.customer.broadstripe.net] has joined #openbsd 00:22 -!- morte_ [~user@user/monkey/x-0691028] has joined #openbsd 00:22 < jf> aucat wants to communicate via sndio - is how it is built 00:23 < jf> and aucat does seem to be wired to connect to sndio at 24 bits ( "par.bits = ADATA_BITS" in dev_open in aucat.c) 00:23 < jf> so that explains the 24 bit connection from aucat to sndio 00:23 < jf> but not the rest of the path 00:23 < jf> i agree with pardis, but not sure how to isolate the device given the sndio setup 00:23 -!- mikess [~sam@user/mikess] has quit [Ping timeout: 268 seconds] 00:24 -!- jak3b [~jak3b@2601:645:8085:b6d0::b962] has joined #openbsd 00:25 < Zyxer> I get unsupported audio params trying to record with aucat... hmmm 00:25 < Zyxer> How can I find the audio parameters? 00:27 < jf> forcing sndiod into 16 bit with "sndiod -f rsnd/1 -e s16 -d -d" didn't work did it - can't find in scrollback. don't mind if sndiod<->aucat gets resampled to 24 but want sndiod to only ask device for 16. 00:31 < Zyxer> Nope, aucat tries with s24le4lsb and snd is opened as s24le3 00:31 < Zyxer> Even when I specify -e s16 in aucat 00:32 < jf> it is not as simple as "audioctl -f /dev/audio1 encoding=s16" is it? 00:32 < Zyxer> I'm not really sure how I can access the audio device directly, aucat just gives unsupported params 00:33 -!- chanceyan [~chanceyan@user/chanceyan] has joined #openbsd 00:33 < jf> (or /dev/audio0 depending on what device it is) 00:33 < Zyxer> it is audio1 00:33 < Zyxer> jf: No it refuses, absolutely refuses 00:34 < Zyxer> laptopfoo# audioctl -f /dev/audio1 encoding=s16 00:34 < Zyxer> encoding: s24le3 -> s24le3y 00:34 < Zyxer> T-T 00:34 -!- jak3b [~jak3b@2601:645:8085:b6d0::b962] has quit [Quit: WeeChat 3.8] 00:35 -!- h0rror [~h0rror@user/h0rror] has quit [Ping timeout: 250 seconds] 00:36 * jf is kinda stuck here 00:36 < Zyxer> I think this may be worth bug reporting since the other guy (albeit in 6.4 or something) had same issue. Maybe this is bugg on USB headsets? 00:36 < thrig> the USB stack could use more work 00:36 * jf it is a bit like a device quirk (which get built into the code under dev), but uaudio doesn't have a quirks section 00:37 -!- monkey_ [~user@user/monkey/x-0691028] has joined #openbsd 00:37 < jf> thrig yes .. sorry about that .. 00:39 < jf> if_ure.c 1.18 was me and ehci.c 1.3 was me a millenia ago. i don't know the audio side of the kernel at all. 00:40 -!- Trigon [~reuben@144.39.114.115] has joined #openbsd 00:40 < Zyxer> Welp, workaround is going back to USB audio card and use wired headphones and separate mic. Assuming it works. I haven't tried it and cannot try it yet since well yea, I am not home were my soundcard exists. 00:42 -!- h0rror [~h0rror@user/h0rror] has joined #openbsd 00:44 < jf> Zyxer i'm all out of suggestions at this point. including the lsusb -v output and a complete dmesg would help. looks like Klemens Nanni was the last couple of commits 00:45 -!- mikess [~sam@user/mikess] has joined #openbsd 00:47 < Zyxer> jf: ok, I will add lsusb -v (specifying device, no need for the other stuff it reports) and complete dmesg. As well as what I have tried and the errors. 00:47 < Zyxer> jf: Thanks for taking your time to help me debugg. :) 00:48 < jf> looks like nothing changed in uaudio.c between 7.2 and 7.3 either, so no happy surprises from 7.3 next week 00:49 < jf> Zyxer happy to help. i like figuring these things out when i can. sorry i couldn't get you to a working mic on your headphones 00:51 -!- monkey_ [~user@user/monkey/x-0691028] has quit [Remote host closed the connection] 00:51 -!- mikess [~sam@user/mikess] has quit [Ping timeout: 276 seconds] 00:55 -!- morte_ [~user@user/monkey/x-0691028] has quit [Ping timeout: 250 seconds] 00:55 -!- viq|w [~viq@user/viq] has quit [Ping timeout: 265 seconds] 00:56 -!- tozhu [~tozhu@117.139.163.129] has joined #openbsd 00:57 -!- viq|w [~viq@user/viq] has joined #openbsd 01:03 -!- fifihyperbola [~fifi@83.137.6.243] has joined #openbsd 01:07 -!- williewillus [~user@user/williewillus] has joined #openbsd 01:07 -!- leo__ [~leo@arioch.leonhardt.eu] has quit [Ping timeout: 252 seconds] 01:08 -!- monkey_ [~user@user/monkey/x-0691028] has joined #openbsd 01:18 -!- Foxy_ [~fox@user/Foxy/x-8224177] has quit [Ping timeout: 265 seconds] 01:20 -!- Foxy_ [~fox@user/Foxy/x-8224177] has joined #openbsd 01:24 -!- theClaydaemon [~clay@user/thedaemon] has joined #openbsd 01:25 -!- thedaemon [~clay@user/thedaemon] has quit [Ping timeout: 255 seconds] 01:27 -!- mikess [~sam@user/mikess] has joined #openbsd 01:30 -!- ficonni [~ficonni@46.235.96.214] has quit [Remote host closed the connection] 01:33 -!- gnucode [~joshua@user/jab] has quit [Remote host closed the connection] 01:34 -!- leo_ [~leo@xdsl-195-14-199-115.nc.de] has joined #openbsd 01:34 -!- yu [~yu@user/yu] has joined #openbsd 01:37 -!- bsdguydr [~bsdguydr@user/bsdguydr] has joined #openbsd 01:38 -!- brock [~brock@209.122.210.88] has joined #openbsd 01:47 -!- inak [~justme@111-107-74-65.gci.net] has quit [Quit: Leaving] 01:55 -!- vyv [~vyv@bras-vprn-nrbaon0452w-lp130-22-76-65-6-194.dsl.bell.ca] has joined #openbsd 01:59 -!- fifihyperbola [~fifi@83.137.6.243] has quit [Read error: Connection reset by peer] 01:59 -!- fifihyperbola [~fifi@83.137.6.253] has joined #openbsd 02:02 -!- fifihyperbola [~fifi@83.137.6.253] has quit [Client Quit] 02:05 -!- chrisz [ecwdiaqgn3@195.52.157.30] has quit [Ping timeout: 265 seconds] 02:05 -!- polarian [~polarian@mail.polarian.dev] has quit [Read error: Connection reset by peer] 02:06 -!- Lucas6023 [~Lucas6023@gateway/tor-sasl/lucas6023] has quit [Ping timeout: 255 seconds] 02:06 -!- vyv [~vyv@bras-vprn-nrbaon0452w-lp130-22-76-65-6-194.dsl.bell.ca] has quit [Quit: Konversation terminated!] 02:07 -!- chrisz [mcn4ne8198@195.52.27.8] has joined #openbsd 02:07 -!- Lucas6023 [~Lucas6023@gateway/tor-sasl/lucas6023] has joined #openbsd 02:07 -!- polarian [~polarian@mail.polarian.dev] has joined #openbsd 02:13 -!- Leopold_ [~quassel@23.137.249.65] has joined #openbsd 02:16 -!- Leopold [~quassel@gateway/tor-sasl/leopold] has quit [Ping timeout: 255 seconds] 02:17 -!- travisp [~Thunderbi@173.217.198.73] has joined #openbsd 02:19 -!- Dj_Dexter [~Dark_X@186.189.86.152] has joined #openbsd 02:24 -!- ficonni [~ficonni@46.235.96.214] has joined #openbsd 02:25 -!- monkey_ [~user@user/monkey/x-0691028] has quit [Ping timeout: 255 seconds] 02:25 -!- ficonni [~ficonni@46.235.96.214] has quit [Client Quit] 02:32 -!- monkey_ [~user@user/monkey/x-0691028] has joined #openbsd 02:58 -!- reset [~reset@user/reset] has quit [Quit: reset] 03:02 -!- epony [~epony@user/epony] has quit [Ping timeout: 268 seconds] 03:03 -!- chrisz [mcn4ne8198@195.52.27.8] has quit [Ping timeout: 252 seconds] 03:05 -!- chrisz [k9y3zphb39@195.52.24.239] has joined #openbsd 03:06 -!- tiggster [~iggy@184-170-166-156.fshrinaa.metronetinc.net] has joined #openbsd 03:10 -!- fr0hike [~fr0ghike@2601:193:8300:c910:8949:66dc:c1e6:3502] has quit [Remote host closed the connection] 03:19 -!- tiggster [~iggy@184-170-166-156.fshrinaa.metronetinc.net] has quit [Ping timeout: 260 seconds] 03:31 -!- housemate [~housemate@n175-36-37-203.meb3.vic.optusnet.com.au] has quit [Remote host closed the connection] 03:32 -!- housemate [~housemate@n175-36-37-203.meb3.vic.optusnet.com.au] has joined #openbsd 03:33 -!- moldorcoder7 [~moldorcod@192.145.81.25] has quit [Ping timeout: 250 seconds] 03:35 -!- sjg [~sjg@user/sjg] has quit [Ping timeout: 248 seconds] 03:38 -!- chanceyan [~chanceyan@user/chanceyan] has quit [Ping timeout: 260 seconds] 03:42 -!- housemate [~housemate@n175-36-37-203.meb3.vic.optusnet.com.au] has quit [Remote host closed the connection] 03:43 -!- housemate [~housemate@n175-36-37-203.meb3.vic.optusnet.com.au] has joined #openbsd 03:43 -!- bilegeek [~bilegeek@2600:1008:b00f:d1cc:217f:c090:92db:4854] has joined #openbsd 03:43 -!- leo_ [~leo@xdsl-195-14-199-115.nc.de] has quit [Ping timeout: 255 seconds] 03:43 -!- leo_ [~leo@arioch.leonhardt.eu] has joined #openbsd 03:44 -!- byteskeptical [~amnesia@user/byteskeptical] has joined #openbsd 03:45 -!- morte_ [~user@user/monkey/x-0691028] has joined #openbsd 03:46 -!- epony [~epony@user/epony] has joined #openbsd 03:47 -!- bilegeek [~bilegeek@2600:1008:b00f:d1cc:217f:c090:92db:4854] has quit [Client Quit] 03:49 -!- housemate [~housemate@n175-36-37-203.meb3.vic.optusnet.com.au] has quit [Remote host closed the connection] 03:49 -!- housemate [~housemate@n175-36-37-203.meb3.vic.optusnet.com.au] has joined #openbsd 03:52 -!- sjg [~sjg@user/sjg] has joined #openbsd 03:53 -!- housemate [~housemate@n175-36-37-203.meb3.vic.optusnet.com.au] has quit [Remote host closed the connection] 03:54 -!- housemate [~housemate@n175-36-37-203.meb3.vic.optusnet.com.au] has joined #openbsd 03:58 -!- mikess [~sam@user/mikess] has quit [Ping timeout: 255 seconds] 04:02 -!- housemate [~housemate@n175-36-37-203.meb3.vic.optusnet.com.au] has quit [Remote host closed the connection] 04:02 -!- housemate [~housemate@n175-36-37-203.meb3.vic.optusnet.com.au] has joined #openbsd 04:03 -!- monkey_ [~user@user/monkey/x-0691028] has quit [Quit: ERC 5.4 (IRC client for GNU Emacs 28.2)] 04:03 -!- morte_` [~user@190.104.116.153] has joined #openbsd 04:04 -!- morte_` [~user@190.104.116.153] has quit [Remote host closed the connection] 04:04 -!- seninha [~seninha@user/seninha] has joined #openbsd 04:04 -!- housemate [~housemate@n175-36-37-203.meb3.vic.optusnet.com.au] has quit [Remote host closed the connection] 04:04 -!- zimmer [~zimmer@user/zimmer] has quit [Ping timeout: 255 seconds] 04:05 -!- housemate [~housemate@n175-36-37-203.meb3.vic.optusnet.com.au] has joined #openbsd 04:05 -!- sjg [~sjg@user/sjg] has quit [Ping timeout: 255 seconds] 04:06 -!- housemate [~housemate@n175-36-37-203.meb3.vic.optusnet.com.au] has quit [Remote host closed the connection] 04:06 -!- housemate [~housemate@n175-36-37-203.meb3.vic.optusnet.com.au] has joined #openbsd 04:06 -!- morte_ [~user@user/monkey/x-0691028] has quit [Ping timeout: 276 seconds] 04:08 -!- bradd [~quassel@user/bradd] has joined #openbsd 04:09 -!- housemate [~housemate@n175-36-37-203.meb3.vic.optusnet.com.au] has quit [Remote host closed the connection] 04:09 -!- housemate [~housemate@n175-36-37-203.meb3.vic.optusnet.com.au] has joined #openbsd 04:12 -!- sjg [~sjg@user/sjg] has joined #openbsd 04:13 -!- toxic0 [~toxic0@gateway/vpn/pia/toxic0] has quit [Remote host closed the connection] 04:20 -!- mogad0n [~mogad0n@user/mogad0n] has quit [Quit: /|\] 04:22 -!- housemate [~housemate@n175-36-37-203.meb3.vic.optusnet.com.au] has quit [Remote host closed the connection] 04:23 -!- ikarso [uid475540@id-475540.tinside.irccloud.com] has joined #openbsd 04:24 -!- housemate [~housemate@n175-36-37-203.meb3.vic.optusnet.com.au] has joined #openbsd 04:25 -!- solo [~solo@c-71-233-184-94.hsd1.ct.comcast.net] has joined #openbsd 04:25 -!- housemate [~housemate@n175-36-37-203.meb3.vic.optusnet.com.au] has quit [Remote host closed the connection] 04:26 -!- housemate [~housemate@n175-36-37-203.meb3.vic.optusnet.com.au] has joined #openbsd 04:31 -!- mogad0n [~mogad0n@user/mogad0n] has joined #openbsd 04:33 -!- reset [~reset@user/reset] has joined #openbsd 04:41 -!- Noisytoot [~noisytoot@sourcehut/user/noisytoot] has quit [Ping timeout: 246 seconds] 04:44 -!- Noisytoot [~noisytoot@sourcehut/user/noisytoot] has joined #openbsd 04:56 -!- Noisytoot [~noisytoot@sourcehut/user/noisytoot] has quit [Ping timeout: 248 seconds] 04:57 -!- vortexx [~nothing@user/vortexx] has quit [Ping timeout: 255 seconds] 04:58 -!- chiselfuse [~chiselfus@user/chiselfuse] has quit [Remote host closed the connection] 04:58 -!- chiselfuse [~chiselfus@user/chiselfuse] has joined #openbsd 05:01 -!- Noisytoot [~noisytoot@sourcehut/user/noisytoot] has joined #openbsd 05:04 -!- hugohagogo [~cleber@user/hugohagogo] has quit [Ping timeout: 248 seconds] 05:04 -!- thesaint [~meh@c-73-63-117-136.hsd1.ut.comcast.net] has quit [Remote host closed the connection] 05:04 -!- hugohagogo [~cleber@2804:1b4c::4] has joined #openbsd 05:07 -!- seninha [~seninha@user/seninha] has quit [Ping timeout: 260 seconds] 05:08 -!- solo [~solo@c-71-233-184-94.hsd1.ct.comcast.net] has quit [Read error: Connection reset by peer] 05:09 -!- dax [~dax@lykos/dax] has left #openbsd [] 05:12 -!- housemate [~housemate@n175-36-37-203.meb3.vic.optusnet.com.au] has quit [Remote host closed the connection] 05:14 -!- housemate [~housemate@n175-36-37-203.meb3.vic.optusnet.com.au] has joined #openbsd 05:15 -!- housemate [~housemate@n175-36-37-203.meb3.vic.optusnet.com.au] has quit [Remote host closed the connection] 05:16 -!- housemate [~housemate@n175-36-37-203.meb3.vic.optusnet.com.au] has joined #openbsd 05:18 -!- typicat [~me0w@user/typicat] has joined #openbsd 05:20 -!- xtile [~terrain@c-24-56-224-169.customer.broadstripe.net] has quit [Quit: sleep] 05:20 -!- bgs [~bgs@212-85-160-171.dynamic.telemach.net] has joined #openbsd 05:20 -!- thumbs [1000@apache/committer/thumbs] has quit [Ping timeout: 250 seconds] 05:21 -!- housemate [~housemate@n175-36-37-203.meb3.vic.optusnet.com.au] has quit [Remote host closed the connection] 05:21 -!- housemate [~housemate@n175-36-37-203.meb3.vic.optusnet.com.au] has joined #openbsd 05:25 -!- Noisytoot [~noisytoot@sourcehut/user/noisytoot] has quit [Quit: ZNC 1.8.2 - https://znc.in] 05:28 -!- Noisytoot [~noisytoot@sourcehut/user/noisytoot] has joined #openbsd 05:29 -!- housemate [~housemate@n175-36-37-203.meb3.vic.optusnet.com.au] has quit [Remote host closed the connection] 05:29 -!- housemate [~housemate@n175-36-37-203.meb3.vic.optusnet.com.au] has joined #openbsd 05:30 -!- typicat [~me0w@user/typicat] has quit [Ping timeout: 260 seconds] 05:37 -!- Noisytoot [~noisytoot@sourcehut/user/noisytoot] has quit [Quit: ZNC 1.8.2 - https://znc.in] 05:39 -!- Noisytoot [~noisytoot@sourcehut/user/noisytoot] has joined #openbsd 05:43 -!- paper__ [~paper_@user/paper] has quit [Ping timeout: 260 seconds] 05:43 -!- horrad [~horrad@217.91.26.253] has joined #openbsd 05:43 -!- todd [~todd@gateway/tor-sasl/toddf] has quit [Remote host closed the connection] 05:44 -!- chanceyan [~chanceyan@user/chanceyan] has joined #openbsd 05:44 -!- housemate [~housemate@n175-36-37-203.meb3.vic.optusnet.com.au] has quit [Remote host closed the connection] 05:45 -!- housemate [~housemate@n175-36-37-203.meb3.vic.optusnet.com.au] has joined #openbsd 05:48 -!- gbowne1 [~gbowne1@97-113-64-142.tukw.qwest.net] has quit [Quit: Leaving] 05:49 -!- todd [~todd@gateway/tor-sasl/toddf] has joined #openbsd 05:52 -!- raspbeguy [~raspbeguy@wireguard/tunneler/raspbeguy] has left #openbsd [Disconnected: Replaced by new connection] 05:54 -!- housemate [~housemate@n175-36-37-203.meb3.vic.optusnet.com.au] has quit [Remote host closed the connection] 05:54 -!- Noisytoot [~noisytoot@sourcehut/user/noisytoot] has quit [Quit: ZNC 1.8.2 - https://znc.in] 05:54 -!- housemate [~housemate@n175-36-37-203.meb3.vic.optusnet.com.au] has joined #openbsd 05:55 -!- reset [~reset@user/reset] has quit [Quit: reset] 05:57 -!- Noisytoot [~noisytoot@sourcehut/user/noisytoot] has joined #openbsd 05:59 -!- housemate [~housemate@n175-36-37-203.meb3.vic.optusnet.com.au] has quit [Remote host closed the connection] 05:59 -!- housemate [~housemate@n175-36-37-203.meb3.vic.optusnet.com.au] has joined #openbsd 06:01 -!- housemate [~housemate@n175-36-37-203.meb3.vic.optusnet.com.au] has quit [Remote host closed the connection] 06:01 -!- housemate [~housemate@n175-36-37-203.meb3.vic.optusnet.com.au] has joined #openbsd 06:02 -!- akash [~akash@103.133.123.106] has joined #openbsd 06:02 -!- srfsh [~srfsh@user/srfsh] has quit [Ping timeout: 255 seconds] 06:06 -!- akash [~akash@103.133.123.106] has quit [Ping timeout: 248 seconds] 06:06 -!- feriman [~feriman@188.163.114.49] has joined #openbsd 06:12 -!- seoul_man [~meh@user/seoul-man/x-5066766] has quit [Ping timeout: 265 seconds] 06:16 -!- edthix [~Thunderbi@178.82.50.60.klj05-home.tm.net.my] has joined #openbsd 06:16 -!- housemate [~housemate@n175-36-37-203.meb3.vic.optusnet.com.au] has quit [Remote host closed the connection] 06:17 -!- housemate [~housemate@n175-36-37-203.meb3.vic.optusnet.com.au] has joined #openbsd 06:19 -!- srfsh [~srfsh@user/srfsh] has joined #openbsd 06:20 -!- Noisytoot [~noisytoot@sourcehut/user/noisytoot] has quit [Ping timeout: 250 seconds] 06:22 -!- housemate [~housemate@n175-36-37-203.meb3.vic.optusnet.com.au] has quit [Remote host closed the connection] 06:23 -!- housemate [~housemate@n175-36-37-203.meb3.vic.optusnet.com.au] has joined #openbsd 06:26 -!- housemate [~housemate@n175-36-37-203.meb3.vic.optusnet.com.au] has quit [Remote host closed the connection] 06:27 -!- housemate [~housemate@n175-36-37-203.meb3.vic.optusnet.com.au] has joined #openbsd 06:28 -!- Noisytoot [~noisytoot@sourcehut/user/noisytoot] has joined #openbsd 06:29 -!- feriman [~feriman@188.163.114.49] has quit [Quit: leaving] 06:33 -!- _adig [~adi@m.self.onl] has joined #openbsd 06:35 -!- bgs [~bgs@212-85-160-171.dynamic.telemach.net] has quit [Remote host closed the connection] 06:36 -!- srfsh [~srfsh@user/srfsh] has quit [Ping timeout: 255 seconds] 06:38 -!- housemate [~housemate@n175-36-37-203.meb3.vic.optusnet.com.au] has quit [Remote host closed the connection] 06:38 -!- housemate [~housemate@n175-36-37-203.meb3.vic.optusnet.com.au] has joined #openbsd 06:39 -!- _adig [~adi@m.self.onl] has quit [Remote host closed the connection] 06:39 -!- _adig [~adi@m.self.onl] has joined #openbsd 06:40 -!- _adig [~adi@m.self.onl] has quit [Remote host closed the connection] 06:41 -!- housemate [~housemate@n175-36-37-203.meb3.vic.optusnet.com.au] has quit [Remote host closed the connection] 06:42 -!- williewillus [~user@user/williewillus] has quit [Quit: ERC 5.4 (IRC client for GNU Emacs 28.2)] 06:42 -!- housemate [~housemate@n175-36-37-203.meb3.vic.optusnet.com.au] has joined #openbsd 06:44 -!- geekthattweaks [uid433447@user/geekthattweaks] has quit [Quit: Connection closed for inactivity] 06:49 -!- housemate [~housemate@n175-36-37-203.meb3.vic.optusnet.com.au] has quit [Remote host closed the connection] 06:49 -!- housemate [~housemate@n175-36-37-203.meb3.vic.optusnet.com.au] has joined #openbsd 06:50 -!- housemate [~housemate@n175-36-37-203.meb3.vic.optusnet.com.au] has quit [Max SendQ exceeded] 06:51 -!- housemate [~housemate@n175-36-37-203.meb3.vic.optusnet.com.au] has joined #openbsd 06:57 -!- mogad0n [~mogad0n@user/mogad0n] has quit [Quit: /|\] 07:03 -!- kado [~kado@user/kado] has joined #openbsd 07:05 -!- struchu [~struchu@62.87.192.114] has joined #openbsd 07:10 -!- feriman [~feriman@188.163.114.49] has joined #openbsd 07:11 -!- raspbeguy [~raspbeguy@wireguard/tunneler/raspbeguy] has joined #openbsd 07:14 -!- adip [~adip@c144-111.icpnet.pl] has joined #openbsd 07:14 -!- bouncy_ [~ben@user/benoit] has quit [Ping timeout: 248 seconds] 07:15 -!- housemate [~housemate@n175-36-37-203.meb3.vic.optusnet.com.au] has quit [Remote host closed the connection] 07:15 -!- housemate [~housemate@n175-36-37-203.meb3.vic.optusnet.com.au] has joined #openbsd 07:16 -!- rafael [~rafael@user/rafael] has quit [Quit: Ping timeout (120 seconds)] 07:16 -!- LW [~LW@i5E866B24.versanet.de] has joined #openbsd 07:16 -!- pirateoverboard [~pirateove@user/pirateoverboard] has quit [Quit: ZNC 1.8.2 - https://znc.in] 07:16 -!- rafael [~rafael@192.154.3.130] has joined #openbsd 07:16 -!- rafael [~rafael@192.154.3.130] has quit [Changing host] 07:16 -!- rafael [~rafael@user/rafael] has joined #openbsd 07:17 -!- pirateoverboard [~pirateove@user/pirateoverboard] has joined #openbsd 07:17 -!- housemate [~housemate@n175-36-37-203.meb3.vic.optusnet.com.au] has quit [Remote host closed the connection] 07:18 -!- housemate [~housemate@n175-36-37-203.meb3.vic.optusnet.com.au] has joined #openbsd 07:22 -!- housemate [~housemate@n175-36-37-203.meb3.vic.optusnet.com.au] has quit [Remote host closed the connection] 07:23 -!- MajorBiscuit [~MajorBisc@2001:1c00:2408:a400:7f99:b6d8:c8b8:dc05] has joined #openbsd 07:23 -!- housemate [~housemate@n175-36-37-203.meb3.vic.optusnet.com.au] has joined #openbsd 07:28 -!- sponji [regg@2607:fb90:b7e4:9189:c0b7:a3c:ea3a:b8c3] has joined #openbsd 07:28 -!- feriman [~feriman@188.163.114.49] has quit [Quit: leaving] 07:28 -!- sponji [regg@2607:fb90:b7e4:9189:c0b7:a3c:ea3a:b8c3] has quit [Changing host] 07:28 -!- sponji [regg@user/sponji] has joined #openbsd 07:30 -!- feriman [~feriman@188.163.114.49] has joined #openbsd 07:34 -!- tozhu [~tozhu@117.139.163.129] has quit [Ping timeout: 268 seconds] 07:36 -!- raspbeguy [~raspbeguy@wireguard/tunneler/raspbeguy] has left #openbsd [Disconnected: Replaced by new connection] 07:37 -!- mogad0n [~mogad0n@user/mogad0n] has joined #openbsd 07:44 -!- lavaball [felix@31.204.155.215] has joined #openbsd 07:45 -!- tozhu [~tozhu@117.139.163.129] has joined #openbsd 07:53 -!- Trigon [~reuben@144.39.114.115] has quit [Ping timeout: 250 seconds] 08:00 -!- Quantafac [~Quantafac@12.22.122.66] has quit [Read error: Connection reset by peer] 08:01 -!- bradd [~quassel@user/bradd] has quit [Ping timeout: 250 seconds] 08:02 -!- srfsh [~srfsh@user/srfsh] has joined #openbsd 08:05 -!- epony [~epony@user/epony] has quit [Remote host closed the connection] 08:06 -!- bouncy_ [~ben@user/benoit] has joined #openbsd 08:12 -!- epony [~epony@user/epony] has joined #openbsd 08:13 -!- raspbeguy [~raspbeguy@wireguard/tunneler/raspbeguy] has joined #openbsd 08:15 -!- bradd [~quassel@user/bradd] has joined #openbsd 08:18 -!- housemate [~housemate@n175-36-37-203.meb3.vic.optusnet.com.au] has quit [Remote host closed the connection] 08:19 -!- housemate [~housemate@n175-36-37-203.meb3.vic.optusnet.com.au] has joined #openbsd 08:21 -!- housemate [~housemate@n175-36-37-203.meb3.vic.optusnet.com.au] has quit [Remote host closed the connection] 08:21 -!- housemate [~housemate@n175-36-37-203.meb3.vic.optusnet.com.au] has joined #openbsd 08:30 -!- nyah [~nyah@cpc75709-york6-2-0-cust260.7-1.cable.virginm.net] has joined #openbsd 08:31 -!- ipetruk [~user@user/ipetruk] has quit [Quit: ZNC 1.8.2 - https://znc.in] 08:33 -!- ipetruk [~user@user/ipetruk] has joined #openbsd 08:37 -!- vortexx [~nothing@casper.nineinchnetworks.ch] has joined #openbsd 08:37 -!- vortexx [~nothing@casper.nineinchnetworks.ch] has quit [Changing host] 08:37 -!- vortexx [~nothing@user/vortexx] has joined #openbsd 08:39 -!- raspbeguy [~raspbeguy@wireguard/tunneler/raspbeguy] has left #openbsd [Disconnected: Replaced by new connection] 08:42 -!- bouncy_ [~ben@user/benoit] has quit [Ping timeout: 252 seconds] 08:43 -!- adig [~adi@m.self.onl] has joined #openbsd 08:45 -!- adig [~adi@m.self.onl] has quit [Remote host closed the connection] 08:45 -!- zer0bitz [~zer0bitz@2001:2003:f443:d600:9c68:6672:1252:446] has quit [] 08:46 -!- AlaskanEmily [~AlaskanEm@user/alaskanemily] has quit [Remote host closed the connection] 08:48 -!- adig [~adi@m.self.onl] has joined #openbsd 08:55 -!- paddymahoney [~paddymaho@cpe9050ca207f83-cm9050ca207f80.cpe.net.cable.rogers.com] has quit [Remote host closed the connection] 09:00 -!- lavaball [felix@31.204.155.215] has quit [Quit: lavaball] 09:01 -!- terminaldweller [~terminald@user/terminaldweller] has quit [Quit: ZNC 1.8.2+deb2build5 - https://znc.in] 09:04 -!- terminaldweller [~terminald@user/terminaldweller] has joined #openbsd 09:07 -!- Noisytoot [~noisytoot@sourcehut/user/noisytoot] has quit [Quit: ZNC 1.8.2 - https://znc.in] 09:09 -!- Noisytoot [~noisytoot@sourcehut/user/noisytoot] has joined #openbsd 09:13 -!- Noisytoot [~noisytoot@sourcehut/user/noisytoot] has quit [Ping timeout: 250 seconds] 09:17 -!- jellydonut [~quassel@185.65.135.172] has quit [Ping timeout: 260 seconds] 09:18 -!- jellydonut [~quassel@141.98.255.150] has joined #openbsd 09:19 -!- Noisytoot [~noisytoot@sourcehut/user/noisytoot] has joined #openbsd 09:23 -!- NiceBird [~NiceBird@185.133.111.196] has joined #openbsd 09:37 -!- kado [~kado@user/kado] has quit [Quit: nyaa~] 09:38 -!- Noisytoot [~noisytoot@sourcehut/user/noisytoot] has quit [Quit: ZNC 1.8.2 - https://znc.in] 09:38 -!- chanceyan [~chanceyan@user/chanceyan] has quit [Quit: Client closed] 09:39 -!- chanceyan [~chanceyan@user/chanceyan] has joined #openbsd 09:41 -!- Noisytoot [~noisytoot@sourcehut/user/noisytoot] has joined #openbsd 09:47 -!- chanceyan [~chanceyan@user/chanceyan] has quit [Quit: Client closed] 09:48 < corigins> Is it possible to export nfs with rdomain? Setting the rcctl flag for rdomain on portmap mountd and nfsd. I'm getting these errors https://pastebin.com/raw/AVvf2PT6 09:48 -!- terminaldweller [~terminald@user/terminaldweller] has quit [Quit: ZNC 1.8.2+deb2build5 - https://znc.in] 09:49 < corigins> Beside NFS, what options do I have to mount folders or a share a folder/fs in a vm? 09:49 -!- gumayushi [~juno@62.174.209.194.static.user.ono.com] has joined #openbsd 09:50 -!- Alhazred [~Alhazred@user/Alhazred] has quit [Ping timeout: 240 seconds] 09:50 -!- terminaldweller [~terminald@user/terminaldweller] has joined #openbsd 09:50 < sibiria> samba 09:51 < ludovicus> does ftpfs count 09:56 < corigins> Samba is a good idea, my nfs mount sometime hangs. I have not looked into ftpfs yet, would sshfs be better? 09:58 < sibiria> samba is definitely faster and swifter than sshfs, if that matters 09:59 -!- terminaldweller [~terminald@user/terminaldweller] has quit [Quit: ZNC 1.8.2+deb2build5 - https://znc.in] 10:05 -!- terminaldweller [~terminald@user/terminaldweller] has joined #openbsd 10:09 -!- terminaldweller [~terminald@user/terminaldweller] has quit [Client Quit] 10:10 < renaud> can you mount smb shares in OpenBSD now? 10:11 -!- terminaldweller [~terminald@user/terminaldweller] has joined #openbsd 10:14 -!- cruncher [~cruncher@user/cruncher] has joined #openbsd 10:15 -!- sunwind` [~paradox@145.167.6.51.dyn.plus.net] has quit [Quit: Outside Context Problem.] 10:15 -!- terminaldweller [~terminald@user/terminaldweller] has quit [Client Quit] 10:16 -!- terminaldweller [~terminald@user/terminaldweller] has joined #openbsd 10:17 < sibiria> i think it has always had smbclient 10:17 < sibiria> the samba port, that is 10:17 < renaud> yes, but you cannot really mount stuff 10:18 < renaud> unless you use sharity 10:18 < renaud> but I haven't requested a new build for ages, so the latest supported version is at least 10 years old 10:19 < renaud> indeed, 5.5 is the latest 10:19 < corigins> Yeah, I was hoping to keep it base or small as possible, got it to work with pf magic. Next issue is to figure out why nfs keep hanging 10:19 < renaud> corigins: try to mountit in soft mode 10:20 < renaud> nfs doesn't like to be cut 10:21 < corigins> renaud: that actually might be it. I had forgot about mount -s 10:21 < corigins> Thanks guys. 10:22 -!- sunwind [~paradox@145.167.6.51.dyn.plus.net] has joined #openbsd 10:22 < sibiria> i wish i could get nfs working from kodi/android 10:22 < renaud> it would be nice if obdev released the code for sharity, they don't seem to sell it anymore 10:24 -!- zimmer [~zimmer@cpc151199-smal19-2-0-cust100.19-1.cable.virginm.net] has joined #openbsd 10:24 -!- zimmer [~zimmer@cpc151199-smal19-2-0-cust100.19-1.cable.virginm.net] has quit [Changing host] 10:24 -!- zimmer [~zimmer@user/zimmer] has joined #openbsd 10:27 < corigins> renaud: have you tried busybox mount on adroid? 10:30 < renaud> yes, but a very long time ago 10:31 < renaud> there are also apps which let you mount stuff easily 10:31 -!- engler [~engler@user/emilengler] has joined #openbsd 10:34 -!- Lucanis0 [~Lucanis@user/lucanis] has joined #openbsd 10:36 -!- Lucanis [~Lucanis@user/lucanis] has quit [Ping timeout: 260 seconds] 10:42 -!- OV3RDR1VE [~NULL1F13D@user/Xfce4BestDE] has joined #openbsd 10:46 -!- seninha [~seninha@user/seninha] has joined #openbsd 10:50 -!- adig [~adi@m.self.onl] has quit [Remote host closed the connection] 10:53 < sibiria> what's the usual reason an nfs mount request is refused? i took a quick stab at getting kodi/android to mount against openbsd again but it's just no-go and i cannot figure it out since i don't know enough about nfs 10:53 < IcePic> sibiria: not coming from a privileged port? 10:54 < IcePic> the mount request, that is 10:54 < sibiria> IcePic: android (or kodi) is indeed coming from random ports. i can see that much in the output 10:54 < sibiria> it spams me with 10-15 requests on random ports and then it gives up 10:54 < sibiria> my export looks like this: /stuff/something -ro -alldirs -network=192.168.1.22 -mask=255.255.255.0 10:55 < sibiria> which i presume will make /stuff/something and all dirs under it accessible 10:55 < sibiria> kodi shows the path, but can't get anything 10:56 < sibiria> portmap says "server: about to do a switch", mountd says "Got mount request from 192.168.1.22" and then outputs the rejection message to var-log-daemon 10:56 < corigins> try -mapall or -maproot. could be permissions 10:57 < corigins> think -mask=255.255.255.0 would allow 192.168.1/24 access 10:58 < sibiria> just -maproot, or do i feed it a user:group spec? 10:59 < IcePic> just -maproot to start with to see if root@clientdevice can read stuff on the mount 10:59 -!- gumayushi [~juno@62.174.209.194.static.user.ono.com] has quit [Quit: Lost terminal] 11:04 < sibiria> "bad opt maproot", says mountd. doesn't like it on its own. and with a user:group spec everything is rejected still 11:05 -!- accelerat0r [~user@user/accelerat0r] has joined #openbsd 11:05 < sibiria> -mapall user:group seems to do something, but no dir listing 11:06 < corigins> https://man.openbsd.org/exports 11:06 < corigins> try -maproot=/-mapall= root 11:07 < corigins> or find the gid/uid on the device and replicate it on system 11:08 < corigins> what does your device lo say? 11:08 < sibiria> nothing. it just says it can't access the share, or that it finds nothing in it 11:08 < sibiria> it's kodi (the media player), so no actual debug output 11:10 < corigins> how and where is kodi installed? have you tried looking up the device/kodi support? 11:10 < sibiria> it's a chinese off-brand TV box running android 11, living in a DMZ in my LAN 11:10 < sibiria> there is no support 11:10 -!- Noisytoot [~noisytoot@sourcehut/user/noisytoot] has quit [Ping timeout: 260 seconds] 11:11 < sibiria> i think half the problem is the wonky android build, the other half being Kodi 11:12 < corigins> try portscanning the device and see if there's any management port open 11:13 -!- bsdguydr [~bsdguydr@user/bsdguydr] has quit [Quit: Leaving] 11:13 -!- sponji [regg@user/sponji] has quit [Ping timeout: 248 seconds] 11:14 < sibiria> it's android, and it's rooted so i can get into it. i'm just trying to make it work in a tidy fashion 11:15 -!- moldorcoder7 [~moldorcod@192.145.81.24] has joined #openbsd 11:15 -!- sponji_ [regg@2607:fb90:b7e0:57e:1a08:7015:ef64:2ede] has joined #openbsd 11:15 -!- Noisytoot [~noisytoot@sourcehut/user/noisytoot] has joined #openbsd 11:15 < sibiria> kodi doesn't allow for specifying user/credentials. just a host address and a default path. this means it will try to connect as "root", right? 11:15 < sibiria> or am i misunderstanding how nfs works 11:17 < corigins> does it have man mount? i'd just try mount -v -t nfs host:/share /mntpoint 11:17 < corigins> and see what it says 11:18 -!- xet7 [~xet7@user/xet7] has quit [Remote host closed the connection] 11:19 -!- sponji_ [regg@2607:fb90:b7e0:57e:1a08:7015:ef64:2ede] has quit [Ping timeout: 248 seconds] 11:20 -!- xet7 [~xet7@user/xet7] has joined #openbsd 11:20 -!- sponji [regg@2607:fb90:b7e0:57e:1a08:7015:ef64:2ede] has joined #openbsd 11:21 -!- zer0bitz [~zer0bitz@2001:2003:f443:d600:f43c:a9e1:5195:3fd4] has joined #openbsd 11:24 -!- sponji [regg@2607:fb90:b7e0:57e:1a08:7015:ef64:2ede] has quit [Ping timeout: 248 seconds] 11:25 < corigins> and try setting the the folder to 777. 11:25 -!- sponji [regg@2607:fb90:b7e0:57e:1a08:7015:ef64:2ede] has joined #openbsd 11:26 -!- sponji [regg@2607:fb90:b7e0:57e:1a08:7015:ef64:2ede] has quit [Remote host closed the connection] 11:27 < sibiria> the directory and its subdirs are 755 11:28 < tommyrot> there's a sshfs plugin in kodi you can use if your nfs adventures fail 11:28 < sibiria> i currently use httpd with auto dir listnings :) 11:28 < sibiria> it's, uh.. not ideal.. but it works, and it's much faster than sshfs 11:29 < tommyrot> that might actually be the least prone to error solution 11:34 -!- tozhu [~tozhu@117.139.163.129] has quit [Quit: tozhu] 11:37 -!- raspbeguy [~raspbeguy@wireguard/tunneler/raspbeguy] has joined #openbsd 11:38 -!- adig [~adi@m.self.onl] has joined #openbsd 11:42 < sibiria> i'll postpone to the weekend. nothing else planned for easter so i might as well have another NFS-induced aneurysm then 11:43 < sibiria> stupid file-sharing bollox 11:43 < sibiria> would be useful if mountd actually told users *why* it's rejecting 11:51 -!- sterd71 [~sterd71@cache2.uk.logica.com] has joined #openbsd 11:57 -!- byteskeptical [~amnesia@user/byteskeptical] has quit [Quit: Lost terminal] 11:57 -!- fifihyperbola [~fifi@94.119.64.54] has joined #openbsd 12:00 -!- sterd71 [~sterd71@cache2.uk.logica.com] has quit [Quit: Client closed] 12:01 -!- an3223 [~user@user/an3223] has quit [Remote host closed the connection] 12:01 -!- Noisytoot [~noisytoot@sourcehut/user/noisytoot] has quit [Ping timeout: 246 seconds] 12:05 -!- bsdguydr [~bsdguydr@user/bsdguydr] has joined #openbsd 12:08 -!- Noisytoot [~noisytoot@sourcehut/user/noisytoot] has joined #openbsd 12:10 -!- mikess [~sam@user/mikess] has joined #openbsd 12:10 -!- adig [~adi@m.self.onl] has quit [Remote host closed the connection] 12:11 -!- bsdguydr [~bsdguydr@user/bsdguydr] has quit [Remote host closed the connection] 12:11 -!- Noisytoot [~noisytoot@sourcehut/user/noisytoot] has quit [Remote host closed the connection] 12:12 -!- bsdguydr [~bsdguydr@user/bsdguydr] has joined #openbsd 12:15 -!- housemate [~housemate@n175-36-37-203.meb3.vic.optusnet.com.au] has quit [Quit: Leaving] 12:16 -!- Noisytoot [~noisytoot@sourcehut/user/noisytoot] has joined #openbsd 12:18 -!- tozhu [~tozhu@218.89.253.2] has joined #openbsd 12:18 -!- tozhu [~tozhu@218.89.253.2] has quit [Client Quit] 12:21 -!- engler [~engler@user/emilengler] has quit [Quit: Leaving] 12:26 < IcePic> sibiria: I guess that is rpc for you. The actual issue is so many layers away (mountd, portmapper) that when "mount_nfs" fails, it just knows "something did not work" 12:30 < sibiria> yeah i'm not getting any useful info at all out of neither portmap (the rpc portion) nor mountd 12:31 < sibiria> either could be misbehaving 12:31 < eea> ah debugging nfs... 12:31 < sibiria> maybe my httpd "hack" is the neatest solution after all 12:31 < IcePic> worst part is that in order to "fix" stuff on server side, one has to restart many/most daemons, and in correct order 12:31 -!- bradd [~quassel@user/bradd] has quit [Ping timeout: 250 seconds] 12:32 -!- adig [~adi@m.self.onl] has joined #openbsd 12:32 < eea> does `showmount -e $host` return expected results? 12:33 < sibiria> it returned nothing when i was testing earlier 12:34 -!- sterd71 [~sterd71@cache2.uk.logica.com] has joined #openbsd 12:34 < sibiria> the client device did find the exported file systems. just wouldn't latch onto anything 12:34 < sibiria> will have a stab at it again in the weekend 12:34 -!- tozhu [~tozhu@218.89.253.2] has joined #openbsd 12:35 -!- typicat [~me0w@user/typicat] has joined #openbsd 12:39 -!- elastic_dog [~elastic_d@asi195.neoplus.adsl.tpnet.pl] has quit [Read error: Connection reset by peer] 12:40 -!- sterd71 [~sterd71@cache2.uk.logica.com] has quit [Quit: Client closed] 12:40 -!- elastic_dog [~elastic_d@2a01:118f:620:5c00:5b5c:587d:9e9e:d473] has joined #openbsd 12:46 -!- user71 [~user71@2001:1530:1008:f11c:1e6f:65ff:fe88:557f] has joined #openbsd 12:47 -!- ronaldg2 [~bsdguydr@user/bsdguydr] has joined #openbsd 12:47 -!- ronaldg2 [~bsdguydr@user/bsdguydr] has quit [Remote host closed the connection] 12:48 -!- raspbeguy [~raspbeguy@wireguard/tunneler/raspbeguy] has left #openbsd [Disconnected: Replaced by new connection] 12:48 -!- ronaldg2 [~bsdguydr@user/bsdguydr] has joined #openbsd 12:50 < eea> sounds like an nfs version mismatch i had awhile ago... openbsd host and linux clients 12:51 < eea> nfsv3 vs v4 12:52 < sibiria> actually not sure what android 11 (or kodi itself) is running. there are no indications of it 12:52 < sibiria> it's an older version of kodi from 2019. kodi 18 or so 12:53 -!- LW [~LW@i5E866B24.versanet.de] has quit [Quit: WeeChat 3.6] 12:53 < sibiria> though it may just use whatever android has 12:53 -!- byteskeptical [~amnesia@user/byteskeptical] has joined #openbsd 12:54 -!- ronaldg2 [~bsdguydr@user/bsdguydr] has quit [Quit: Leaving] 12:54 -!- bsdguydr [~bsdguydr@user/bsdguydr] has quit [Remote host closed the connection] 12:55 -!- an3223 [~user@user/an3223] has joined #openbsd 12:56 -!- todd [~todd@gateway/tor-sasl/toddf] has quit [Ping timeout: 255 seconds] 12:57 -!- scain [~scain@2603-8080-b104-4e00-45cf-678b-0a7f-b897.res6.spectrum.com] has joined #openbsd 13:03 -!- todd [~todd@gateway/tor-sasl/toddf] has joined #openbsd 13:11 -!- Rue [hlz@hlz.freeirc.org] has joined #openbsd 13:13 -!- feriman [~feriman@188.163.114.49] has quit [Ping timeout: 276 seconds] 13:16 -!- Rue [hlz@hlz.freeirc.org] has left #openbsd [WeeChat 3.8] 13:16 -!- Noisytoot [~noisytoot@sourcehut/user/noisytoot] has quit [Ping timeout: 252 seconds] 13:16 -!- Rue [hlz@hlz.freeirc.org] has joined #openbsd 13:17 -!- Rue [hlz@hlz.freeirc.org] has left #openbsd [WeeChat 3.8] 13:17 -!- Rue [hlz@hlz.freeirc.org] has joined #openbsd 13:22 -!- edthix [~Thunderbi@178.82.50.60.klj05-home.tm.net.my] has quit [Quit: edthix] 13:23 -!- ficonni [~ficonni@46.235.96.214] has joined #openbsd 13:25 -!- typicat [~me0w@user/typicat] has quit [Quit: leaving] 13:25 -!- typicat [~me0w@user/typicat] has joined #openbsd 13:26 -!- inak [~justme@111-107-74-65.gci.net] has joined #openbsd 13:37 -!- Noisytoot [~noisytoot@sourcehut/user/noisytoot] has joined #openbsd 13:40 -!- ClaudioM [claudiom@tilde.institute] has joined #openbsd 13:41 -!- lavaball [felix@31.204.155.215] has joined #openbsd 13:53 -!- gh34 [~textual@cpe-184-58-181-106.wi.res.rr.com] has joined #openbsd 13:54 -!- sunwind [~paradox@145.167.6.51.dyn.plus.net] has quit [Quit: Outside Context Problem.] 13:54 -!- fr0hike [~fr0ghike@2601:193:8300:c910:8949:66dc:c1e6:3502] has joined #openbsd 13:56 -!- broesel [~broesel@gateway/tor-sasl/broesel] has joined #openbsd 14:00 < fifihyperbola> how do I delete drop tables from mysql databases? 14:00 -!- stellacy [~stellacy@gateway/tor-sasl/stellacy] has quit [Remote host closed the connection] 14:02 < renaud> drop table name 14:02 < thrig> good old bobby drop tables 14:03 < ClaudioM> heh 14:03 -!- stellacy [~stellacy@gateway/tor-sasl/stellacy] has joined #openbsd 14:03 -!- ikarso [uid475540@id-475540.tinside.irccloud.com] has quit [Quit: Connection closed for inactivity] 14:06 -!- WimWalther [~androirc@2601:447:c781:c750:7dcc:21b6:72ec:855] has joined #openbsd 14:06 < WimWalther> Howdy 14:07 < sibiria> fifihyperbola: delete from , truncate
and drop
are your weapons 14:07 < fifihyperbola> ok, I have done it :) 14:07 < fifihyperbola> tnx :) 14:08 -!- Bradipo [~amb@50-77-44-29-static.hfc.comcastbusiness.net] has joined #openbsd 14:10 -!- rafael5 [~rafael@192.154.3.130] has joined #openbsd 14:12 -!- rafael [~rafael@user/rafael] has quit [Ping timeout: 250 seconds] 14:12 -!- rafael5 is now known as rafael 14:12 -!- rafael [~rafael@192.154.3.130] has quit [Changing host] 14:12 -!- rafael [~rafael@user/rafael] has joined #openbsd 14:20 -!- Xenguy [~Xenguy@user/xenguy] has quit [Quit: Leaving] 14:22 < fifihyperbola> dang sorry I am not sure if that's related to openbsd, but I don't knw where else to ask. I have configured a web server on my vps to run wordpress. Now I want to install a plugin, but it asks me for a ftp hostname, and I am not sure what it is? Is this my mariadb details or my vps hostname 14:22 < fifihyperbola> nothing says valid 14:22 -!- gnucode [~joshua@user/jab] has joined #openbsd 14:22 -!- Xenguy [~Xenguy@user/xenguy] has joined #openbsd 14:23 < gnucode> morning friends. 14:23 < fifihyperbola> morning 14:24 < ClaudioM> g'morning gnucode and fifihyperbola 14:25 < gnucode> I am trying to change my full disc encryption password. I booted up my machine via the installer. 14:25 < gnucode> I am pretty sure the command to change the password is bioctl -P sd0 14:25 -!- terminaldweller [~terminald@user/terminaldweller] has quit [Quit: ZNC 1.8.2+deb2build5 - https://znc.in] 14:27 < gnucode> but thay said that it cannot locate device sd0a. Do I need to run "sh MAKEDEV sd0" ? 14:28 < sibiria> there's never any guarantee of the order storage devices are enumerated 14:28 < sibiria> your drive may now be sd1 and the USB drive sd0 14:28 < gnucode> sysctl hw.disknames does show sd0 and sd1 (and rd0, which is my usb installer stick) 14:28 < sibiria> dmesg will let you know what's what 14:28 < sibiria> yeah or that sysctl 14:28 < sibiria> if you don't recognize the DUIDs, dmesg will have the details 14:29 < gnucode> mount says that /dev/rd0a is mounted on / . So rd0 is my usb installer stick. 14:29 -!- terminaldweller [~terminald@user/terminaldweller] has joined #openbsd 14:29 < sibiria> and as you suggested, take a look in /dev to see if sd0 is actually crated 14:29 < sibiria> +e 14:30 < sibiria> if not, you create it just as you asked. the MAKEDEV script is in /etc 14:30 < sibiria> dev* 14:30 -!- norayr [~norayr@37.252.78.253] has left #openbsd [] 14:32 < sibiria> as for changing the password to the master key, i'm not really sure if there are any constraints. e.g. can only be done when it's not mounted, or when it IS mounted etc. 14:35 -!- terminaldweller [~terminald@user/terminaldweller] has quit [Quit: ZNC 1.8.2+deb2build5 - https://znc.in] 14:36 < gnucode> sibiria: that's pretty awesome! I didn't realize that you can change the master password while it is mounted! 14:37 -!- terminaldweller [~terminald@user/terminaldweller] has joined #openbsd 14:37 < vortexx> fifihyperbola: the ftp hostname would be your VPS server 14:37 < fifihyperbola> ok 14:40 -!- rawgreaze [~rawgreaze@user/rawgreaze] has quit [Quit: ZNC 1.8.2 - https://znc.in] 14:41 -!- rawgreaze [~rawgreaze@user/rawgreaze] has joined #openbsd 14:42 -!- zenptr [~zenptr@user/zenptr] has quit [Quit: ZNC 1.8.2 - https://znc.in] 14:42 < gnucode> ok I did a "sh MAKEDEV sd0" then "disklabel sd0" showed that sd0a was a fstype of RAID. I know I set up an encrypted RAID, so sd0a is probably said device. 14:43 -!- hitest [~hitest@user/hitest] has joined #openbsd 14:43 < gnucode> "bioctl -P sd0a" -> bioctl: BIODISCIPLINE: Inappropriate ioctl for device. 14:45 -!- Hansol [~Hansol@94.156.58.157] has joined #openbsd 14:48 < gnucode> I suppose that I will try to change the passphase inside my OpenBSD install and not using the installer usb disk. 14:48 < sibiria> what happens if you point it to sd0 (without the a at the end) 14:50 < gnucode> sibiria: I am rebooting into my installed OpenBSD now. I'll let you know in a second. (also since I am using a physical dvorak keyboard layout, I suppose that I will change the keyboald layout to qwerty when I change the password. Since qwerty will be the layout that I use to type the password at boot. 14:50 -!- struchu [~struchu@62.87.192.114] has quit [Quit: WeeChat 3.8] 14:55 -!- gman999 [~GMan999@user/gman999] has joined #openbsd 14:57 -!- horrad [~horrad@217.91.26.253] has quit [Remote host closed the connection] 14:57 < gnucode> sibiria so apparently I have to type "bioctl -P sd1". 14:58 < gnucode> and it worked! 14:58 < Bradipo> Well, the man page does say "Change the passphrase on the selected crypto volume.:' 14:59 < Bradipo> sd0 is not the encrypted volume, sd1 is. 14:59 < gnucode> Bradipo: I had that wrong in my head then. I thought it was the other way around. 14:59 -!- militantorc is now known as hottubstreamer 15:00 -!- hottubstreamer is now known as militantorc 15:00 < gnucode> when I OpenBSD created my encrypted volume I type in this command "bioctl -c C -l sd0a softraid0" 15:00 < gnucode> then it asked me for a passphase. 15:01 < gnucode> so i had thought that sd0 was the encrypted volume. Good to know that it is actually sd1. 15:01 -!- gnucode [~joshua@user/jab] has quit [Remote host closed the connection] 15:01 -!- gnucode [~joshua@user/jab] has joined #openbsd 15:04 < gnucode> it is kind of cool that that works now though. 15:04 -!- norayr [~norayr@37.252.78.253] has joined #openbsd 15:04 < gnucode> I mean I have a better decryption passphrase. 15:04 < Bradipo> I suppose it depends on how you interpret "encrypted volume". 15:05 < gnucode> Bradipo your interpretation is probably correct. :) 15:06 < gnucode> I'm a very new OpenBSD user. Also I was really impressed that OpenBSD by default asks me to unlock my .ssh keys right after I log in. 15:06 < gnucode> sibiria: as always thanks for helping. 15:07 < Bradipo> gnucode: Yes, makes having secure SSH keys simple. 15:07 < Bradipo> And easy. 15:09 < sibiria> Bradipo: it's very ambiguous 15:09 < sibiria> sd0 IS encrypted. sd1 (pseudo-volume) is the decrypted one that can be read 15:09 < sibiria> the documentation could be better 15:10 < sibiria> glad you got it sorted out 15:11 < Bradipo> Excpet, the rest of the man page refers to "creation of the crypto volume" 15:11 < Bradipo> What gets created is sd1, not sd0. 15:11 < Bradipo> "After creating a newly encrypted disk", again, this refers to sd1, not sd0. 15:11 < Bradipo> Because that is the *new* disk. 15:12 < Bradipo> So yeah, if you read the rest of the man page, the -P option actually makes complete sense. 15:14 < gnucode> if you all are curious, I did blog about my past few days on gnucode.me The last two blog posts are OpenBSD specific. Any pointers would be appreciated. 15:15 -!- dev1ls [~dev1ls@user/Dev1ls] has quit [Ping timeout: 265 seconds] 15:17 -!- broesel [~broesel@gateway/tor-sasl/broesel] has left #openbsd [] 15:23 -!- jfsimon1981_b [~jfsimon19@lfbn-lyo-1-1344-171.w86-207.abo.wanadoo.fr] has quit [Remote host closed the connection] 15:24 -!- LW [~LW@i5E866B24.versanet.de] has joined #openbsd 15:24 -!- LW [~LW@i5E866B24.versanet.de] has quit [Client Quit] 15:24 < sibiria> i saw in your post history that you have a pinephone. how are they these days? smooth experience with calls/sms etc.? 15:33 -!- seninha [~seninha@user/seninha] has quit [Ping timeout: 255 seconds] 15:34 -!- LW [~LW@i5E866B24.versanet.de] has joined #openbsd 15:35 -!- LW [~LW@i5E866B24.versanet.de] has quit [Client Quit] 15:35 < gnucode> sibiria: I would say it is 80% ok. 15:35 < gnucode> I found that postmarket OS seems to be the most stable for me. 15:36 < gnucode> I personally physically disabled wifi, because that helps the battery last longer. But I still have to charge the battery at least for 30 minutes every 8 hours. 15:36 < sibiria> ouch 15:37 < gnucode> phosh is the best interface at present in terms of easy of use. sxmo is probably better on the battery life, but I want it to be easy to use. And the apps take about 3 seconds to load up. But I prefer minor annoyances, because that is the most open phone that I am aware of in my price range. 15:38 < gnucode> sibiria I also have the original pine phone. The Pinephone pro might be a better bang for your buck. 15:38 < gnucode> And OpenBSD is making progress on running on the PinePhone! That's cool! 15:43 -!- brynet [~brynet@brynet.ca] has quit [Quit: leaving] 15:47 -!- CrashOverride [~strcat@p548553d3.dip0.t-ipconnect.de] has joined #openbsd 15:48 -!- fr0hike [~fr0ghike@2601:193:8300:c910:8949:66dc:c1e6:3502] has quit [Ping timeout: 250 seconds] 15:48 -!- leo-unglaub [~leo-ungla@2001:871:258:ad5d:908e:6189:6ef3:57cd] has joined #openbsd 15:51 -!- fr0hike [~fr0ghike@2601:193:8300:c910:8949:66dc:c1e6:3502] has joined #openbsd 15:53 < sibiria> i'm super happy with iOS (iPhone), but somewhat curious on something android that's "ungoogled" 15:53 < sibiria> postmarketos or copperhead etc. 15:55 < pardis> postmarketOS is not Android 15:56 < sibiria> i know it's linux, but you know what i mean 15:56 < sibiria> "handheld edition" 15:58 < gnucode> sibiria I am a near saint in the church of Emacs. So for me I am ok with putting up with a ton of annoyances to use freedom respecting devices. The PinePhone is NOT RYF, but it is closer than most of the other alternatives. 15:59 -!- fifi_ [~fifi@94.119.64.35] has joined #openbsd 15:59 -!- fifihyperbola [~fifi@94.119.64.54] has quit [Read error: Connection reset by peer] 16:10 -!- brock [~brock@209.122.210.88] has quit [Ping timeout: 248 seconds] 16:11 -!- ivdsangen [~ivo@86-95-161-96.fixed.kpn.net] has joined #openbsd 16:11 < eea> ooo an openbsd powered phone? to whom do i send my dollars? 16:12 -!- brock [~brock@194.124.76.100] has joined #openbsd 16:12 < Bradipo> Indeed, I would pay $$$ for one, especially if all it does is dial phone numbers, send text, and then let me control the rest via OpenBSD. 16:13 < gnucode> https://undeadly.org/cgi?action=article;sid=20220126191703 16:13 < gnucode> crystal is who you want to pay apparently. 16:16 -!- dev1ls [~dev1ls@user/Dev1ls] has joined #openbsd 16:20 -!- seninha [~seninha@user/seninha] has joined #openbsd 16:21 -!- Xenguy [~Xenguy@user/xenguy] has quit [Quit: Leaving] 16:22 -!- jak3b [~jak3b@2601:645:8085:b6d0::b962] has joined #openbsd 16:25 -!- shassard [~user@d162-156-41-221.bchsia.telus.net] has joined #openbsd 16:25 -!- Xenguy [~Xenguy@user/xenguy] has joined #openbsd 16:26 -!- morte_ [~user@user/monkey/x-0691028] has joined #openbsd 16:28 -!- format_c [~format_c@home.koeppe.rocks] has joined #openbsd 16:29 -!- Trigon [~reuben@144.39.114.115] has joined #openbsd 16:30 -!- format_c [~format_c@home.koeppe.rocks] has quit [Client Quit] 16:31 -!- ArtGravity [~artgravit@user/artgravity] has joined #openbsd 16:33 -!- brynet [~brynet@brynet.ca] has joined #openbsd 16:33 -!- gnucode [~joshua@user/jab] has quit [Remote host closed the connection] 16:36 -!- Noisytoot [~noisytoot@sourcehut/user/noisytoot] has quit [Quit: ZNC 1.8.2 - https://znc.in] 16:37 -!- Lucas6024 [~Lucas6023@gateway/tor-sasl/lucas6023] has joined #openbsd 16:38 -!- Noisytoot [~noisytoot@sourcehut/user/noisytoot] has joined #openbsd 16:38 -!- Lucas6023 [~Lucas6023@gateway/tor-sasl/lucas6023] has quit [Ping timeout: 255 seconds] 16:41 -!- brock [~brock@194.124.76.100] has quit [Ping timeout: 248 seconds] 16:43 -!- brock [~brock@209.122.210.88] has joined #openbsd 16:44 -!- jak3b [~jak3b@2601:645:8085:b6d0::b962] has quit [Quit: WeeChat 3.8] 16:46 -!- fifi_ [~fifi@94.119.64.35] has quit [Quit: Leaving] 16:55 -!- mechap [~mechap@user/mechap] has joined #openbsd 17:01 -!- sunwind [~paradox@145.167.6.51.dyn.plus.net] has joined #openbsd 17:08 -!- ajr [~ajr@user/ajr] has joined #openbsd 17:09 -!- an3223 [~user@user/an3223] has quit [Remote host closed the connection] 17:09 -!- feriman [~feriman@188.163.114.49] has joined #openbsd 17:14 -!- Alhazred [~Alhazred@user/Alhazred] has joined #openbsd 17:14 -!- Dj_Dexter [~Dark_X@186.189.86.152] has quit [Ping timeout: 248 seconds] 17:18 -!- eki [~eki@dsl-hkibng41-54f85a-212.dhcp.inet.fi] has quit [Quit: leaving] 17:32 -!- xtile [~terrain@c-24-56-224-169.customer.broadstripe.net] has joined #openbsd 17:47 -!- an3223 [~user@user/an3223] has joined #openbsd 17:50 -!- hiddener [~topseykra@146.70.126.188] has joined #openbsd 17:51 -!- engler [~engler@user/emilengler] has joined #openbsd 17:59 -!- Trigon [~reuben@144.39.114.115] has quit [Ping timeout: 252 seconds] 17:59 -!- rsjw [~rsjw@pool-138-88-60-108.washdc.fios.verizon.net] has joined #openbsd 18:00 < a1fa> hello friends o/ 18:12 -!- feriman [~feriman@188.163.114.49] has quit [Quit: leaving] 18:14 -!- feriman [~feriman@188.163.114.49] has joined #openbsd 18:15 -!- lavaball [felix@31.204.155.215] has quit [Remote host closed the connection] 18:15 -!- hiddener [~topseykra@146.70.126.188] has quit [Quit: leaving] 18:16 -!- inak [~justme@111-107-74-65.gci.net] has quit [Ping timeout: 256 seconds] 18:23 -!- Abdullah [21660@user/abdullah] has quit [Read error: Connection reset by peer] 18:29 -!- NiceBird [~NiceBird@185.133.111.196] has quit [Quit: Leaving] 18:29 -!- bouncy_ [~ben@user/benoit] has joined #openbsd 18:30 -!- Dj_Dexter [~Dark_X@186.189.86.152] has joined #openbsd 18:42 -!- Dj_Dexter [~Dark_X@186.189.86.152] has quit [Ping timeout: 248 seconds] 18:43 -!- gid [~gid@user/gid] has quit [Quit: Leaving] 18:44 -!- Alhazred [~Alhazred@user/Alhazred] has quit [Ping timeout: 250 seconds] 18:44 -!- gid [~gid@user/gid] has joined #openbsd 18:46 -!- Alhazred [~Alhazred@user/Alhazred] has joined #openbsd 18:47 -!- piotr [~piotr@user/filystyn] has joined #openbsd 18:47 -!- piotr is now known as Filystyn 18:48 -!- bsdguydr [~bsdguydr@user/bsdguydr] has joined #openbsd 18:55 -!- rnsanchez [~rnsanchez@2804:14d:2c92:8cec:4a03:1676:b8c8:4acf] has quit [Ping timeout: 260 seconds] 18:59 -!- drathir_tor [~drathir@wireguard/tunneler/drathir] has quit [Remote host closed the connection] 19:01 -!- NicknameJohn [~NicknameJ@187-27-156-48.3g.claro.net.br] has quit [Remote host closed the connection] 19:03 -!- NicknameJohn [~NicknameJ@187-27-156-48.3g.claro.net.br] has joined #openbsd 19:07 -!- drathir_tor [~drathir@wireguard/tunneler/drathir] has joined #openbsd 19:12 -!- hitest [~hitest@user/hitest] has quit [Quit: Leaving] 19:13 -!- eki [~eki@dsl-hkibng41-54f85a-212.dhcp.inet.fi] has joined #openbsd 19:16 -!- SexWarrior [~DankFrank@2a01:4b00:940e:f600:100f:e32a:7a32:dda6] has joined #openbsd 19:16 < typicat> vim 19:16 -!- Trigon [~reuben@144.39.114.115] has joined #openbsd 19:19 -!- gnucode [~joshua@user/jab] has joined #openbsd 19:20 -!- dev1ls [~dev1ls@user/Dev1ls] has quit [Ping timeout: 265 seconds] 19:21 < Filystyn> is openbsd lisp friendly? O.o 19:21 -!- sunwind [~paradox@145.167.6.51.dyn.plus.net] has quit [Quit: Outside Context Problem.] 19:22 -!- rsjw [~rsjw@pool-138-88-60-108.washdc.fios.verizon.net] has quit [Quit: Lost terminal] 19:26 < gnucode> Filystyn I am using a guile script to auto mount by usb stick. 19:27 -!- typicat [~me0w@user/typicat] has quit [Quit: leaving] 19:27 < gnucode> I am also using Haunt, which is a static site generator written in guile. 19:27 < gnucode> so it is at least scheme friendly. 19:27 -!- typicat [~me0w@user/typicat] has joined #openbsd 19:28 -!- ivdsangen [~ivo@86-95-161-96.fixed.kpn.net] has quit [Quit: https://github.com/ivdsangen] 19:31 -!- gh34 [~textual@cpe-184-58-181-106.wi.res.rr.com] has quit [Remote host closed the connection] 19:31 -!- ClaudioM [claudiom@tilde.institute] has quit [Quit: leaving] 19:31 -!- gh34 [~textual@cpe-184-58-181-106.wi.res.rr.com] has joined #openbsd 19:32 -!- elastic_dog [~elastic_d@2a01:118f:620:5c00:5b5c:587d:9e9e:d473] has quit [Ping timeout: 260 seconds] 19:33 -!- Trigon [~reuben@144.39.114.115] has quit [Ping timeout: 264 seconds] 19:34 -!- inak [~justme@111-107-74-65.gci.net] has joined #openbsd 19:34 -!- elastic_dog [~elastic_d@2a01:118f:620:5c00:5b5c:587d:9e9e:d473] has joined #openbsd 19:36 -!- namtsui_ [~namtsui@162-199-93-34.lightspeed.sntcca.sbcglobal.net] has joined #openbsd 19:37 -!- sunwind [~paradox@145.167.6.51.dyn.plus.net] has joined #openbsd 19:37 < Filystyn> gnucode im sensing friendliness here 19:38 -!- namtsui [~namtsui@user/namtsui] has quit [Ping timeout: 276 seconds] 19:41 -!- typicat [~me0w@user/typicat] has quit [Quit: Changing temrinals] 19:41 -!- Vizva [~vizva@gateway/tor-sasl/vizva] has joined #openbsd 19:42 -!- typicat [~me0w@user/typicat] has joined #openbsd 19:44 < gnucode> Filystyn: I believe commonlisp runs on OpenBSD too. 19:44 -!- gnucode [~joshua@user/jab] has quit [Remote host closed the connection] 19:44 < Filystyn> i use 19:44 < Filystyn> sbcl 19:45 < Filystyn> so no worries 19:45 < Filystyn> clisp has shitty license 19:45 -!- zenptr [~zenptr@user/zenptr] has joined #openbsd 19:47 < xtile> be gay do crime: ignore licenses 19:48 -!- h0rror [~h0rror@user/h0rror] has quit [Ping timeout: 252 seconds] 19:48 < Filystyn> i just don't like gpl 19:48 < Filystyn> inner feeling 19:49 < thrig> WTFPL is a thing 19:50 -!- ficonni [~ficonni@46.235.96.214] has quit [Remote host closed the connection] 19:50 < Filystyn> no warranty and ftw 19:50 < morena> ye, that text file called license with some nonsense after millions lines of code ... everybody care about these lines 19:51 < morena> Please keep in mind, my text in this IRC channel is not GPL! 19:52 -!- gnucode [~joshua@user/jab] has joined #openbsd 19:53 < gnucode> hey friends. 19:59 -!- Night-Shade [~Tim@ip5b4168cf.dynamic.kabel-deutschland.de] has joined #openbsd 20:00 -!- jason123santaoni [~jason123o@pool-173-63-60-176.nwrknj.fios.verizon.net] has joined #openbsd 20:01 -!- h0rror [~h0rror@user/h0rror] has joined #openbsd 20:01 -!- jason123onirc [~jason123o@pool-173-63-60-176.nwrknj.fios.verizon.net] has quit [Ping timeout: 268 seconds] 20:04 -!- lavaball [felix@31.204.155.215] has joined #openbsd 20:05 -!- an3223 [~user@user/an3223] has quit [Remote host closed the connection] 20:07 -!- reset [~reset@user/reset] has joined #openbsd 20:07 -!- wsb [~wsb@user/wsb] has quit [Quit: ZNC 1.8.2 - https://znc.in] 20:08 -!- wsb [~wsb@viper.wsb.onl] has joined #openbsd 20:08 -!- wsb [~wsb@viper.wsb.onl] has quit [Changing host] 20:08 -!- wsb [~wsb@user/wsb] has joined #openbsd 20:10 -!- shassard [~user@d162-156-41-221.bchsia.telus.net] has left #openbsd [] 20:13 -!- accelerat0r [~user@user/accelerat0r] has quit [Remote host closed the connection] 20:17 -!- Hansol [~Hansol@94.156.58.157] has quit [Ping timeout: 252 seconds] 20:18 -!- engler [~engler@user/emilengler] has quit [Quit: Leaving] 20:24 -!- jason123santaoni [~jason123o@pool-173-63-60-176.nwrknj.fios.verizon.net] has quit [Quit: ZNC 1.8.2+deb2+b1 - https://znc.in] 20:25 -!- jason123onirc [~jason123o@pool-173-63-60-176.nwrknj.fios.verizon.net] has joined #openbsd 20:30 -!- wsb [~wsb@user/wsb] has quit [Quit: ZNC 1.8.2 - https://znc.in] 20:30 -!- NiceBird [~NiceBird@185.133.111.196] has joined #openbsd 20:30 -!- wsb_ [~wsb@viper.wsb.onl] has joined #openbsd 20:31 -!- bsdguydr [~bsdguydr@user/bsdguydr] has quit [Remote host closed the connection] 20:31 -!- bsdguydr [~bsdguydr@user/bsdguydr] has joined #openbsd 20:40 -!- gnucode [~joshua@user/jab] has quit [Remote host closed the connection] 20:42 -!- toxic0 [~toxic0@gateway/vpn/pia/toxic0] has joined #openbsd 20:45 -!- ficonni [~ficonni@46.235.96.214] has joined #openbsd 20:47 -!- lucenera [~lucenera@user/lucenera] has quit [Quit: The Lounge - https://thelounge.chat] 20:47 -!- lucenera [~lucenera@user/lucenera] has joined #openbsd 20:52 < Zyxer> gnucode: I have a pinephone, and I can tell you battery life is the biggest issue for me. It's like max 1 hour of active usage. And that is despite me having flashed the modem firmware for bettery power optimisation 20:53 < Zyxer> I got the pinephone Pro to be specific 21:02 -!- user71 [~user71@2001:1530:1008:f11c:1e6f:65ff:fe88:557f] has quit [Quit: Leaving] 21:02 -!- qwd [~qwd@185.203.114.234] has quit [Quit: bye!] 21:03 < morena> one hour? so it's landliine 21:06 -!- hitest [~hitest@user/hitest] has joined #openbsd 21:07 -!- qwd [~qwd@185.203.114.234] has joined #openbsd 21:12 -!- Vizva [~vizva@gateway/tor-sasl/vizva] has quit [Remote host closed the connection] 21:15 -!- dsrt^ [~dsrt@c-76-105-96-13.hsd1.ga.comcast.net] has joined #openbsd 21:15 -!- ajr [~ajr@user/ajr] has quit [Ping timeout: 255 seconds] 21:15 -!- lavaball [felix@31.204.155.215] has quit [Remote host closed the connection] 21:22 < Zyxer> Active usage, not using it it can last for 3 hours or more, depending on temprature. The longest time I seen it survive was like 12 hours under optimal circumstances. Before firmware update and in that case it lasted longer if you didn't use it because it cut off the modem and just pinged pone network in intervals. 21:22 < apotheon> morena: not landline, just not portable 21:22 < morena> can't use it while on charger? ;/ 21:22 < Zyxer> Use it mostly on charger 21:23 < morena> landline ye 21:23 < morena> kind of laptop without a battery, just useless one ;/ 21:23 < morena> with display of the sizee of mouse 21:24 < morena> I highly recommend 20 - 30$ dumbphones, charge it once in a week 21:24 < morena> I use Nokia 150 for like 5 or more years now, listening music there and that battery holds 21:25 < morena> only downsize is, if one need camera, that is bad there 21:25 -!- cruncher [~cruncher@user/cruncher] has quit [Quit: Leaving] 21:25 < morena> but I am not a spy 21:26 < thrig> my phone has infinite battery life 21:27 -!- byteskeptical [~amnesia@user/byteskeptical] has quit [Quit: Lost terminal] 21:29 -!- zenptr [~zenptr@user/zenptr] has quit [Quit: ZNC 1.8.2 - https://znc.in] 21:30 -!- Trigon [~reuben@144.39.114.115] has joined #openbsd 21:30 -!- an3223 [~user@user/an3223] has joined #openbsd 21:30 -!- zenptr [~zenptr@user/zenptr] has joined #openbsd 21:31 < Zyxer> I did get a dumbphone after around 30 text messages it broke, "Couldn't get sms not enough space" 21:32 < xtile> I hope to switch to a dumbphone this year, then switch to having no telephone at all sometime by the end of the year. 21:32 < xtile> Phones just aren't worth the money. 21:34 -!- termin [~uni@104.129.57.178] has joined #openbsd 21:34 < Filystyn> i use nokia, the cheap one like old models. Very satisfied with it and it costs very little 21:35 * phy1729 prods things back to OpenBSD relevant 21:40 < morena> ye that's the point phy1729 no phone, more time with OpenBSD ;/ 21:41 -!- NiceBird [~NiceBird@185.133.111.196] has quit [Ping timeout: 268 seconds] 21:42 -!- geekthattweaks [uid433447@user/geekthattweaks] has joined #openbsd 21:43 < xtile> morena: exactly 21:52 -!- fibonacci [~fibonacci@pool-98-116-54-124.nycmny.fios.verizon.net] has quit [Ping timeout: 276 seconds] 21:57 -!- SexWarrior [~DankFrank@2a01:4b00:940e:f600:100f:e32a:7a32:dda6] has quit [Quit: Leaving] 21:59 -!- leo-unglaub [~leo-ungla@2001:871:258:ad5d:908e:6189:6ef3:57cd] has quit [Quit: Leaving.] 22:01 -!- meros67817602046 [~meros@81-236-138-206-no275.tbcn.telia.com] has quit [Read error: Connection reset by peer] 22:03 -!- Alhazred [~Alhazred@user/Alhazred] has quit [Ping timeout: 248 seconds] 22:05 -!- Alhazred [~Alhazred@user/Alhazred] has joined #openbsd 22:05 -!- Filystyn [~piotr@user/filystyn] has quit [Quit: Lost terminal] 22:05 -!- jfsimon1981_b [~jfsimon19@lfbn-lyo-1-1344-171.w86-207.abo.wanadoo.fr] has joined #openbsd 22:06 -!- feriman [~feriman@188.163.114.49] has quit [Ping timeout: 255 seconds] 22:07 -!- gman999 [~GMan999@user/gman999] has quit [Quit: WeeChat 3.6] 22:10 -!- hitest [~hitest@user/hitest] has quit [Quit: Leaving] 22:10 -!- bouncy_ [~ben@user/benoit] has quit [Quit: WeeChat 2.8] 22:15 -!- gh34 [~textual@cpe-184-58-181-106.wi.res.rr.com] has quit [Quit: Textual IRC Client: www.textualapp.com] 22:17 -!- dutch [~DutchIngr@user/dutch] has quit [Quit: WeeChat 3.8] 22:18 -!- gnucode [~joshua@user/jab] has joined #openbsd 22:19 -!- scain [~scain@2603-8080-b104-4e00-45cf-678b-0a7f-b897.res6.spectrum.com] has quit [Quit: Konversation terminated!] 22:24 -!- sunwind [~paradox@145.167.6.51.dyn.plus.net] has quit [Quit: Outside Context Problem.] 22:25 -!- dutch [~DutchIngr@user/dutch] has joined #openbsd 22:26 -!- sunwind [~paradox@145.167.6.51.dyn.plus.net] has joined #openbsd 22:28 -!- byteskeptical [~amnesia@user/byteskeptical] has joined #openbsd 22:28 -!- OV3RDR1VE [~NULL1F13D@user/Xfce4BestDE] has quit [Quit: Konversation terminated!] 22:48 -!- termin [~uni@104.129.57.178] has quit [Ping timeout: 264 seconds] 22:49 -!- bsdguydr [~bsdguydr@user/bsdguydr] has quit [Remote host closed the connection] 22:49 -!- bsdguydr [~bsdguydr@user/bsdguydr] has joined #openbsd 22:50 -!- uwharrie [~uwharrie@user/uwharrie] has joined #openbsd 22:50 -!- MajorBiscuit [~MajorBisc@2001:1c00:2408:a400:7f99:b6d8:c8b8:dc05] has quit [Ping timeout: 250 seconds] 22:51 -!- gman999 [~GMan999@user/gman999] has joined #openbsd 22:52 -!- Trigon [~reuben@144.39.114.115] has quit [Ping timeout: 264 seconds] 22:57 -!- mechap [~mechap@user/mechap] has quit [Ping timeout: 246 seconds] 22:59 -!- mechap [~mechap@user/mechap] has joined #openbsd 23:00 -!- adip [~adip@c144-111.icpnet.pl] has quit [Ping timeout: 265 seconds] 23:11 -!- mechap_ [~mechap@user/mechap] has joined #openbsd 23:14 -!- namaste [~namaste@user/xyk] has quit [Read error: Connection reset by peer] 23:14 -!- mechap [~mechap@user/mechap] has quit [Ping timeout: 250 seconds] 23:15 -!- hussein1 [~weechat@gateway/tor-sasl/hussein1] has joined #openbsd 23:16 -!- termin [~uni@104.129.56.172] has joined #openbsd 23:21 -!- typicat [~me0w@user/typicat] has quit [Ping timeout: 255 seconds] 23:38 -!- AlaskanEmily [~AlaskanEm@user/alaskanemily] has joined #openbsd 23:39 -!- NicknameJohn [~NicknameJ@187-27-156-48.3g.claro.net.br] has quit [Ping timeout: 260 seconds] 23:39 -!- genpaku [~waldner@107.191.100.185] has joined #openbsd 23:42 < riceandbeans> whoops, https://arstechnica.com/tech-policy/2023/04/tesla-workers-shared-images-from-car-cameras-including-scenes-of-intimacy/ 23:43 -!- gman999 [~GMan999@user/gman999] has quit [Quit: WeeChat 3.6] 23:44 -!- gman999 [~GMan999@user/gman999] has joined #openbsd 23:45 < morena> videos are send back to tesla? lol 23:53 -!- housemate [~housemate@n175-36-37-203.meb3.vic.optusnet.com.au] has joined #openbsd 23:54 -!- Trigon [~reuben@144.39.114.115] has joined #openbsd 23:56 < phy1729> riceandbeans: that's not topical; please don't 23:58 < riceandbeans> phy1729: Sorry, I thought it was here someone was recently upset about Elon, it was another channel 23:59 < a1fa> /sysupgrade 23:59 < a1fa> are we there yet? --- Log closed Fri Apr 07 00:00:37 2023