libera/#devuan/ Tuesday, 2020-08-25

gnarfacesuavedandy: yes, /etc/modprobe.d/  ... the file just has to end with .conf00:04
\0xc0ffeeWell, on that note, I do have my copy of K&R I should dust off and get back to reading00:04
suavedandyIt's not the first time I ripped the beep of a kernel. I always create nobeep.conf for every system.00:04
suavedandyIt's a bit annoying that the > operator does not work on system files if you're not root.00:05
suavedandyIt's such a nifty operator.00:06
gnarfacehmm.  i think that is probably for security00:06
gnarfaceyou can chain commands with su though00:06
gnarfaceor sudo00:06
gnarface(i try to use su first and avoid sudo if possible)00:06
suavedandyAvoid sudo?00:06
gnarfaceyea, for a machine that only you access, sudo is entirely functionally redundant to su, and therefore a unnecessary security risk00:06
suavedandyBTW, guys. Have you thought about adding doas?00:06
gnarfaceeverything in devuan is there because debian put it there00:06
gnarfacedevuan does not add to debian, only removes00:06
gnarfacethat defines devuan00:06
masonor swaps00:06
gnarfacewell, yes my statement is a vast oversimplification00:06
suavedandyAlso. How do you shutdown without a password without sudo? I mean, on systemd systems you could systemctl poweroff with polkit but…00:07
gnarfacein practice, most the packages are identical to debian, a few are patched, and a few others are removed00:07
masonsuavedandy: Don't shut down without a password!00:07
suavedandyBut I want to shutdown without a password.00:07
gnarfacesuavedandy: (see here for removed packages: http://deb.devuan.org/bannedpackages.txt)00:08
suavedandyAlso, if sudo is redundant, can you, like, delete it?00:08
gnarfacesuavedandy: well, yes but uninstall it, don't just delete the files, that leaves makes a mess00:08
gnarfacesuavedandy: apt-get --purge remove sudo00:09
masonsuavedandy: sudo has a purpose even on single-user systems - it'll give you a time buffer where you can do things as root without having to type your password more than once00:09
gnarfacesuavedandy: or apt-get purge sudo (newer syntax)00:09
suavedandyWill aptitude purge -y sudo also work?00:09
masonshorter still, sudo apt purge sudo00:09
gnarfacesuavedandy: i'm not as familiar with aptitude, but use whatever you're comfortable with.  if you purge, it's supposed to also remove config files.  if you just remove, it would leave them behind.00:10
suavedandyAlso, I don't have a seperate root account.00:10
suavedandyShould I also create a root password and delete myself from sudoers?00:11
suavedandyOr does the %sudo group disappear after purging?00:12
gnarfacewell00:13
gnarfacesudo isn't AS dangerous if you configure it right00:14
gnarfaceit's much worse if you use NOPASSWD00:14
suavedandySo. I just purge sudo, reboot and that's it?00:15
gnarfacehmmm00:15
gnarfaceas your regular user, type this first:  su -00:15
gnarfacewhat does it give you?00:15
gnarfacea password prompt, right?00:15
gnarfaceor an error?00:15
gnarfacei don't want to actually cripple your system and i've literally never put myself in the position you're in00:16
suavedandyA password promt.00:16
gnarfaceit honestly might be better for now for you to just keep sudo and read the sudoers manpage00:16
suavedandyThen an error.00:16
gnarfacea password declined error, because you entered your user's password?00:16
gnarfaceor some other error?00:16
gnarfacei don't remember the error, i need you to tell me what it says00:17
gnarfaceif it's just a password declined error, run this first: sudo passwd00:18
suavedandyIdentity check error.00:18
gnarfacehmm00:18
suavedandyI don't have a root password.00:18
gnarfaceif you run "sudo passwd" does it ask you for the root password to set a root password, or does it just ask you what you want to set the root password to?00:19
suavedandyIt asks me for my password.00:19
gnarfacesorry, i mean after that00:20
gnarfaceafter sudo asks you for your password, what does passwd ask you for?00:20
suavedandyA new password.00:20
gnarfacea new root password, right?00:20
gnarfaceideally it should be something different from the user's password, but doing so would make it no less secure than what you have now00:21
suavedandyIt just says "New password:"00:21
gnarfaceyea00:21
suavedandyI have a localization so I dunno.00:21
gnarfacealright, if you want to be sure, ctrl+c that out, and instead start over as your user with this command:  sudo su -00:22
gnarfacethen, at the prompt that comes up just run "passwd"00:22
suavedandyIs - necessary?00:22
gnarfacei mean, i'm assuming that prompt will obviously be a root prompt00:22
gnarfaceyes, the "-" was there intentionally00:22
gnarface("-" in this context tells it to inherit root's environment too)00:23
suavedandyShould the password be something different?00:23
gnarfaceyes, like i said, the root password should be something different for security, but if you make it the same as your regular user it would be no less secure than the way you had it00:24
gnarfaceand if multiple people use this machine, telling everyone both passwords also makes it no more secure00:24
suavedandyI also have an encryption key.00:25
gnarfacehaving a separate root password is only useful for security of a shared machine if the root password is a secret00:25
gnarfaceotherwise you might as well just use sudo00:25
suavedandyThat's a personal computer, obv.00:26
gnarfacei'm assuming the encryption key is only relevant to network connections, be aware that physical access is much less well defended00:26
suavedandyAnd you said that sudo is redundant for a single-user PC.00:27
gnarfaceyea, because it's primarily for not having to remember two passwords00:28
gnarfacebut you could just set both passwords to the same thing and you still don't have to remember two passwords00:28
gnarfaceso it's stupid00:28
suavedandyHeheh.00:28
suavedandyYou're right.00:28
\0xc0ffeegnarface: NOPASSWD is useful in a small number of cases where it behaves approximately analogous to Windows UAC, that is, 'sudo su - ' drops you to a root shell without having to enter a password, let alone reusing the same password as your non-root account.00:29
suavedandyOkay, "su -" works now.00:30
\0xc0ffeeBut I only use that configuration on VMs I spin up for testing this or that, and they're not on the internet00:30
gnarfacesuavedandy: should be safe to purge sudo then now00:30
gnarface\0xc0ffee: to be fair, you're right; what i'm glossing over is my own personal policy of considering that a banned configuration00:31
suavedandyHow do I use commands with root privs now?00:31
\0xc0ffeeApropos to the folks behind Devuan, making it possible and useable - a hefty thank you, because I do use it and it neatly lets me avoid touching CentOS00:31
suavedandyIs it like "su command?"00:32
gnarfacesuavedandy: if you just use "su -" you get a root prompt00:32
gnarfacesuavedandy: su -c '[command]'00:33
\0xc0ffeegnarface: And you wouldn't be alone in that position, it's a sane position to take00:33
gnarfacesuavedandy: i think00:33
gnarfacesuavedandy: also you can pick users other than root if you know their passwords, i think it's: su -u [user] or su -l [user]  something like that.  check the man page00:33
fsmithredeven su user works00:34
gnarfacesuavedandy: it can be used to run commands one at a time like sudo, but the default action is to just give you the root prompt00:34
suavedandyAlright.00:35
suavedandysudo group still exists. And I'm still in %sudo. sudo is purged.00:35
gnarfaceheh00:35
gnarfaceharmless, but you can remove it manually from /etc/group if you like00:37
suavedandyWill it remove that group from every user as well?00:37
gnarfaceor check the deluser man page for syntax on how to use tools for it00:37
gnarfaceif you look at the /etc/group file you'll see it has a very obvious plain syntax00:38
gnarfaceit's frankly easier to edit by hand than it is to learn to use the tools but maybe read it and the deluser man page both first before you decide00:38
gnarfaceif you make a mistake you can mess up the system obviously00:38
suavedandySo. I just delete the line starting with "sudo?"00:40
suavedandyChill, mate. I survived editing fstab.00:40
gnarfaceyes, and delete the "sudo" from the line that starts with your own user name00:40
gnarfaceand any other lines actually00:40
gnarfacebut i'm assuming that's the only two it appears on00:40
\0xc0ffeeEditing fstab without killing your system - rite of passage00:40
suavedandyHeheh.00:41
gnarfaceand obviously any redundant or trailing commas in there, delete them too00:41
gnarfacethere's a man page for that file as well00:42
gnarfacenot a long read00:42
gnarfacelog out for changes to take effect00:43
suavedandyActually, there's only one line with sudo as the keyword search says.00:45
suavedandyAre you referring to the commas which end every line that doesn't end with my username?00:47
suavedandyOh, wait, those are semicolons.00:47
suavedandySilly me.00:47
suavedandyI need some sleep.00:48
suavedandyLovely. The sudo group gone.00:49
suavedandyCan you write "aptitude install -y -R" like "aptitude install -yR?"00:55
suavedandyI know it's not pacman but I thought…00:55
gnarfacei dunno, check the man page for that type of thing00:56
gnarfaceit varies from program to program00:56
gnarfacesome of them use a common library for command-line parsing and some of them roll their own00:56
Wafficus'sudo dpkg-reconfigure exim4-config' seems cool. Is this used to setup email from the looks of it right? Like to retrieve IMAP based mail locally?00:58
gnarfaceWafficus: it's for setting up the main mail daemon for most typical configurations01:00
WafficusI had the same thing happen earlier with the "Beep" noise for my comp01:00
WafficusI didn't enable it in the alsamixer01:00
Wafficuswould this be because of a recent Devuan update01:01
Wafficus?01:01
Wafficusjust checking01:01
Wafficusif not, no worries01:01
gnarfacecould be, usually a kernel update i think01:01
WafficusI ask because I did "sudo rmmod pcspkr" which removed it thankfully01:01
gnarfacethe beep might or might not be coming from the default alsa device, it varies for different hardware01:01
gnarfaceusually not actually except for laptops i think01:02
Wafficusi'm on a laptop, might be why01:04
suavedandySo I've tested "sudo -c [command]"01:13
suavedandyIt works only with a hyphem at the end. Don't know why.01:13
suavedandyLike this: "su -c [command] -"01:14
gnarfacei'm guessing whatever command you're running requires not just root permission, but also some part of the root environment, which the "-" is a shorthand version of the syntax for inheriting01:18
gnarfacemaybe it's just the path though, which could be embedded into [command] instead01:18
gnarfacedepends on what you run01:19
suavedandySo adding a hyphem is the safest option?01:23
gnarfaceyes01:23
gnarfaceit can be before the "-c" can't it?01:24
gnarfaceotherwise you might want to make sure to put [command] within delimiters like ' or something01:24
suavedandyYou don't have to put your command in delimiters?01:25
gnarfacenot strictly speaking, no, but it is a good idea01:26
suavedandyI thought you have to put them in delimiters anyway. Unless it's a one-word command.01:26
gnarfacewell if you put the "-" before the "-c" then maybe you don't at all01:26
gnarfacelike this: su - -c passwd01:27
suavedandyThat's a lot of hyphems.01:27
gnarfacenot sure, honestly, i forget what happened last time i was messing with it too, but that's the type of thing where it has enough ambiguity that behavior could change from place to place too01:27
gnarfaceah, yea "-" is the short version of "--login"01:28
gnarfaceyou should really read that man page01:28
suavedandyI did. Not much info.01:35
gnarfacewell there's not much to know01:43
gnarfacebut maybe some of it lacks the context you need01:44
pav5088are there any chimaera test images to try yet?02:36
gnarfacepav5088: you could upgrade from a beowulf install to test.  dunno if anyone has built installers yet.02:40
pav5088Might give a minimal net install a go02:42
golinuxfsmithred might have some live chimaera isos for testing on the refracta site02:45
Wafficushi there, can anyone help me figure out why my sound doesn't work after doing 'sudo rmmod pcspkr'?02:54
WafficusI have all the volume up on all the relevant sections on alsamixer02:54
gnarfacehmm, weird02:55
gnarfacechange of default device order screwing with alsa config perhaps?02:56
Wafficusno idea to be honest02:58
gnarfaceWafficus: if you leave it blacklisted and then reboot, does it still not work after the reboot?03:01
gnarfaceWafficus: i mean, you said it was a laptop though?  it could be possible it actually needs the pcspkr driver to work03:03
WafficusI got it to stop working by doing the following03:03
Wafficus'/set trigger.trigger.beep.enabled off'03:04
Wafficusin Weechat03:04
gnarfaceoh, well that'll disable the beep in irc anyway03:04
Wafficushowever, now I just want my sound back :/03:04
gnarfacedoesn't start working again if you just modprobe pcspkr?03:05
Wafficusidk03:05
Wafficusping me again03:05
gnarfaceWafficus: .03:05
Wafficus* on this IRC channel03:05
Wafficusyeah no pc speaker03:05
Wafficusthank God03:05
Wafficusthat was so annoying03:05
Wafficusbeyond annoying03:05
Wafficusway too loud too03:05
Wafficusanyway, but yeah idk about the general sound though now03:05
gnarfacesome laptops have a "beep" volume in alsamixer even, you said yours doesn't?03:06
Wafficusgot it03:06
Wafficusit was "PCM" that was all the way down03:06
Wafficusdumb on my part03:07
Wafficussorry about that03:07
gnarfaceah, PCM is important03:07
gnarfacethat's kinda like the main one, though some devices also have a "main" somewhat redundantly03:07
Wafficusyeah that's what threw me off ha03:07
no_9avast devuanistas! :)07:02
no_9Devuan Jessie   <----no longer supported? no updates, repositories no longer online?07:03
lastebilerm, last I looked there were still repos?07:22
lastebilyeah, I'm seeing the jessie things in the pkgmaster.devuan.org repo07:22
lastebiland the mirrors definately hvae the install media. Not sure where you got the idea that they were removed.07:23
no_9so---i must change my sources-list?07:24
lastebilas for updates, I can't speak to that.07:24
lastebilwell if you are using a mirror that dropped them, yes.07:24
lastebilleaseweb at least shows them. but you should look at the mirrorlist and see. maybe there's something ELSE going on in your case.07:25
lastebilhttps://www.devuan.org/get-devuan#iso-guide-for-i386-and-amd64  < mirrorlists here.07:25
lastebilupdating to ascii shouldn't be that painful, however.  But it's been some time since I did that. I'm using Beowulf now.07:26
* lastebil must run07:27
no_9https://privatebin.net/?2ba898308f3fc38c#14UBBD59xSotArZTZqh3nnm3VX253BVPVmYsZ1KS6RSa07:31
no_9that was working til recently07:32
gnarfaceno_9: it's been deprecated for a really long time07:49
gnarfaceno_9: (the old hostnames i assume are in your sources.list, that is)07:50
no_9gnarface, so, it cant be updaTED?07:50
gnarfaceno_9: no i mean the hostnames are deprecated07:50
no_9did you look at that pastebin?07:51
gnarfaceno_9: no, and i'm not going to, but if it's not using deb.devuan.org it's probably not going to work07:51
gnarfaceno_9: there's info somewhere on the forum about the update07:51
no_9deb http://auto.mirror.devuan.org/merged/ jessie-security main contrib non-free07:51
no_91st line07:52
gnarfacewhat did i just tell you?07:52
gnarfaceyou should be able to upgrade jessie->ascii->beowulf but you have to use the right hostname07:52
no_9that irc is a hideous hellpit of grouchy wankers? :)07:53
gnarfacejessie-security and jessie-updates are down i think though, i think only jessie-main is up still07:53
gnarfacewell "main" i mean, obviously there is no actual "jessie-main"07:53
gnarfacethat's not the error that's preventing you from upgrading though07:54
no_9i dont want to upgrade this install07:54
gnarfaceoh, i thought that's what this was about07:55
no_9i have ascii 64 bit on another partition but right now it wont boot07:55
gnarfaceif you just wanted to get the last updates from jessie-security, sorry you're too late07:55
no_9ok ty07:55
gnarfacebut really, use deb.devuan.org, that hostname you're using has been deprecated for a long while now07:56
no_9it worked 2 weeks ago07:56
no_9maybe 307:56
gnarfaceit really didn't, it only seemed like that07:56
gnarfacebut there was a more recent change that cut it off compeltely07:57
gnarfacecompletely*07:57
no_9well stuff downloaded07:57
gnarfacethe old hostname pointed to some stale mirrors that partially worked sometimes.  you probably were still missing updates07:57
Junicchisup16:10
Junicchiwhat is the equivalent of command "systemctl disable" on sysvinit?16:11
Junicchihow can i disable a service16:11
masonJunicchi: update-rc.d <service> disable16:11
djph^16:11
masonand then service <service> stop to stop the running service16:11
Junicchithanks a lot16:14
fremen2001why on earth did ppl create sytemd? -_-‘16:18
r3bootfremen2001: #devuan-offtopic, plz16:18
r3bootJunicchi: sysvinit works with init scripts under /etc/init.d, and symlinks to these scripts under /etc/rc?.d/. Links are prefixed with S???, where S means 'start' and ??? is a sequence number16:19
r3bootEg, find /etc/rc?.d -name 'S*<yourscript>' -exec rm -vf {} \; should also fix it16:20
masonand then "env -i /etc/init.d/service stop" to max out the convolution16:22
brocashelmfremen2001: so devuan could exist, obviously16:25
fremen2001:)16:26
openbsdtai123fremen2001: is fremen from dune I, sega cd?16:40
fremen2001is from dune yes...from the book16:41
Junicchir3boot: just realized that16:43
ham5urgI'm running a Devuan LXC container inside a Devuan host. When I start or stop the container my syslog is pumped up with https://paste.debian.net/1161150/ some Apparmor error. I've found this with the same problem: https://discuss.linuxcontainers.org/t/3-0-1-apparmor-denied-mount-lxc-container-default-cgns/2160/7 and there is said that something inside the container trys to remount something which Apparmor prohibits. What could it16:49
ham5urgbe?16:49
r3bootsomething inside your lxc container tries to do mount; Find that, and disable it -> done :)16:52
ham5urgr3boot, how? It's a plain devuan container with nothing installed in it. Even fstab is empty16:54
ham5urgCould I set a trigger when mount is called?16:55
fsmithredput a wrapper around it?16:56
r3bootham5urg: grep -R 'mount' /etc/* <-- would be a good start imho17:02
ham5urgThanks for that17:09
ham5urgHow could a mount inside the container trigger some error outside of it?17:09
r3bootbecause the mount command calls the mount() syscall, which in turn triggers an apparmor event, which in turn denies the mount() syscall17:10
ham5urgSo this is not a bug, neither in LXC nor in Devuan.17:11
ham5urgMaybe I can live with that, the container is a long running one. It won't pump the logs up in production mode.17:12
suavedandyGuys. Can you use flatpaks/snaps/third-parties or is that ILLEGAL?17:25
djphsuavedandy: why would it be "illegal" ?17:26
fsmithredI think the first two require systemd and the third depends on which one you're talking about17:26
suavedandyRequire systemd? But I have flatpak installed.17:27
fsmithredinstalled in what? beowulf?17:27
suavedandyYep.17:27
fsmithredwhat's the actual package name? I can't find it.17:28
suavedandyDo you guys use ASCII because it's like CentOS or something?17:28
fsmithrednm, found it17:28
fsmithredhuh?17:28
suavedandyLTS, I mean.17:28
fsmithredwe use ASCII (the name) because it's the name of a minor planet17:28
fsmithredthe OS is debian stretch without systemd17:29
fsmithredcurrently oldstable17:29
suavedandyDo people use oldstable for long-term support?17:29
suavedandyAs in on servers?17:29
fsmithredyeah, but not because they install oldstable17:29
suavedandyOh.17:29
fsmithredmore like they don't really want to upgrade17:30
suavedandyThey don't?17:30
suavedandyAh.17:30
suavedandyI get it.17:30
fsmithredyou're talking to someone who has a wheezy server17:30
suavedandyHow cumbersome is it for sysadmins to upgrade oldstable?17:30
fsmithredbecause it runs some software that can't be upgraded to a newer debian or devuan17:30
suavedandyAh.17:30
brocashelmi understand stable/old stable/etc. for servers and niche computing in general, because doing major upgrades can be a major annoyance17:30
fsmithredyup17:31
fsmithredstuff can break17:31
suavedandyAnd I'm on Beowulf instead of Chimaera.17:31
fsmithredand I'm sure plenty of IT teams are under-staffed17:31
fsmithredbeowulf is current stable17:31
fsmithredchimaera is working surprisingly well for devuan testing17:32
suavedandyIs it good for desktop?17:32
fsmithredsomeone got a head start on forking packages17:32
brocashelmi'm using ceres on my desktop, though17:32
fsmithredyeah, I've got it on a laptop and it's working17:32
fsmithrednot much difference between chimaera and ceres right now17:32
brocashelmlittle to no problems; very stable in my experience17:32
suavedandyTalking about Beowulf. Maybe I made a wrong choise.17:32
fsmithredwhy?17:33
suavedandyBecause I don't run it on a server.17:33
fsmithredI don't understand17:33
suavedandyIsn't testing more suitable for desktop?17:33
brocashelmi don't mind getting closer to upstream17:33
suavedandyOr nah?17:33
fsmithredtesting is suitable for testing17:33
fsmithrednot for actual use17:34
suavedandyFair enough.17:34
fsmithredif it's working brilliantly today, you can rest assured that it will break soon17:34
fsmithredand then get fixed again17:34
suavedandyIs testing rolling?17:34
fsmithredtesting is testing17:34
fsmithredit's not an official release17:34
fsmithrednew packages/versions go int ceres/sid/unstable17:35
fsmithredand then after a week or two they move to testing17:35
brocashelmyup17:35
fsmithredat some point, testing freezes and no new versions move into it. Only fixes.17:35
fsmithredAnd then after some months of that, testing is moved to stable. That happens in Debian long before Devuan catches up.17:35
brocashelmit's still nice to have choice17:35
suavedandyAlright, I'll stay on stable. Too lazy to upgrade every week.17:36
fsmithredlol17:36
fsmithredgood choice17:36
fsmithredbeowulf works well17:36
brocashelmi love upgrades :)17:36
suavedandyAnd I don't. I prefer working and being productive.17:36
brocashelmand i also do those17:37
suavedandyOnce a month is reasonable to me.17:37
suavedandyDoes flatpak really require Systemd tho? It installed just fine.17:39
suavedandyHm.17:39
suavedandyCan't find snapcraft tho.17:40
fsmithredI haven't tried it, so I don't really know. I seem to recall that something is missing.17:41
ShorTieare all nic's suppost to come up either ethX and/or wlanX  ??17:42
ShorTiein /sys/class/net that tis17:42
suavedandyMy laptop is fairly recent and Buster/Beowulf seem to be working excellent. Amazing.17:43
suavedandyWhy is stable called Beowulf tho?17:44
fsmithredShorTie, usb dongle wireless will come up as wl<mac-address>17:44
brocashelmbeowulf is current stable17:44
fsmithredbecause it's a minor planet that begins with B17:44
fsmithredand we liked the name17:44
suavedandyI see.17:44
brocashelmalphabetical order, too17:44
fsmithredyes, so it's a little bit predictable17:45
suavedandyB uster, B eowulf.17:45
fsmithredno, buster is irrelevant17:46
fsmithredjessie was jessie in both debian and devuan17:46
suavedandyWhat was before ASCII tho?17:46
brocashelmjessie17:46
suavedandyHuh.17:46
fsmithredthen ascii, beowulf chimaera daedalus, then I don't know17:46
suavedandyCalling releases after planets? Now that's romantic.17:47
fsmithredhttps://devuan.org/os/releases17:47
brocashelmskimming through e, esther sounds good to me17:49
suavedandyShould have called Jessie… Zodiac or… something.17:50
suavedandyAre there planets starting with Z?17:50
fsmithredyes17:53
fsmithredlist is linked on that page I posted17:54
brocashelmyeah, all the info is there17:54
fsmithredwe might get to Z17:55
fsmithredif we use a letter every 2 years, we'll get to the end before the end of unix time.17:55
fsmithredno17:56
fsmithredthat's backward17:56
fsmithredwe won't even make it to M17:56
suavedandyLol, Christian planet exists. Now we can have a truly Christian distro.18:04
crashoverrideTemple OS is doomed.18:05
crashoverrideThe creator is dead.18:05
suavedandyTemple OS isn't a distro tho.18:05
crashoverridewell technically, an OS is a distro too.18:05
suavedandyI believe it's made from ground up.18:05
djphquick someone fork it and call it ruin18:05
crashoverride:D18:05
crashoverrideohai djph18:06
crashoverridedid you see my invite?18:06
djphj018:06
crashoverrideok18:06
crashoverridenot trying to ruin #networked but I could use the new chan more :P18:06
crashoverrideesp since I'm always in need of offtopic-ing and debugging at the same time.18:06
djphlol18:07
suavedandyHmm. Android is technically a Linux distro. Makes you think…18:08
DonkeyHoteilinux, yes. gnu/linux, no.18:08
specingmakes me smile when people say they'd never run linux all the while waving an android phone around18:08
DonkeyHoteibut actually, android is a linux OS, not a distro18:09
specingI guess what they don't know can't hurt them18:09
crashoverridesuavedandy: there is a difference between distro and linux distro.18:12
suavedandyDonkeyHotei: Of course. I'm not saying.18:12
crashoverridedistro just means "software distribution"18:12
crashoverrideit does not necessarily include linux.18:12
suavedandyHm.18:12
DonkeyHoteianyway, this discussion is for #debianfork and not this channel18:13
suavedandyI mean, yes but that's a very vague term when used with no context.18:13
suavedandyWe're done anyway, Donkey.18:13
suavedandyExcuse us for… a slight derailing.18:14
golinuxSilliness like the above makes me want to stop coming to this channel.  Some behavioral restraint would be appreciated18:37
linux_nDevuan for installation is asking me me to load wifi firmware from romovable media. So i added iwlwifi firmware with deb extension but devuan does not seem to be able to read it. Firmware can't be read with .deb extension?19:57
devuoomhello, I have been experiencing Firefox ESR closing down (crashing) every time I approach running out of free memory19:57
suavedandyDo you guys have root using the same shell as your account or does it use bash/sh/ash?20:03
yanmaaniyou can use any shell20:04
suavedandyAlso, do you think it's a good idea to set root to use a POSIX-compliant shell?20:04
suavedandyOr nah?20:04
r3booton laptops, I use the same; On servers, root always has bash as a shell, with the option to sudo <wantedshell> for something else20:05
yanmaaniit doesn't matter20:05
fsmithredlinux_n, ignore that question. You'll get to add it later if you choose expert install, and you should get it automatically with regular install.20:05
fsmithredsuavedandy, I think it's a good idea to leave defaults as they are unless there's a good reason to change it.20:06
suavedandyr3boot: Thanks.20:06
r3bootOh, and it's not bash-perse (on servers), but whatever is the distro standard20:07
suavedandyWhy do you use Bash for root on servers? Do you use Bash for your account here as well or something else?20:09
suavedandyIs there a specific reason?20:09
linux_n Thanks fsmithred.20:10
fsmithredI use bash because it's been the default for the past 20 years that I've been using linux.20:10
fsmithredI don't have to spend time learning something else.20:11
fsmithredlinux_n, are you using wireless for the install or ethernet cable?20:11
linux_nwireless fsmithred20:12
fsmithredok, let me know if you have trouble with it20:12
linux_nok thanks fsmithred.20:13
devuoomis it normal for firefox-esr on devuan to close upon OOM even if there is still free swao?20:20
devuoomswap20:20
fsmithredmy whole system locks up if I get near the end of ram because of firefox20:21
yanmaanisame20:21
fsmithredesr or otherwise20:21
devuoomcrap, that is bad news... what would a wise man do?20:22
fsmithreduse lynx20:22
devuoom:D20:22
fsmithredbuy more ram20:22
fsmithreduse a lighter desktop if possible20:22
devuoomthe issue is, any page/tab at any time could allocate a unholy amount of memory20:23
fsmithreddo you use noscript?20:23
devuoomyep20:23
fsmithredI know that will save cpu, not sure about memory20:23
devuoomon windows and macos the browser will trash the pagefile and even freeze while it swaps but it wont stone cold crash20:24
r3bootusing surf can be a way out20:24
r3bootbut that wont render a lot of websites that well20:24
fsmithredlinks2 is pretty nice, too. Makes it look like 199520:25
fsmithreddevuoom, how much ram do you have, and what desktop are you using?20:28
devuoomwell, I have seen this behavior on xfce and kde under devuan20:29
devuoomI am pretty sure it has nothing to do with the desktop environment or the distribution20:29
devuoomI am probably missing something20:29
fsmithredwell, kde, gnome and cinnamon use huge amounts of ram20:29
fsmithredbut I've seen the problem with xfce20:29
fsmithredoften when I had 2G ram, occasionally now that I have 620:30
devuoombut a browser eating up all the memory of a system is something pretty normal, that is bound to a happend if you have 2GB or 8GB.... I just expected the browser memory management to be able to deal with it20:30
fsmithredYou can reduce the number of content processes if your computer is running out of memory.20:32
fsmithredun-check "Use recommended perfomance settings." to expose that20:33
fsmithredthere might be more in about:config20:34
devuoomthis is interesting:20:39
devuoomabout:cache?device=memory20:39
devuoomdoesnt match top or ps tho20:40
fsmithredhttp://kb.mozillazine.org/Memory_Leak20:42
fsmithredmy cache is currently using 455KiB but ps_mem.py says browser is using about 800MB20:47
luser977update to ff 78.0.2esr from moz.com22:26
luser977fsmithred: ^22:26
fsmithred?22:27
luser977re: ff tweaks an hour ago22:28
luser977beowulf has ff68.x, is bad. ff 78.0.2 esr is current22:29
fsmithredwhere is that version?22:30
masonDebian ships 68.22:31
golinuxluser977: Get it directly from mozilla if you must have the latest and shiniest22:34
fsmithred68.11.0esr-1 in chimaera/ceres and 79.0-1 plain ff in ceres22:35
golinuxYeah I'm still on 68.9.0esr22:35
fsmithredum, I remember when you were still on 4822:35
Jjp137according to this, 68.12 would probably be the last 68.x ESR version: https://wiki.mozilla.org/Release_Management/Calendar22:37
Jjp137so really just wait a month and Debian will probably get 78.x-esr22:37
Jjp137and then Devuan will get it too of course22:37
luser977i got 78 from moz.com/org22:40
luser97768 trashes my disks on low ram machines22:40
luser97778.0.0 went to .1 then .2 in 25 days. .2 today. security update.22:42
luser97779.x on mobile seems to break a lot of things, and no downgrade patg22:44
luser977*h22:44
luser977such as adblock extensions22:44
luser977to make ff less greedy, nice it +5, and use ulimits. it will then use it's own disk cache and trash disks but not freeze22:51
aitorhi22:52
Guest37785are you talking about web browsers?22:52
fsmithredyeah, web hogs.22:52
fsmithredhi22:52
Guest37785hi fsmithred22:53
Guest37785i'm packaging iceweasel-uxp: https://wiki.hyperbola.info/doku.php?id=en:project:iceweasel-uxp22:54
Guest37785the git repo is here:22:55
Guest37785https://github.com/g4jc/iceweasel-uxp22:55
Guest37785it's based on basilisk, by the same developers of Palemoon22:56
fsmithredwow, that sounds good22:58
fsmithredwhat about extensions/add-ons22:58
fsmithred?22:58
fsmithrednoscript22:58
systemdleteI removed ssmtp (after experimenting with it, and then reinstalling postfix), and it also removed logwatch along with it!23:00
Guest37785here you are the list of addons:23:00
Guest37785https://wiki.hyperbola.info/doku.php?id=en:project:iceweasel-uxp_addons23:00
systemdleteI noticed this morning I did not get my normal logwatch report, so I looked at history.23:00
fsmithrednice. Just unpack the latest tarball?23:02
systemdleteI can understand maybe removing the logwatch subsidiary scripts for cron when removing ssmtp, but not the logwatch.pl script23:03
systemdletethe history indicates that removing ssmtp tried to remove logwatch (and mailutils, ok), although some of logwatch is still around.23:04
Guest37785*Just unpack the latest tarball?* No, fsmithred. I'm building the .deb packages using git-buildpackage.23:05
fsmithredoh, cool23:05
Guest37785systemdelete: are you familiar with iceweasel-uxp?23:05
fsmithredbut I am download the latest tarball. Is it possible to run it?23:05
golinuxGuest37785: Will be wonderful to have iceweasel back!  Hugs to aitor!23:06
Guest37785it's depeloped by the people of hyperbola, and i so your name in the irc channel23:06
Guest37785fsmithred: git-buildpacke worked, but i need to do some improvements; surely the packages will be available tomorrow23:07
systemdleteThis is confusing.  "apt list --installed logwatch" spits out nothing other than a warning that apt's UI may change in the future, but dpkg-query -l | grep logwatch shows it listed (first two columns are "rc")23:08
systemdleteGuest37785:  I think I have installed iceweasel on one or two distros.  Isn't that another variation of firefox, like waterfox, pale moon, sea monkey, and ice cat?23:11
systemdleteGuest37785:  Not sure why my nick would be mentioned in that channel.  More info, please?23:12
Guest37785systemdlete: not mentioned, but it appeared in the list23:13
golinuxMaybe there are two of them!23:13
systemdleteNo, I see that I have my hexchat open on hyperbola, that's why.23:14
Guest37785and yes, it's a mozilla variation, but it uses goanna instead of gecko23:14
fsmithredafk, bbl23:14
Guest37785and kelsoo...23:14
Guest37785i built it in gtk2, here you are a screenshoot:23:20
Guest37785https://www.gnuinos.org/iceweasel-uxp/Captura%20de%20pantalla.png23:20
Guest37785it's very nice23:20
Guest37785time to dinner, bye :)23:25
devuoomfsmithered: what would be the best way to install 78 and keep my systems updated with apt... I am trying to avoid manual install on several systems23:30
devuoomis there a repo?23:30
mcrmy install of Android Studio on Devuan, seems to be lacking entries for App->NEW. Specifically, adding a new activity. I can't figure out of this is some environmental screw up (some subtle java version issue...), or if studio has just changed.23:58
mcrNot my first time using Android Studio, but it has been two years or so.23:58

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