• 0 Posts
  • 14 Comments
Joined 1 year ago
cake
Cake day: June 19th, 2023

help-circle





  • StrangeAstronomer@lemmy.mltoLinux@lemmy.ml*Permanently Deleted*
    link
    fedilink
    arrow-up
    42
    arrow-down
    1
    ·
    11 months ago

    To imply that systemd is merely an init system is ingenuous at best and dishonest at worst - systemd is so much more than an init system, as that article mentioned. Since the article was written in 2014 systemd has grown massively in scope, even more than the author feared.

    It manages DNS, home directories, system services, seat managment, cron, system logging, booting… the list is ever growing. As such many people fear it is becoming too dominant through making more and more software dependent on it. It is not atomic - it is very difficult to have just one piece of systemd as its parts are tightly integrated and inter-dependent.

    One could even claim that systemd failed in it’s original remit - to make startup as fast as macOS by running tasks in parallel and by deferring service startup until they are actually needed. The result has been a not very performant init system - many init systems are faster eg runit, dinit. The systemd people now claim that speed is not a design goal.

    It is, however, open source and very widely adopted. Most people don’t care - they just want to run their browser and word processor.


  • StrangeAstronomer@lemmy.mltoLinux@lemmy.ml*Permanently Deleted*
    link
    fedilink
    arrow-up
    37
    arrow-down
    5
    ·
    11 months ago

    What for? Even if they have improvements in some areas, the original POSIX standard utilities will continue to be needed for script compatibility. You’re not going to swap them out - at best you can add them and then you just have an additional code base to support with additional attack surface to protect.



  • voidlinux on my laptop (from Fedora) - why? I wanted to see what a systemd-less distro was like nowadays. I have used Linux since 1992 and Unix since 1984 so I’m used to SysVinit. What I find with voidlinux is a system I can understand easily - not that I struggle with systemd, but I felt there was just so much happening under the hood, just too clever by half. If I wanted MacOS, I’d have bought an Apple.

    The packaging system on voidlinux is sooooo much faster than fedora. The really weird thing is that my battery life almost doubled. I can’t explain it except to say that the laptop is much calmer than under fedora, which seems to run the fan constantly. Same workload, CPU governers, powertop tweaks etc etc - but battery life almost doubled.

    The one downside is a smaller array of packages in the repositories. But since I’m happy installing from source for those few corner cases, it’s no biggie.

    I’ve left fedora on my media/file server for now as I still do some fedora packaging (mainly for sway related packages).





  • Sorry for delayed response, just getting used to lemmy …

    No, I don’t see comments - if I’m interested in the headline, I press ‘b’ to pop up the full item in my browser.

    Yes, I subscribe to communities like this:

    (use-package elfeed
      :bind (:map elfeed-search-mode-map
                  ("s" . elfeed-search-set-filter)
                  ("S" . elfeed-search-live-filter))
      :config (setf elfeed-sort-order 'ascending))
    
    ;; elfeed-dashboard is a nice add-on
    (use-package elfeed-dashboard
      :ensure t
      :bind ("C-x w" . 'elfeed-dashboard)
      :config
      (setq elfeed-dashboard-file "~/.config/emacs/elfeed-dashboard.org")
      ;; update feed counts on elfeed-quit
      (advice-add 'elfeed-search-quit-window :after #'elfeed-dashboard-update-links))
    
    (setq elfeed-feeds '(
                         ("http://xkcd.com/rss.xml" comic xkcd)
                         ("http://rss.slashdot.org/Slashdot/slashdotMain" slashdot)
                         ("https://www.reddit.com/r/emacs/new/.rss?sort=new" reddit emacs)
                         ("https://www.reddit.com/r/linux/new/.rss?sort=new" reddit linux)
                         ("https://rss.beehiiv.com/feeds/iiTciQgHPG.xml" fossweekly linux)
                         ("https://distrowatch.com/news/dw.xml" news distrowatch linux)
                         ("http://oglaf.com/feeds/rss/" comic oglaf)
                         ("https://www.reddit.com/r/linuxquestions/new/.rss?sort=new" reddit linuxquestions)
                         ("https://www.reddit.com/r/fedora/new/.rss?sort=new" reddit fedora)
                         ("https://feeds.bbci.co.uk/news/rss.xml" news bbc)
                         ("https://www.rt.com/rss/" news rt)
                         ("https://hnrss.org/frontpage?count=100" news hacker)
                         ("https://www.reddit.com/r/swaywm/new/.rss?sort=new" reddit sway)
                         ("https://www.reddit.com/r/i3wm/new/.rss?sort=new" reddit i3wm)
                         ("https://www.reddit.com/r/nordvpn/new/.rss?sort=new" reddit nordvpn)
                         ("https://lwn.net/headlines/rss" news LWN.net)
                         ("https://lobste.rs/t/linux.rss" news lobsterlinux linux)
                         ("https://www.emacswiki.org/emacs?action=rss" news EmacsWiki emacs)
                         ("https://feeds.arstechnica.com/arstechnica/index" news arstechnica)
                         ("https://www.engadget.com/rss.xml" news engadget)
                         ("https://lemmy.ml/feeds/c/emacs.xml?sort=Active" emacs lemmy)
                         ("https://lemmy.ml/feeds/c/linux.xml?sort=New" linux lemmy)
                         ("https://lemmy.ml/feeds/c/swaywm.xml?sort=New" sway lemmy)))