libera/#devuan/ Friday, 2023-06-16

sfoxI can't connect to my mailserver reliably due to a bug in gnutls and openssl on freebsd interoperability03:15
sfoxI'm using claws-mail03:15
sfoxdo you know how I can rebuild libetpan to use openssl instead of fnutls?03:15
sfoxgnutls?03:15
sfoxi should be able to download a source of the package, change the build flags, and recompile and install the .deb right?03:16
XenguyWhere's gnarface when you need him?03:18
Xenguy: -)03:18
gnarfaceheh, thanks for the flag X03:21
gnarface*Xenguy03:21
gnarfacesfox: should be possible in theory, but how easy it is kinda depends on how good their source package is. i can walk you through the tool use basics if you need. start with "apt-get source libetpan" and "apt-get build-dep libetpan"03:22
sfoxthanks gnarface03:22
sfoxi apt-getted the source of libetpan2003:22
gnarface(apt-get update first obviously, and hopefully your sources.list is in order)03:22
sfoxwent into the folder and modified the build flags in debian/rules03:22
sfox--without-gnutls and --with-openssl03:23
gnarfaceoh, you're already aware of what to do then03:23
gnarfacealright03:23
sfoxwell i'm not sure what to do next03:23
gnarfacein theory if you just run "dpkg-buildpackage -us -uc" on it, it'll build the package (unsigned)03:23
sfoxwon't i need to change the dependencies before running build-dep?03:23
gnarfacehmm, if you want it to actually manually trace the dependency and it doesn't already offer them as an alternative, that'd be a good idea yes03:24
sfoxwhat file do I do that in?03:24
Xenguygnarface, np03:25
gnarfacei forget. should be something in ./debian though. grep fo rit03:25
gnarface*grep for it03:25
sfoxdebian/control?03:25
gnarfacesounds right. they have guidelines and stuff but don't really enforce their standards at this level very well. package maintainers might do something weird.03:25
sfoxok03:26
gnarfaceeither way, it should still work to manually install the dependencies, if you know them03:26
sfoxi'm gonna change all mentions of gnutls and lubcurl's gnutls flavor to openssl03:26
gnarfaceyou could also make it an "OR" with a |03:26
gnarfacehmm, i guess maybe that's not valuable though if you're changing the source to exclude gnutls, nevermind03:27
gnarfacein theory it should be possible to make a package that can support both but their code would also have to be setup to work that way and i'm not familiar enough with this package to know03:27
sfoxok so after I change the control file I run apt-get build-dep?03:29
sfoxno wait03:29
sfoxthat sources it's info from the repos03:29
sfoxi'm just gonna try to build it unsigned now03:30
gnarfacei think you will actually have to run apt-get build-dep then also manually install the extra openssl dependencies03:30
sfoxyes your right03:31
gnarfaceyea, i think build-dep comes from the repo, so to close the loop you'd have to make your own custom repo with this package and add it to your sources.list... it's probably not worth the effort for just one package, but if you're going to be doing it a lot it might be a good exercise03:31
sfoxit's building now03:31
gnarfacei think for custom repos i used reprepro before03:32
sfoxcan you link me some documentation on that? I'll check it out later03:32
gnarfacefor reprepro? i think i just used whatever was in the package; man pages and whatever was in /usr/share/doc/reprepro/03:33
sfoxi think it finished building03:33
gnarfaceno errors? you should see a new *.deb file somewhere nearby03:33
sfoxin the parent dir, i dpkg -i ed it03:33
sfoxguess i'll restart claws-mail and see if it worked03:34
sfoxthanks for the help gnarface03:34
gnarfaceno problem, let us know if it works03:34
gnarfacei forgot to remind you to iterate the build number, so if you didn't change the package name it might have had an install collision... i'm assuming though you must have remembered to do one of those things or dpkg -i would have errored, i think03:35
gnarfaceor it was a newer version than you had installed already maybe03:35
sfoxi didn't not remember to do that03:35
gnarfacejust make sure it did actually install03:35
sfoxlibetpan20/stable 1.9.4-3 amd64 [upgradable from: 1.9.4-3]03:36
gnarfacehmm03:37
gnarfacewell the executable itself should have a new date on it now, if nothing else03:37
sfoxit's a library03:37
gnarfaceer, well the binary03:37
gnarfacealternately you can just remove the old one03:38
sfoxhmm03:38
gnarfaceyou can remove it first, if it's a problem03:38
gnarfacebut what you're supposed to do is change that -3 in "1.9.4-3" to -403:38
sfoxhow do i increment the build number?03:38
sfoxi'll just build another version and upgrade to that03:39
gnarfaceit's in the ./debian directory too somewhere03:39
gnarfacei think if you run the tool to create a change log entry it increments it for you03:39
sfoxwhat's that tool?03:39
gnarfacei forget, looking it up03:39
gnarfaceis it a quilt thing? for some reason i'm remembering it starting with dh_03:41
gnarfaceah!03:42
gnarfacesfox: it's dch03:42
gnarface"dch -i" specifically03:43
sfoxthanks03:43
sfoxlooks like devscripts provides it03:43
gnarfacebut iirc it will launch your default editor and you must create a new changelog entry and it's very picky about the formatting03:43
gnarfacebut then the "-i" will make it auto-increment the build revision for you03:44
sfoxnow it won't build anymore03:44
gnarfacemaybe if the other one worked this is not worth it03:44
sfoxdpkg-source: info: you can integrate the local changes with dpkg-source --commit03:44
sfox libetpan-1.9.4/build-windows/build_headers.list03:44
sfoxdpkg-source: error: aborting due to unexpected upstream changes, see /tmp/libetpan_1.9.4-3.1.diff.x6odQu03:44
sfoxnvm, i ran the --commit command and it's building again, but i had to set the change message twice. Some kind of weird redundancy?03:46
gnarfacenot sure03:47
sfoxthankyou03:47
gnarfacethere's something about quilt and patch automation, i seem to recall sometimes it getting confused if i added a change log entry without there being an accompanying patch03:47
sfoxmy mail client is able to send again03:47
gnarfacenice, so it works and it's definitely using openssl now?03:47
gnarfacethis is the reference i learned from, but they brutally over-complicate the explanation process: https://www.debian.org/doc/manuals/maint-guide/03:48
sfoxgah!03:49
sfoxnevermind i spoke too soon03:50
gnarfacethe second build, did it get the "-3" part updated to "-4" ?03:50
sfoxwell, libetpan itself is using libssl now, checked with ldd but claws-mail still pulls in libgnutls for some reason03:50
sfoxgnarface, it appeneded a .103:51
sfoxVersion: 1.9.4-3.103:51
gnarfacehmm, there's some way to make it not do it that way03:51
gnarfacesfox: well the dependencies on claws-mail clearly list libgnutls30 and not libssl03:53
gnarfaceyou might have to rebuild it too03:53
sfoxi'm checking if claws-mail supports no-gnutls03:53
sfoxif i'm going to rebuild that i'd like to upgrade to 3.19.x03:53
gnarfacewell, this is interesting.... i just downloaded the source package for libetpan on daedalus and you know what it says the latest version is in the changelog? 1.9.4-3.103:55
sfoxlibEtPan! (>= 0.57)03:55
sfox    for IMAP4, NNTP and Mailmbox plugin support03:55
sfoxhmm. you know maybe i misdiagnosed the root of the problem03:55
sfoxthis implies libetpan is only used for imap and nntp03:55
sfoximap isn't the problem, it's the smtps connections03:56
brocashelmi got a 1920x1080p monitor that can go up to 75hz, but even via hdmi, i can only get it to 60hz. is there a good xrandr workaround for this, or does the hdmi cable matter?03:56
gnarfacesfox: that'd be handled by your mail server directly. exim4 by default03:56
sfoxthe mail server is on freebsd using opensmtpd03:56
gnarfaceoh, hmmm03:56
brocashelmi tried applying those --newmode arguments (after running -> cvt 1920 1080 75), but to no avail03:57
sfoxthere's a problem looking at packet traces with interop between gnutls and the server03:57
gnarfacesfox: is freebsd using libressl now?03:57
sfoxno03:57
sfoxit's using openssl03:57
brocashelmi did notice the 74.91hz from xfce's display config, but my screen goes blank with an "out of range" message (monitor side, not devuan)03:57
sfoxhttps://man.freebsd.org/cgi/man.cgi?query=ssl&apropos=0&sektion=0&manpath=FreeBSD+13.2-RELEASE&arch=default&format=html03:57
brocashelmand if gpu matters, using rx 56003:57
sfoxi get the some ssl/tls handshake issues with nagious-plugins and gnutls-client03:58
sfoxon debian03:58
sfoxnagios-plugins uses gnutls03:58
gnarfacebrocashelm: did you install the amdgpu package from non-free/non-free-firmware?03:58
sfoxopenssl doesn't have any interop problem though03:58
brocashelmi tried -> xrandr --newmode "1920x1080" 220.64 1920 2056 2264 2608 1080 1081 1084 1128 -HSync +Vsync03:58
brocashelmgnarface: i have firmare-amd-graphics03:59
gnarfacebrocashelm: yea, that's what i meant. what does your "xrandr" output say while xorg is running?03:59
gnarfacebrocashelm: (put it at paste.debian.net or just /msg it to me)04:00
brocashelman apt search for amdgpu yields three packages: libdrm-amdgpu1 (installed), ricks-amdgpu-utils (not installed), xserver-xorg-video-amdgpu (installed)04:00
brocashelmok04:00
brocashelmgnarface: https://paste.debian.net/hidden/c481500b04:01
gnarfacesfox: i think there's a way to debug a openssl port using the openssl binary from the client machine, which would be a good way to check for version compatibility issues, but you'll have to consult the documentation for details, i forget the specifics about it04:01
onefanglxrandr is thee GUI thing  always use for setting monitor frequency.04:02
brocashelmignore the DVI-D-0 part (my gpu supports it, but my monitor otherwise only does vga besides hdmi; trying to add the profiles somehow went to dvi instead of hdmi)04:02
sfoxgnutls tries to start with a tls1.0 handshake instead of at least a 1.204:02
gnarfacebrocashelm: worth noting that cables may indeed matter, with HDMI, and i've run into issues specifically like this before. do you happen to know what hdmi version the cable is supposed to support?04:02
brocashelmlxrandr does not offer anything beyond xfce4-display-settings04:03
onefangOK, so your problem is deeper then.04:03
gnarfacebrocashelm: wtf is that on line 21?04:03
gnarfacebrocashelm: did you add that?04:04
brocashelmgnarface: yes04:04
brocashelmgnarface: i think it's more of a typical hdmi cable, and i have a couple of those; one of them (that i tested with) is just saying hdmi cable with 30v04:05
gnarfacebrocashelm: so, basically what i'm seeing here, aside from the weird stuff you put in it, is that xrandr thinks this monitor's max refresh at 1080p is 60Hz. i do not know if that's taking the cable into account or not. i don't know if it's lying either.04:05
brocashelmgnarface: even restarting x or rebooting did not adjust this. the command that created line 21 was -> xrandr --addmode HDMI-A-0 "1920x1080_75.00" (going off the arch wiki)04:06
gnarfacebrocashelm: what happens if you force it to select that one with xrandr?04:06
brocashelmis there a way to remove that profile, or does it go away after a restart?04:06
gnarfacegood question. i assume they're not cached anywhere but i'm not sure.04:07
gnarfacei would assume that they'd all drop as soon as you exit Xorg actually04:07
brocashelmit basically goes back to that "out of range" error04:07
gnarfaceright. hmmm.04:07
brocashelmyup, you're right04:08
brocashelmexiting xorg erased those additions04:08
brocashelmstill at 60hz, though04:08
gnarfaceyou're sure the video card can do this on the hdmi port? that's a recent enough one it sounds like it should, but i do know that it's common on that era of cards for the displayport output to support better modes than the other ports04:08
brocashelmit's 7 pm here and most of the stores are closed/closing, so i guess i'm stuck for now04:09
brocashelmyes, the rx 560 gpus should be able to04:09
gnarfacei have a slightly newer one but similar characteristics, and i know for sure the hdmi ports have different refresh ranges than the displayport ports, and the displayport ones are better04:09
gnarfaceand i have monitors that preferred dvi so i had to get displayport -> dvi adapters04:10
* gnarface rolls eyes04:10
brocashelmthis is my gpu: https://www.msi.com/Graphics-Card/Radeon-RX-560-AERO-ITX-4G-OC/Specification04:10
brocashelmheh04:10
onefangI have two of those monitors.  lol04:11
gnarfacebrocashelm: mine is a RX 5500, like basically the very next generation04:11
gnarfacebrocashelm: what i'd do if i were you, is get a high quality hdmi 2.0 cable. don't cheap out on it04:12
onefangGot a RX 5600 XT here.04:12
gnarfacebrocashelm: your spec sheet here specifically references HDMI 2.0 in a way that makes me suspect they didn't test with anything else04:12
brocashelmi got rx 6500 xt, but it doesn't work on pci 3.0 mobos sadly04:13
brocashelmhmmm04:13
gnarfacebrocashelm: it'd be nice if you could borrow one from someone just as a test before you spend money on it though. i know they're pricy, but the cheap ones are never worth it.04:13
brocashelmgnarface: i'll probably just invest in a good one, either way04:14
onefangI'm still scratching my head over that 4 video output graphics card having six audio devices according to ALSA.04:14
brocashelmxrandr probably wasn't the solution04:14
gnarfacehmm, so now i'm trying to remember how i actually got my system to cough up the right refresh ranges for both port types. i know i did it somehow, that's how i found out they were different. maybe it was xrandr or maybe it was the xorg logs, not sure.04:14
brocashelmguess i'll hurry over to a nearby store...04:14
gnarfacebrocashelm: you said the monitor's best port was hdmi?04:15
gnarfaceor dvi? or vga?04:16
gnarfaceyou might also want to consider, if they have them, a displayport -> hdmi or displayport -> dvi cable, so you can use the graphics card's preferred ports just in case that matters04:16
gnarfacesince like i said, i did discover it mattered on mine04:16
gnarface(the hdmi cable incident was with different hardware)04:17
brocashelmgnarface: that would be correct; vga is the only other one (yuck)04:18
brocashelmyeah, might also do that if the hdmi 2.0 experiment doesn't fix this04:18
brocashelmdisplayport output to hdmi input04:18
gnarfacebrocashelm: this spec sheet from msi is vague on it. i'd want to know if they have different refresh ranges, and i suspect they might because mine certainly does.04:18
brocashelmgnarface: this was the best gpu that i could slap on a 3rd gen i704:19
gnarfacebut dvi, hdmi, and displayport should all be similar enough that a converter cable will not incur loss04:19
gnarface(as long as it's the right freaking hdmi version. damn i hate this specification)04:19
onefangOne of my computers has Display Port output, Display Port to HDMI converter, HDMI cable, HDMI to DVI converter, then actual monitor.  lol04:20
gnarfacehah04:20
gnarfaceyea i was lucky enough to find some good cables that do that all in one piece.04:21
onefangThis was more a case of coble it together with what I already had.04:21
gnarfacehmm. so, i have the alternate hdmi refresh ranges in my notes, but i realize now i haven't actually noted whether the limitation was on the video card end or the monitor end, and now i'm wavering on my previous certainty that it was the video card's limitation04:30
gnarfacethough, i don't know why in particular the monitor would put dvi and vga at higher ranges than hdmi04:31
gnarfacebut the vertical refresh for the hdmi one definitely maxes out at 6004:31
gnarfacebrocashelm: ^04:31
gnarfaceit makes more sense for it to be at the video card end, since the displayport ports were the new technology then, and that matches my recollection but now i'm just not sure04:33
gnarfacethis was actually a big source of confusion for me for a few days04:34
gnarfacesfox: is that the client starting with tls1 or the server end?04:36
brocashelmgnarface: that's a good point05:00
brocashelmcouldn't find a higher-grade hdmi cable or even dp-to-hdmi converter05:01
gnarfacebrocashelm: the thing is, i do have a counter anecdote, where a hdmi cable was mislabeled as hdmi 2.0 by the vendor (amazon) and couldn't even make it to 1080p@6005:18
gnarfaceso based only on the evidence here i can't narrow it down to the port, the cable, or the display actually05:18
gnarfaceit could be any of them as the culprit05:18
gnarfaceer. well i guess the msi spec page implies it should not be the though, since we'd assume if it can do 4k@60 over hdmi, it can do a higher refresh at 1080...05:20
gnarfaceit's not much to go on though, since it only implies that and i don't know if there's any sort of guarantee in the spec05:20
gnarface*should not be the port05:21
gnarfaceso probably the cable or the display... if you can find the manual for the display, i'd recommend checking it05:22
gnarfacesome of them have rather detailed specs, some of them don't. you might get lucky.05:22
brocashelmyeah05:26
brocashelmi already ordered a few connectors; we'll see05:26
brocashelmhdmi is pretty unstable when compared to dp or even dvi05:27
brocashelmso dp and/or dvi might yield better results05:27
nemobrocashelm: not too sure about your particular problem, but I will say that the restrictions of HDMI's DRM restrictions can be irritating and random05:45
nemobrocashelm: on vacation my devuan laptop and arch steamdeck would both only connect to the TV at like 640x48005:45
nemo*until* I switched the hdmi cable to the one that their ancient DVD player was on. then I got full resolution05:46
nemoI regrettably didn't think to test whether it was their cable or that the port that old DVD player was on was whitelisted.05:46
rustyaxerwp: was able to get up enough with netbooting the devuan installer in rescue mode and rebuilding the initramfs, as we expected. Was just a matter of getting it to pxe boot (only actually works in non UEFI mode); did that, switched back to uefi mode and erything good. Thanks09:02
hacksenwerkDevuan 12 has Kernel 6.1 as default right?11:11
brocashelmdevuan 5.0 daedalus, yes11:12
brocashelmi have no idea what devuan 12.0 will be like11:12
hacksenwerkbrocashelm: :D11:13
hacksenwerkIs it really called devuan 5?11:13
hacksenwerkI didn't know that11:13
hacksenwerkI thought it would just take the debian release scheme11:14
hacksenwerkI mean Jessie was still Debian, but just with trying to run without systemd11:15
brocashelmsee this page: https://www.devuan.org/os/releases11:16
brocashelmso they started from 1.0 with jessie, then 2.0 with ascii (stretch), etc.11:16
hacksenwerkbrocashelm: yeah as it seems11:24
hacksenwerkI always said Devuan 11 and 12 in the last weeks ^^11:24
buZzhacksenwerk: you've always been wrong then ;)11:34
hacksenwerkbuZz: As it seems11:40
hacksenwerkBut I never used the numbering before, I always used the codename11:41
hacksenwerkOr stable, testing etc.11:41
buZzyou said you used it a lot in the last weeks ;)11:41
hacksenwerkYes I but I use devuan since jessie11:44
hacksenwerkI then changed back to debian for some months last year and came back to devuan this year and then I started using the numbering.11:45
hacksenwerkBack to my initial post: Does that 6.1 kernel get multiple updates a week?11:46
hacksenwerkI use linux-libre 6.1 and 5.15 as a backup, but 6.1 gets updated very often.11:47
hacksenwerkI want to know if that is the same with the stock kernel.11:47
brocashelmdepends on your distro. that's a rolling release thing11:48
brocashelmstable distros do not change except for security and some bug fixes11:48
hacksenwerkbrocashelm: yes that I know.11:50
hacksenwerkThat 6.1-gnu kernel is lts, so I wonder why it gets so many patches...11:50
buZzso on debian/devuan it -shouldnt- be updating that often11:50
hacksenwerkThe 5.15-gnu is not getting so many.11:51
hacksenwerkIs it problematic to run daedalus with the 5.15 kernel in any case?12:22
hacksenwerkI mean do any program version of the packages that come with daedalus depend on a higher kernel version or something?12:24
hacksenwerkEspecially any important system packages.12:24
n4diri'd doubt that.12:26
n4dirprobably can't see whateve i never use at all, say nvidia and stuff12:27
hacksenwerkn4dir: OK :)12:27
n4dirso stuff that "you compile against the kernel", whatever that might be. It could exist, i wouldn't know12:27
hacksenwerkGood bye 6.1 !12:28
n4dir:-)12:28
hacksenwerkbut... need to reboot first x)12:28
buZzDKMS is a thing too :P12:28
buZzwhy do you not want to run 6.1 btw?12:28
n4diryou always have the other kernel around, if you don't remove it on your own, so it seems like a safe try it and see12:29
buZzseemingly only make my machines more responsive12:29
brocashelmdaedalus mainly tracks bookworm's repo and merges it with devuan's forked packages to mitigate potential issues due to systemd being evoked12:31
brocashelmanything that happens in debian, 99.9% of the time devuan gets it12:32
n4diron a daily basis i see no difference between running debian and devuan, what i do12:33
n4diri do feel it is more snappy, but that might well be a feeling only, me kinda not liking systemd12:33
hacksenwerkBut DKMS is only that I don't have to do a reboot after a kernel update?12:36
hacksenwerkBecause I always reboot when some system stuff was updated12:37
hacksenwerkwoah... When you look at the version history of linux, you can see how code base explodes...12:40
hacksenwerk6.1 has 35.548.350 lines of code.... o0 Who read them?12:41
hacksenwerkCan read them12:41
buZzhacksenwerk: no, DKMS is for building modules for your kernel12:49
buZzhacksenwerk: whats the motivation to not running 6.1 btw?12:49
hacksenwerkbuZz: I run linux-libre, not the stock kernel form the devuan repo. And linux-libre (even if you use the deb package repo of them) is tied to upstream, so you get a lot of updates... I don't like that, I like to get only updates if it is important (security stuff for exmaple). That 5.15 kernel of them is does not get that many updates, that's why I use it now.12:52
buZzhacksenwerk: so why not use devuan's kernel?12:53
hacksenwerkbuZz: DKMS: yeah I just took a quick look at the wiki article12:53
hacksenwerkbuZz: Why using linux-libre? :)12:53
buZzyeah why the burdon12:53
hacksenwerk:D12:54
buZzdont you want faster hw?12:54
brocashelmthere is also gnuinos12:55
hacksenwerkbuZz: linux-libre comes without blobs12:55
buZzhacksenwerk: yes, whats the benefit? those blobs are needed for certain hw12:56
hacksenwerkbrocashelm: yes some other user told me. But I try to aovid the distro hell and stick with the main distros (devuan is an exception of course, because it is how debian should be...)12:56
hacksenwerkbuZz: I don't need them.12:56
brocashelmhacksenwerk: gnuinos is a devuan respin...12:57
buZzhacksenwerk: then having them inside the kernel wouldnt bother you?12:57
buZzyou likely have a lot more code that you never run, you dont need to delete it :P12:57
brocashelmi am starting to think you are just trolling12:57
buZzme? no12:57
hacksenwerkbrocashelm: Yes so another distro. We don't need more distros, we nees a few very relaibale ones.12:57
brocashelmhttps://www.gnuinos.org/12:57
brocashelmno, hacksenwerk12:57
brocashelm^ buzz12:57
buZzoh, no , i think the 'i dont want blobs' is just some repeating of someone else's view?12:58
hacksenwerkbrocashelm: what is your problem now dude? Why do you say I'm trolling?12:58
buZzdont assume gender :)12:58
hacksenwerkbuZz asked me something and I answered.12:58
brocashelmnever mind, carry on with the pointless drivel...12:58
brocashelmjust forget about it12:59
brocashelmbesides, this is OT talk12:59
hacksenwerkbrocashelm: No, it is about the kernel devuan uses.12:59
hacksenwerkbrocashelm: you went oft with your 12:55 < brocashelm> there is also gnuino12:59
* brocashelm sighs13:00
buZzOT can mean 'on topic'13:00
buZz:P13:00
hacksenwerkbrocashelm: lol13:00
buZzi like that gnuinos has a typo on their frontpage13:01
hacksenwerkbuZz: Yes and brocashelm wanted to say that I'm getting oft.13:01
buZz> we would like to thank the whole Devuan commutity13:01
hacksenwerkAnyway...13:01
brocashelmi didn't "want to say", i already said it exactly...13:02
buZz:)13:02
brocashelmso if you don't have a support question, this is not the channel for that13:02
buZzi was just curious about -why-13:02
buZzbut yeah i guess13:02
latexHey guys, if XFCE doesn't start, what do you do?15:58
latexstartx?15:58
ted-iousThat works and also startxfce.15:59
rustyaxelook at the logs in ~/.xsession-errors to start15:59
rustyaxemight find why its not starting in ther15:59
ted-iousBut maybe you don't have a login manager started or even installed.15:59
latexstartxfce doesn't exist16:04
latexstartx did work, but no internet connectivity16:05
latexI wonder how that happened16:05
ted-iousWhat do you mean no internet connectivity?16:09
ted-iousStartx turns off your network?16:09
latexNo, it didn't work at all before running startx16:09
latexSomehow on my friend's computer, things are not behaving as usual16:09
latexXFCE doesn't start when booting when before it used to do that automatically16:10
latexNo internet connectivity, nvidia drivers not working all of a sudden16:11
ted-iousIf there's no networking at all then I don't think xorg can start.16:11
latexSeems weird16:11
ted-iousYou at least need a working localhost connection.16:11
latexX did start16:11
latexbut not automatically16:11
latexapparently uninstalling nvidia drivers caused keyboard and mouse to stop working16:14
latexanyone know which file is responsible for running startx automatically? And why keyboard and mouse stop working without nvidia drivers?16:17
ted-iousIf you don't have a display manger installed and enabled you won't have x started automatically.16:18
ted-iousStartx is not the display manager.16:18
ted-iousIt's a script for starting x on a system that doesn't run it automatically.16:18
latexBut the devuan daedalus refracta installer has some method of starting XFCE automatically16:20
latexthat's how it was on my friend's computer16:20
latexoh it seems there is a display manager16:21
latexAnyone know which display manager is used for the refracta installer variant of devuan?16:21
ted-iousI don't know what refracta is so no. :)16:27
ted-iousI would install and enable lightdm or at least xdm if it were my system.16:28
ted-iousMaybe sddm.16:29
fsmithredtime16:43
fsmithredted-ious, devuan desktop-live isos use slim login manager, same as if you installed the default desktop from the installer isos.16:45
fsmithredauto-login comes from the live-config scripts (/lib/live/config/*)16:46
ted-iousOh ok.16:46
ted-iousI made a chimaera vm to play with and it ended up with the ugliest dm I've ever seen. :)16:46
ted-iousI think it was xdm but I can't be sure.16:47
fsmithreddid I read the logs correctly that latex removed nvidia drivers and then gets no desktop?16:47
fsmithredxdm is ugly. I think so is sddm.16:47
fsmithrednvidia drivers use xorg.conf last time I checked. Maybe that needs to be edited or more likely just removed.16:48
ted-iousI checked and it's xdm.16:48
ted-iousI guess if you want sddm you have to install a bunch of kde components.16:50
ted-iousAnd it looks like if you want lightdm you have to install a bunch of gnome components.16:50
fsmithredlxdm is lighter than lightdm16:56
latexfsmithred: you got it wrong. I get a desktop, but keyboard and mouse do not work17:12
latexthat is all17:12
fsmithredlatex, did you try unplug/replug mouse?17:14
latexyes17:19
fsmithredok, so then I don't have to look up what to do if that fixed it.17:21
fsmithredunless it fixed it.17:21
golinuxGood grief . . . why do y'all keep feeding hacksenwerk's nonsense . . . Do we really want to bloat the logs with that?17:44
latex devuan_daedalus_5.0.preview-20230601_amd64_netinstall.iso is this a good installer?19:18
latexmy friend is going to yet again reinstall devuan19:19
latexbut instead of using refracta I want to give him a good installer19:19
latexalso his devuan install mysteriously broke after using Ventoy19:20
golinuxNo surprise when you play with third party software . . .19:27
latexwdym19:28
golinuxIt is not in the Devuan or Debian repos19:31
golinuxOf course, your friend might not know how to use it also . . .19:31
golinuxEven you don't seem to understand what the refracta installer is about . . .19:32
latexWell I've had to see it remotely on Jitsi while he installed using refracta19:37
latexBut it's a crap installer so I'm giving him the netinstall which someone here on IRC recommended19:37
latexWhy can we not set bootable flag on the EFI partition?19:45
latexWhen in the "Use partition as" prompt I can only select "FAT32" or "Reserved BIOS boot area" and when selecting "FAT32" we cannot set boot flag19:46
latexWhy not?19:46
latexWhich one of the two should be used? The mountpoint should be /boot/efi right?19:46
latexWhat a weird installer. I thought this would be better than refracta19:46
___usedrefracta is very good, no?19:58
latexnope20:00
latexit sucked20:00
___usedI disagree20:00
latexmy friend reinstalled devuan with openrc, yet openrc doesn't seem to be installed at all21:16
latexand xorg is borked21:16
latexand I can't SSH into his computer21:21
latexwe did add my key to /root/.ssh21:21
latex/root/.ssh/authorized_keys21:21
fluffywolfare ssh root logins disables?21:21
fluffywolfdisabled21:21
latexand my friend even changed root password and I still can't log in21:22
fluffywolfroot ssh logins are disabled by default, as they should be.21:23
fsmithrededit /etc/ssh/sshd_config21:24
fsmithredor make an auth key pair for root to use.21:24
latexI am confused21:28
latexthe authorized_keys file looks good to me21:28
latexBut sshd just doesn't let me in with pubkey auth21:28
latexAnd pubkey auth is turned on implicitly21:28
latexI had to get in by using password auth with PermitRootLogin prohibit-password21:28
latexyes*21:28
latexs/prohibit-password/yes/21:29
fsmithredhuh?21:29
latexWait I found the problem21:30
latexIt might be UsePAM yes21:30
latexUsePAM is ass21:31
latexWhy the fuck is it on?21:31
latexnvm UsePAM no didn't fix it?21:32
golinuxYour experience is not the norm.21:33
golinuxMaybe the driver can't read the road signs . . .21:33
fsmithredI just tried root login with auth key in daedalus, and it worked as expected.21:33
fsmithredwhat commands are you using?21:34
golinuxpebkac methinks21:34
latexmv id_ed25519.pub /root/.ssh/authorized_keys21:35
latexthat's what I did21:35
latexwait maybe the permissions are weird21:35
latexlet me check21:35
latexyep21:36
latexthat was my problem21:36
latexanyone know how to setup xorg when it's broken?21:38
latexI like how xorg just segfaults21:39
latexat address 0x2021:39
latexanyone know how 2 fix?21:41
___usedperhaps you want `service slim start`?21:54
___usedlatex:21:56
latexwhy does x11 segfault though?21:58
___usedrunning it without infrastructure on unknown hw?21:58
___useds/infrastructure/driver/21:58
latexdoesn't do anything22:01
latexit is running though22:01
latexsddm22:01
latexwhich TTY should I switch to?22:01
___usedindeed. you are remote no? tty522:02
___usedxvnc maybe?22:02
latexCtrl+Alt+F5?22:03
latexor just Alt+F5?22:03
fsmithredalt-F5 for tty522:04
latexsddm.log is empty22:04
___usedif your kvm/remote thing teleports gui then as fsmithred said22:04
latexI don't want to remote22:04
latexmy friend is at the computer22:04
___usedah22:04
latexI'm just running the commands and instructing him to look22:04
latexbut nothing is happening22:05
latexsddm seems frozen22:05
latexno output22:05
___usedctrl-alt-f5 or alt-f522:05
___usedwhat does syslog say?22:05
latexhow do I view that?22:05
latex[    4.860628] nouveau 0000:09:00.0: DRM: failed to create kernel channel, -2222:06
latexthere's this22:06
___usedaha22:06
___usednouveau suggests nvidia hw?22:06
___usedtry to run in vesa mode22:06
latexhow?22:06
latexI guess I'll just install nvidia-driver22:07
___usedtry22:07
___usedvesa: https://forums.debian.net/viewtopic.php?p=410234&sid=ca1db47422b30e2acac6ef2c8b9d62b5#p41023422:09
latexhttps://dpaste.com/GSX2L99H722:14
latexWhat happened to nvidia-driver?22:15
___useddo you have non-free repos enabled in sources.list ?22:16
latexyes22:17
latexhttps://dpaste.com/3BXEEZKU922:19
___useddid you force install or pin/hold any packages?22:20
latexthis is a fresh install22:21
latexusing the daedalus netinstaller22:21
fsmithredwhat did you install?22:21
latexnvidia-driver22:25
fsmithredhow did you get sddm?22:25
fsmithredwhat boxes were checked at the tasksel window?22:25
latextasksel?22:26
latexwe installed sddm, xfce, mate, lxde22:26
fsmithredok, so you're in untested territory22:27
fsmithredprobably a lot easier if you just install one desktop environment22:28
latexany idea how to fix it in the current install?22:28
fsmithredmaybe remove the desktops you don't want and replace sddm with the default display manager for that desktop.22:29
fsmithredjust a guess22:29
latexBut why is nvidia-driver broken?22:30
latexWe gotta fix that22:30
fsmithredI haven't used nvidia in a few years, so I don't know the current procedure, but when I do a simulated install of nvidia-driver on daedalus, I don't get any errors.22:32
latexwell apparently I do22:35
latexI posted my sources.list too22:35
latexif you scroll up22:35
___usedcan you run: Xorg -configure >xorg-configure.conf 2>&1 ; and paste the output?22:38
___usedyou need to telinit 2 before that22:39
fsmithredadd contrib22:39
fsmithredsome of the nvidia packages are in contrib. I would add that and also add non-free to -security and -updates22:40
fsmithredI need to go.22:40
___usedyeah me too, soon22:41
latexwell my friend is already reinstalling again22:52
latexnow with chimaera22:53
latexwhat does telinit 2 do?22:53
fsmithredtelenit 2 or init 2 will put you into the default runlevel, which is multi-user graphical environment23:03
fsmithredbbl. bye.23:03
latexLMAO guys the funniest thing ever happened23:50
fluffywolftrump got beaten to death by elon musk?23:51
latexI ssh -Y'd into my friend's computer, ran slim and BOOM! SLiM took over my whole PC and I was stuck in the login screen for my friend's computer!23:52
debdogthat's what ssh -X does, isn't it?23:57
debdogdoesn't it? too tired for proper grammar23:57

Generated by irclog2html.py 2.17.0 by Marius Gedminas - find it at https://mg.pov.lt/irclog2html/!