IRC log for #devuan on 20210110

00:18.17*** join/#devuan maldoror[m] (maldorortc@gateway/shell/matrix.org/x-fdweyemamihhybvy)
00:22.35*** join/#devuan e3d3 (~user@2a02-a450-1c17-1-c218-85ff-fe75-40e8.fixed6.kpn.net)
00:24.17e3d3What is the advised way to disable sysv startup applications; sysv-rc-conf, update-rc.d or ?
00:28.30fsmithredyes
00:28.33fsmithredeither way
00:31.06e3d3okay, thanks. After 2 hours reading about it, I found the same MX Linux advise 1 second after asking here. Good to have it confirmed. Thanks.
00:37.36*** join/#devuan jotaxpe (jotaxpe@gateway/vpn/protonvpn/jotaxpe)
00:45.11*** join/#devuan jotaxpe_ (jotaxpe@gateway/vpn/protonvpn/jotaxpe)
00:47.29*** join/#devuan jotaxpe (jotaxpe@gateway/vpn/protonvpn/jotaxpe)
00:57.00rwpe3d3, There are multiple opinions available on the matter.  I know of at least four different methods and I use at least two of them myself.
00:57.54rwpBetter advice might be had if we knew what daemon you wanted to have installed but disabled.  Since that by itself is an odd combination.
00:57.55e3d3rwp: I guess those 2 are not the ones I mentioned above
00:58.19e3d3rwp: I want mdadm, saned and bluetoothd disabled
00:58.59rwpFor mdadm it would probably make more sense to remove/purge it from the system.
00:59.11rwpFor saned and bluetoothd are those pulled in by some DE dependencies?
01:00.31e3d3I guess so but am not sure. I have XFCE, and both are not enabled as startup applications (GUI list)
01:00.38rwpFor avahi that is Depended upon but I want disabled I put an "exit 0" in /etc/default/avahi-daemon to prevent it from running.
01:01.39rwpPutting an "exit 0" into any of the /etc/default scripts completely disables the entire init script from all actions.
01:05.04e3d3I have not looked into that dir, yet/never. Is the reason that you advise removing mdadm because its not in the /etc/default dir ?
01:05.15e3d3And is it true that via init.d disabled services are started again when updating the dependencies ?
01:05.34rwpI always say simpler is better.  Reducing the install base is always simpler.
01:05.43e3d3I agree completely
01:06.08rwpMy XFCE install has sane-utils and xsane installed but not saned.  And has libbluetooth3 installed but not bluetoothd.
01:10.03e3d3I'll remember that, thanks
01:11.33rwpBack in the old days users of Red Hat systems installed from cdrom often had the problem of DLL version Hell problems when trying to install something later.
01:11.38rwpSo the user culture became one that when they had the cdrom in their hand then install 100% of everything that was on it all at once.
01:11.42rwpHowever now in Devuan with network installation if one has networking then it is trivial to install anything at any time.
01:11.45rwpBecause that was the only time when everything matched.  But that required installing lots of cruft that was never used.
01:16.16e3d3I use mostly the shell & Emacs, most other things I consider distraction. Long ago I used minimal or netinstall but I don't have the energy anymore to keep reading about everchanging technical details, just to configure some 'secundairy' stuff, so I use XFCE desktop some years now
01:19.05*** join/#devuan jotaxpe_ (jotaxpe@gateway/vpn/protonvpn/jotaxpe)
01:20.40*** join/#devuan KREYREN (~kreyren@gateway/tor-sasl/kreyren)
01:21.12*** join/#devuan maggotbrain (~maggotbra@c-73-254-248-250.hsd1.wa.comcast.net)
01:22.02e3d3Last 2-3 years I booted once in 1-3 months, then kill 2 services because I was too lazy to read about the init system. But because I installed Devuan on a laptop that I want to shut down at least once a day, I better disable unwanted services instead of killing.
01:22.22*** join/#devuan jotaxpe_ (jotaxpe@gateway/vpn/protonvpn/jotaxpe)
01:23.34e3d3Do you know the answer on my other question; that upgrading a dependency will start a disabled service again ?
01:25.12*** join/#devuan epony (epony@unaffiliated/epony)
01:26.18rwpSorry, I didn't see that particular question.  Upgrading _should not_ re-enable a disabled service.
01:26.54rwpIf the service is disabled by modifying /etc/default/foo then that is a conffile and changes there are required to be preserved, unless you say 'Y'es install maintainers version at package installation time.
01:27.21rwpIf a service is disabled by modfifying the /etc/rc?.d/S*foo symlinks then must leave at least one symlink behind to indicate that it is installed and configured.
01:27.50rwpSee https://paste.debian.net/1180399/ for the particular paragraph that describes this.
01:28.11rwpI have often seen people remove all symlinks and then complain that they were re-installed so that is a common error.
01:28.34rwpLeave at least one /etc/rc?.d/K*foo symlink somewhere so as to indicate that it has been installed but has been locally customized.
01:29.06rwpDoes that cover things for you?  Questions?
01:29.19e3d3sorry but I need to read above more than once to understand it, so my reaction need some time
01:29.53rwpNo problem!  I am also doing accounting simultaneously so might be slow to notice and respond myself.
01:36.38e3d3I think I understand what you said; upgrading foo will reinstall a removed symlink foo, so I better modifying the setting.
01:37.45rwpe3d3, It will only reinstall a symlink if *ALL* of the symlinks are removed.
01:37.58e3d3you mean for all runlevels ?
01:38.03rwpIt will not modify symlinks if they are locally modified, removed, changes, as long as at least one symlink remains.
01:38.29rwpRight.  For all runlevels.  find /etc/rc?.d/ -name '*foo'
01:38.49rwpIf all of those are removed then it appears as if it is a first time pristine installation and therefore the postinst will install symlinks.
01:39.04rwpBut if at least one remains to be found then it won't touch them if they are different from the defaults.
01:40.17e3d3so upgrading foo checks the symlinks in all runlevels
01:40.32rwpYes.
01:41.49e3d3I'm now in runlevel 2 but I guess I should disable bluetoothd and saned in all runlevels, not ?
01:41.52rwpThe difference between an "exit 0" in /etc/default/foo is that disables all init script actions.
01:41.58rwpRemoving /etc/rc[2345].d/S??foo avoids starting it but it will still be killed if manually started.
01:42.03rwpSubtle difference but still a small difference.
01:42.15rwpHave you ever used a different runlevel than 2?
01:42.28rwpAnd I mean "ever" in all of the years you have been using the system?
01:43.28rwpI consider myself a rather old-school user of things and even I can't remember the last time I used a different runlevel for any reason.  (other than shutdown)
01:43.37e3d3I normally don't check my runlevel, but "know" that different distro/OS can use different runlevels, and I also don't know much about init systems at all
01:43.39rwp(shutdown passes through runlevel 6 internally)
01:44.06e3d30,1 and 6 are told to be common in Linux
01:44.27rwpSo...  Imagine yourself sitting in front of a university shared server for a hundred all trying to compile their programs to get them done before deadline.
01:44.45e3d3I do
01:45.00rwpThat's the environment in which runlevels were imagined.  Runlevel 3 used to be networking and NFS enabled.  Runlevel 0 (or was it 1) was single user mode.
01:45.18rwpSo one could switch to single user mode to keep anyone from being able to log into the system so that you could do some system administrative task.
01:45.41rwpLike applying security patches.  Or recovering from someone who had actually compromised the system.  Or ran it out of disk space.  Or whatever.
01:45.59rwpThen could switch runlevels back to runlevel 3 with networking on and back online without rebooting.
01:46.21rwpBecause rebooting might take a while to flip those front panel switches to load in the boot loader IPL code to be able to load the next segment off mag tape.
01:46.38rwpThese days...  Not needed so much.  (shrug)
01:48.52e3d3I am the only physical user but see many users active on my laptop, and have no clue what the do when I'm not looking, maybe they cross runlevels !?
01:49.39e3d3nor if multi-user runlevel is required because of root & I
01:49.44rwpIt's your physical laptop but you see other users using what command?  Try running the "w" command.  Or "who".
01:50.10e3d3e3d3     :0.0         2021-01-09 18:38 (:0.0)
01:50.20e3d3<PROTECTED>
01:50.20e3d3USER     TTY      FROM             LOGIN@   IDLE   JCPU   PCPU WHAT
01:50.20e3d3e3d3     :0.0     :0.0             18:38   ?xdm?  55:56   0.03s /bin/sh /etc/xdg/xfce4/xinitrc -- /etc/X11/xinit/xserverrc
01:50.23rwpSo you have one user and it is you.
01:50.28e3d3???
01:51.01e3d3I going to check it on my other primairy distro, 1 moment
01:51.04rwpAnd it is the xdm (X Display Manager) login starting X graphics for you.  Upon which you might have many terminals.
01:52.25e3d3I'm confused about that I the only user, or why I thought different
01:53.01fsmithred'ps aux' will reveal some system users
01:53.11rwpA long ps listing (ps -efHww or ps aux) would show many processes running users but those are system users not people users.
01:53.27rwpSystem users are used to be non-root and compartmentalized.  For security reasons.
01:53.45fsmithred^^^ that
01:54.26rwpSo for example lightdm is run as the lightdm user.  And bind/unbound is run as a bind/unbound user name.
01:54.28e3d3I thought indeed because of 'top/htop' listings, not that root, avahi, statd etc where real people, but still real users
01:54.53rwpAnd www-data runs the web server.  And postfix runs the postfix mailer.
01:55.05fsmithredthey are users with limited powers
01:55.29rwpWell...  They are different users.  They are non-root users.  That's the most important thing.  And they are different compartments from each other.  So they can't get out of their boxes.
01:56.08e3d3I believe you, mostly ;) about this
01:58.08e3d3so I, e3d3 and boxed companions will normally only stay in runlevel 2 ? And Lightdm only in 0 ?
01:58.32fsmithredlightdm usually starts in 2
01:58.45fsmithredand 2-5 are the same in debian/devuan
01:58.50rwpType in "who -r" and it will say 2
01:59.12rwpOh, there is also a "runlevel" command too.  Same thing.
01:59.19e3d3that is my runlevel
01:59.36fsmithredthe default runlevel is set in /etc/inittab
02:00.10rwpI recommend basically doing nothing interesting and just leaving everything at the default runlevel 2.  Don't worry.  Be happy.
02:00.10e3d3I've read that file to find out which runlevels Devuan uses
02:00.19e3d3:)
02:00.34e3d3I wish the same for you
02:00.45rwpOn Red Hat systems you will find it being runlevel 5 for everything.  But same advice.  Just don't touch it.  Don't worry.  Be happy.
02:01.56rwpThe only reason to even be aware of it is if you want to not start a daemon then you would need to know that to remove the /etc/rc2.d/S??foo link.
02:02.30e3d3I asked because with TUI app 'sysv-rc-conf' I can/have to set all runlevels, with rcconf only the current runlevel, if I believe the screenshots
02:02.51rwpfsmithred, Do you recall the last time you changed to single user mode on a system?  I can't.
02:03.10fsmithredabout 15 minutes ago
02:03.29fsmithredand several times a day I do 'init 1'
02:03.43fsmithredbut that's because I'm testing stuff in a VM and don't want to do a full reboot
02:03.44rwpHa!  "Few things are harder to put up with than the annoyance of a good example." --Mark Twain
02:04.15e3d3:)
02:04.34fsmithredand I configure Refracta so that the display manager does not run in runlevel 3
02:04.41fsmithredthat way it's possible to boot to console
02:05.41e3d3display manager in runlevel 3, not 2, like rwp said, if I understand it right
02:06.16fsmithreddefault setting is for dm to run in 2-5
02:06.36e3d3the multi-user spectrum
02:06.49fsmithredyeah, but debian makes them all the same
02:07.02fsmithredredhat and suse have graphical only on 4 and 5
02:07.09rwpOne of these days I am going to get https://github.com/cosmos72/twin/ up and running for the main text console. ;-)
02:07.21fsmithred2 and 3 are multi-user console only
02:08.23e3d3rwp: I guess you don't use Emacs ;)
02:08.46rwpI am in Emacs typing this right now using Emacs-erc. :-)
02:08.51e3d3rcirc
02:08.55*** join/#devuan KREYREN (~kreyren@gateway/tor-sasl/kreyren)
02:09.04tuxd3v3 is multiuser + network
02:11.40*** join/#devuan jotaxpe_ (jotaxpe@gateway/vpn/protonvpn/jotaxpe)
02:12.35*** part/#devuan e3d3 (~user@2a02-a450-1c17-1-c218-85ff-fe75-40e8.fixed6.kpn.net)
02:15.53rwptuxd3v, That's the classic BSD convention, yes.  But not on Devuan or Debian.
02:17.21*** join/#devuan e3d3 (~user@2a02-a450-1c17-1-c218-85ff-fe75-40e8.fixed6.kpn.net)
02:18.17e3d3because something went wrong, I repeat my last thanks for all the friendly help again and wish you all a good day|night.
02:18.21*** part/#devuan e3d3 (~user@2a02-a450-1c17-1-c218-85ff-fe75-40e8.fixed6.kpn.net)
02:19.11*** join/#devuan jotaxpe (jotaxpe@gateway/vpn/protonvpn/jotaxpe)
02:22.03tuxd3vrwp, yes :)
02:33.51*** join/#devuan arnoldoree (~arnoldore@185.217.117.248)
02:39.09*** join/#devuan jotaxpe (jotaxpe@gateway/vpn/protonvpn/jotaxpe)
02:42.52*** join/#devuan fling (~fling@fsf/member/fling)
03:04.18*** join/#devuan arnoldoree (~arnoldore@113.210.101.41)
03:09.35*** join/#devuan D-HUND (~debdog@2a00:79c0:64c:fa00:7a24:afff:fe8a:d04d)
03:31.40*** join/#devuan systemdlete (~systemdle@c-73-66-100-152.hsd1.ca.comcast.net)
03:32.01systemdleteI installed  beowulf on bare hardware on two boxes.  The first one works OK, but the other doesn't.  The desktop comes up with low resolution and doesn't give me options to go higher resolutions.  It's the same machine I am running ascii on, which works fine.  So I am wondering what I need to do to get the desktop working properly.
03:32.14systemdletevideo is RS780L [Radeon 3000] [1002:9616]
03:32.23systemdleteDoes this require non-free software?   (I did install that though)
03:32.45systemdleteI'm guessing I need a certain x11 or xorg driver package or the like
03:36.09systemdleteOh...
03:36.14systemdletejust found a wiki page
03:44.16systemdlete(wiki.debian.org/atihowto
03:53.23*** join/#devuan systemdlete (~systemdle@c-73-66-100-152.hsd1.ca.comcast.net)
03:58.22systemdleteWhen running (on ascii) grub-mkconfig, I get error:  "/usr/sbin/grub-probe: warning: Couldn't find physical volume `(null)'. Some modules may be missing from core image.." This occurs multiple times.
03:58.46systemdleteddg'd this, but I can't seem to get a clear explanation of what this is.
03:59.03systemdlete(doesn't hint which disk object it is complaining about)
04:01.30*** join/#devuan arnoldoree (~arnoldore@113.210.101.41)
04:09.42*** join/#devuan ar3itrary (~hacker@2a03:4000:6:8177:2::1)
04:10.22gnarfacesystemdlete: you probably do need firmware-amd-graphics from non-free, yea
04:10.36*** join/#devuan jotaxpe (jotaxpe@gateway/vpn/protonvpn/jotaxpe)
04:10.42systemdleteright, gnarface.   That wiki page spells it all out.
04:10.50systemdleteSorry to bug you about video drivers again.
04:11.23gnarfacedunno what that grub error means exactly, but it kinda seems like it's looking for something it sees in the config but not present on the machine
04:11.35systemdlete"in the config"
04:11.51systemdlete<PROTECTED>
04:11.53gnarfacethe auto-generated config in /etc/grub.d
04:11.57systemdleteok
04:12.08gnarfacethere's also /etc/defaults/grub
04:12.12gnarfacefor hand edits
04:12.24gnarfacesorry, /etc/default/grub
04:13.25systemdletewell, there is almost nothing in /etc/default/grub
04:13.38systemdleteother than defaults, comments
04:13.45gnarfacethere is also /boot/grub, i think
04:13.52gnarfaceunless that's from the old version...
04:14.04gnarfacethe thing is it's mostly supposed to be auto-generated
04:14.07systemdletewell /boot/grub/grub.cfg is what I am trying to generate with grub-mkconfig
04:14.17gnarfaceand you're only supposed to change some variables in /etc/default/grub
04:14.24gnarfacebut obviously stuff goes wrong sometimes...
04:14.30gnarfacewas this an upgraded system or a fresh install?
04:14.48gnarfaceand is there like.... some weird removable drive bays in it or something?
04:14.50systemdleteI was trying to coerce grub-mkconfig on ascii to "pick up" the new install on the beowulf partition
04:15.07systemdleteno removable bays -- removed that unit months ago
04:15.22gnarfacei think i usually just run update-grub as root
04:15.45systemdleteBut that was never a problem in the past.  It's a Kingwin 4000 that just uses passive connections.
04:15.48systemdleteAH!
04:15.54systemdletethank you -- let me try update-grub
04:16.05gnarfacethe thing you gotta figure out is why it's trying to load "(null)" ... that seems like it's literally missing a variable for a drive name but it's got a boot entry for it anyway or something?
04:16.16systemdletedang.  Same error messages
04:16.35gnarfacethere might be other errors somewhere in /var/log
04:16.40gnarfaceor in dmesg
04:16.57systemdleteI did have a usb drive plugged in, but even once it is removed, I still get errors from grub-mkconfig (or grub-update)
04:17.09systemdleteI looked at system logs.  Nothing of interest
04:17.19gnarfaceweird
04:17.29gnarfacei got nothing
04:17.49systemdleteWonder if it is time to use Microsoft Tech:   reboot
04:18.25gnarfacemaybe missing package is what i'm thinking
04:18.36gnarfacebut i couldn't guess what
04:19.01gnarfaceyou could always just use lilo instead
04:19.03systemdleteWell, could be I guess. But why has this not been a problem until now?  I rarely do this.  I haven't installed a new OS on this box since ascii, and that was a couple of years ago.
04:19.22gnarfaceyea, i'm really not sure.  i can't recall seeing this before
04:19.49gnarfacei keep going back to it getting incomplete info it's trying to integrate into the config from somewhere
04:19.51gnarfacebut where?
04:19.56systemdleteit is not too important.  The objective here is to move on to beowulf.  So as long as I can get beowulf to boot in the other partition (along with those video drivers working) I'm good.
04:20.14gnarfacethe most likely culprit would be leftover configs from after an upgrade, but still... never seen this
04:20.41systemdleteIt would be helpful if *nix utilities would tell the user what specific things they are complaining about.
04:20.44gnarfacedid you have grub installed to multiple disks/partitions?  maybe it's the grub config on some other block devices that it's picking up?
04:21.45systemdleteNot sure.
04:23.24systemdleteI have grub installed to /dev/sd[abc] (it's a RAID1 2 drives + 1 spare.
04:23.47systemdleteboth ascii and the proposed beowulf partitions are on partitions on those drives
04:23.57systemdleteFairly simple arrangement I think.
04:24.10systemdleteAnd those partitions are NOT with lvm or anything fancy.
04:24.30systemdleteext4 and btrfs
04:24.55systemdleteI hope that ascii's grub-mkconfig can read btrfs file systems, but idk
04:31.32gnarfacehmmm, also not using btrfs here
04:31.42gnarfacegot any empty partitions?
04:31.45gnarfaceunformatted?
04:31.47gnarfaceunassigned?
04:32.02gnarfacei'm really grasping at straws
04:32.16gnarfacewhen grub doesn't work for me if i can't find a fix readily i often try lilo
04:32.24gnarfacei used to use it before, so i'm more comfortable with it anyway
04:32.36*** join/#devuan ar3itrary (~hacker@2a03:4000:6:8177:2::1)
04:37.28*** join/#devuan arnoldoree (~arnoldore@113.210.116.183)
04:43.43*** join/#devuan qin (~qin@unaffiliated/soalokin)
04:45.00systemdleteThe only thing I note that might be relevant is that, while installing beowulf in another partition, I requested to install grub to /dev/sda, b, and c, yet...
04:46.06systemdletewhen I boot the box, I'm still getting the OLD grub menu.  Now, I think I copied grub.cfg over from the ascii partition.  But not sure if that has anything to do with the grub-mkconfig issue on ascii.
04:46.42systemdleteheheheh.  Yeah, when all else fails, fall back to simpler things.  I agree.
04:47.14systemdleteI was a huge fan of LILO until I ran into distros that refused to work with LILO so I was forced to use grub, then grub2
05:21.20*** join/#devuan arnoldoree (~arnoldore@113.210.120.107)
05:48.38*** join/#devuan DocScrutinizer05 (~saturn@openmoko/engineers/joerg)
05:55.45*** join/#devuan ac_laptop (~ac_laptop@186.2.247.129)
06:51.08qinis there a better solution for getting vaapi stuff working in beowulf? currently am using a symlink for iris_drv_video.so
08:03.26*** join/#devuan Captain4LK (~Captain4L@p200300edbf0a4417523eaafffeeddbdf.dip0.t-ipconnect.de)
08:24.57*** join/#devuan xrogaan (~xrogaan@unaffiliated/xrogaan)
08:44.58gnarfacewhat video hardware, qin?
08:45.41gnarfacei didn't have to make a symlink with nvidia or amd
08:46.36gnarfaceintel hardware that doesn't support vaapi should be able to use the libvdpau-va-gl1:i386 wrapper lib
08:47.05gnarfacesorry libvdpau-va-gl1 (not specifically i386 necessarily)
08:47.46gnarfacenot sure about other issues but in any case the situation is usually specific to the video card driver
08:48.07gnarfaceand it's supposed to just be a matter of having the right packages installed, though mplayer will also need command-line options
08:56.59qingnarface: im using intel here, and thanks for the info
09:03.13*** join/#devuan GNUmoon (~GNUmoon@gateway/tor-sasl/gnumoon)
09:12.29*** join/#devuan cocoadaemon (~foo@2a01:e0a:4e1:97e0:179d:1cc6:8854:4d5c)
09:15.40*** join/#devuan systemdlete (~systemdle@c-73-66-100-152.hsd1.ca.comcast.net)
09:16.38systemdleteStill struggling a bit to get beowulf configured satisfactorily.   The main hangup at this point is that os-prober on beowulf is not detecting the other OS's installed.  I was able to copy my ascii's grub.cfg to beowulf, and that works (except it doesn't have beowulf) but I'll still have to do some manual editing.
09:17.31systemdleteI DDG'd a bit for anything related to os-prober in the past year (because wider time searches returned a lot of probably outdated info).
09:18.10systemdleteAt any rate, none of what turned up gave me any definitive answers.   os-prober, run directly from the command prompt, returns just the kernels on the local (beowulf) partition.
09:18.42systemdleteI tried cross-mounting the ascii partition but no better.
09:21.14systemdleteI don't recall this much drama with grub.cfg generation in the past, but maybe I have overlooked a step.
09:39.24*** join/#devuan KREYREN (~kreyren@gateway/tor-sasl/kreyren)
10:04.52*** join/#devuan bpmedley (~bpm@69-174-155-24.bltnilaa.metronetinc.net)
10:08.52*** join/#devuan cocoadaemon (~foo@82-65-197-5.subs.proxad.net)
10:29.32*** join/#devuan KREYREN (~kreyren@gateway/tor-sasl/kreyren)
10:35.20*** join/#devuan GNUmoon2 (~GNUmoon@gateway/tor-sasl/gnumoon)
10:46.11*** join/#devuan KREYREN (~kreyren@gateway/tor-sasl/kreyren)
11:04.12*** join/#devuan KREYREEN (~kreyren@gateway/tor-sasl/kreyren)
11:30.49*** join/#devuan Pali (~pali@Maemo/community/contributor/Pali)
11:37.29*** join/#devuan Captain4LK (~Captain4L@p200300edbf0a4417523eaafffeeddbdf.dip0.t-ipconnect.de)
11:52.13*** join/#devuan Acacia (~Acacia@unaffiliated/acacia)
12:01.32*** join/#devuan fling (~fling@fsf/member/fling)
12:12.58*** join/#devuan drmbls (~marius@78-56-83-14.static.zebra.lt)
12:15.26fsmithredsystemdlete, os-prober won't find encrypted systems. If that's the case, create entries in /etc/grub.d/40_custom
12:27.55*** join/#devuan Inepu (~Mithrandi@137-217-234-46.wifi4all.it)
12:40.46*** join/#devuan tomg_ (~tomg@98-159-244-217.agas1a-dynamic.dsl.sentex.ca)
12:52.29*** join/#devuan alexvp (~alexvp@51.194.52.176)
12:54.41*** join/#devuan alexvp (~AlexVojPr@51.194.52.176)
13:13.19*** join/#devuan ddj (~ddj5624@host-79-12-52-10.retail.telecomitalia.it)
13:59.38*** join/#devuan Volk (~Volk@a95-94-47-32.cpe.netcabo.pt)
14:10.00*** join/#devuan rsx (~rsx@ppp-188-174-143-254.dynamic.mnet-online.de)
14:19.40*** join/#devuan targz (~Thunderbi@unaffiliated/targz)
14:24.55*** join/#devuan Captain4LK (~Captain4L@p200300edbf0a4417523eaafffeeddbdf.dip0.t-ipconnect.de)
14:25.20*** join/#devuan ac_laptop (~ac_laptop@186.2.247.129)
14:27.39*** join/#devuan bru1 (~bru@181.165.92.32)
14:47.37*** join/#devuan DashiePie (~Rawr@c-73-152-100-71.hsd1.wv.comcast.net)
15:16.21*** join/#devuan qin (~qin@unaffiliated/soalokin)
15:22.44*** part/#devuan bru1 (~bru@181.165.92.32)
15:24.55*** join/#devuan bru (~bru@181.165.92.32)
15:25.51bruHello, I need to set the memlock limit on my system with sysvinit, what's the best way to do so?
15:40.56bruNevermind, I chose to add a ulimit line on my program's init file
15:56.25*** join/#devuan o01eg (~o01eg@2a02:2698:82b:3877:c30b:4848:903a:b05e)
16:05.16*** join/#devuan shibboleth (~shibbolet@gateway/tor-sasl/shibboleth)
16:09.13*** join/#devuan Akuli (~akuli@82-203-164-171.bb.dnainternet.fi)
16:09.42*** join/#devuan fifihyperbola (~monsieur@cpc80981-perr17-2-0-cust753.19-1.cable.virginm.net)
16:16.05*** join/#devuan mro_name (~mro_name@port-92-195-250-24.dynamic.as20676.net)
16:29.46*** join/#devuan Pali (~pali@Maemo/community/contributor/Pali)
16:31.27tarzeau§br
16:31.38tarzeaubru: and that worked? i like nohang a lot
16:44.23*** join/#devuan HumanG33k (~HumanG33k@82-64-99-84.subs.proxad.net)
16:45.01brutarzeau: Still haven't tried it yet, lemme see with a quick reboot
16:52.06*** join/#devuan bru (~bru@181.165.92.32)
16:53.24brutarzeau: Yep, adding "ulimit -l 65535" (as in 65535 KiB) before the running command on the start function (mpd_start in my case) worked perfectly
16:56.38tarzeauhow much memory do you have?
16:57.33bru16GB plus 8GB swap. The setting is just for a single program anyways, not a global rule
16:57.49tarzeauyeah i just wonder how you exhaust that much memory
16:57.56tarzeaui'm a fan of zram btw
16:59.13bruIt wasn't my idea to set that much memlock, it's a recommendation from the mpd manual: https://www.musicpd.org/doc/html/user.html#error-failed-to-initialize-io-uring
16:59.43bruHmm, I haven't heard of zram, is it specially for managing RAM across processes?
17:00.14*** join/#devuan mint_ (~mint@cpc85992-scun10-2-0-cust177.12-3.cable.virginm.net)
17:00.47*** join/#devuan mint_ (~mint@cpc85992-scun10-2-0-cust177.12-3.cable.virginm.net)
17:17.50*** join/#devuan jotaxpe (jotaxpe@gateway/vpn/protonvpn/jotaxpe)
17:20.44*** join/#devuan shibboleth (~shibbolet@gateway/tor-sasl/shibboleth)
17:27.27tarzeau<PROTECTED>
17:27.29tarzeau.~.
17:27.44tarzeaubru: it's for compressed memory
17:29.58*** join/#devuan arnoldoree (~arnoldore@113.210.120.107)
17:37.45*** join/#devuan mro_name (~mro_name@port-92-195-250-24.dynamic.as20676.net)
17:38.21*** join/#devuan jotaxpe_ (jotaxpe@gateway/vpn/protonvpn/jotaxpe)
17:54.22*** join/#devuan alexandros_tab (~quassel@unaffiliated/alexandros-c/x-1684531)
17:54.33*** join/#devuan alexandros_c (~quassel@unaffiliated/alexandros-c/x-1684531)
17:57.57*** join/#devuan jotaxpe (jotaxpe@gateway/vpn/protonvpn/jotaxpe)
18:05.09*** join/#devuan aperifons (~aperifons@99-90-85-53.lightspeed.sndgca.sbcglobal.net)
18:05.53*** join/#devuan Kruppt (~Kirk_Krup@50.111.30.10)
18:06.48*** join/#devuan furrywolf (~furrywolf@li92-159.members.linode.com)
18:08.36*** join/#devuan Captain4LK (~Captain4L@p200300edbf0a4417523eaafffeeddbdf.dip0.t-ipconnect.de)
18:15.45*** join/#devuan sammi`_ (~qw@114-39-47-85.dynamic-ip.hinet.net)
18:15.49*** join/#devuan cd (~cd@unaffiliated/cd)
18:19.42*** join/#devuan fifihyperbola (~monsieur@cpc80981-perr17-2-0-cust753.19-1.cable.virginm.net)
18:30.43*** join/#devuan jotaxpe (~jotaxpe@191.126.52.254)
18:32.56*** join/#devuan jotaxpe_ (jotaxpe@gateway/vpn/protonvpn/jotaxpe)
18:41.03*** join/#devuan AnimaInvicta (~AnimaInvi@ber27-1-78-230-215-86.fbx.proxad.net)
18:55.42*** join/#devuan ac_laptop (~ac_laptop@186.2.247.129)
18:58.11*** join/#devuan brandflake11 (~user@2601:5c0:c380:83e0:33a0:a65e:a0c5:d0b)
18:59.08brandflake11Hey hey, does anyone have any good reading on using sysvinit?
19:23.55ErRandirStart with /etc/init.d/README
20:10.02*** join/#devuan fifihyperbola (~monsieur@cpc80981-perr17-2-0-cust753.19-1.cable.virginm.net)
20:25.39*** join/#devuan zenfunkpanda (~Zen-Funk@45.156.61.61)
20:37.47*** join/#devuan alexvp (~alexvp@51.194.52.176)
20:48.06Xenguybrandflake11: sysv-rc-conf seems to be a handy tool also
20:57.17*** join/#devuan alexvp (~alexvp@51.194.52.176)
21:01.47*** join/#devuan alexvp (~alexvp@51.194.52.176)
21:03.50*** join/#devuan captainbroken (~joanne@32.211.181.220)
21:04.43*** join/#devuan CaptainFixerpc14 (~captain@unaffiliated/captainfixerpc14)
21:05.25*** join/#devuan GNUmoon2 (~GNUmoon@gateway/tor-sasl/gnumoon)
21:59.08*** join/#devuan Volk (~Volk@a95-94-47-32.cpe.netcabo.pt)
22:00.58*** join/#devuan alexvp (~alexvp@51.194.52.176)
22:05.47*** join/#devuan GNUmoon2 (~GNUmoon@gateway/tor-sasl/gnumoon)
22:10.38*** join/#devuan hooway (~q@87.110.26.40)
22:44.18*** join/#devuan fifihyperbola (~monsieur@cpc80981-perr17-2-0-cust753.19-1.cable.virginm.net)
22:57.05*** join/#devuan gast0n (~g4570n@unaffiliated/g4570n)
23:16.58*** join/#devuan ac_laptop (~ac_laptop@186.2.247.129)
23:29.09*** join/#devuan jotaxpe (jotaxpe@gateway/vpn/protonvpn/jotaxpe)
23:47.42*** join/#devuan jotaxpe (jotaxpe@gateway/vpn/protonvpn/jotaxpe)
23:50.20*** join/#devuan gast0n (~g4570n@unaffiliated/g4570n)
23:58.14*** join/#devuan brandflake11 (~user@2601:5c0:c380:83e0:33a0:a65e:a0c5:d0b)

Generated by irclog2html.pl Modified by Tim Riker to work with infobot.