LinuxQuestions.org
Help answer threads with 0 replies.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - General
User Name
Password
Linux - General This Linux forum is for general Linux questions and discussion.
If it is Linux Related and doesn't seem to fit in any other forum then this is the place.

Notices


View Poll Results: Are you for or against systemd?
Love it! 10 9.35%
Don't like it, prefer a different one! 30 28.04%
HATE IT!! 34 31.78%
Could not careless! 33 30.84%
Voters: 107. You may not vote on this poll

Reply
  Search this Thread
Old 04-17-2017, 02:30 AM   #16
jsbjsb001
Senior Member
 
Registered: Mar 2009
Location: Earth, unfortunately...
Distribution: Currently: OpenMandriva. Previously: openSUSE, PCLinuxOS, CentOS, among others over the years.
Posts: 3,881

Original Poster
Rep: Reputation: 2063Reputation: 2063Reputation: 2063Reputation: 2063Reputation: 2063Reputation: 2063Reputation: 2063Reputation: 2063Reputation: 2063Reputation: 2063Reputation: 2063

VERY interesting! Now, let's expand the discussion, if you don't care much for systemd (and/or voted "HATE IT!" or "Don't like it, prefer a different one!"), which one would you prefer?? (if any at all) runit, upstart, or something else?? And maybe why??

PS. I'm glad I'm not systemd's developers, as no one at this point seems to have a strong opinion in favor of it!

Last edited by jsbjsb001; 04-17-2017 at 02:31 AM.
 
Old 04-17-2017, 05:50 AM   #17
fido_dogstoyevsky
Member
 
Registered: Feb 2015
Location: Victoria, Australia
Distribution: Slackware 15
Posts: 490
Blog Entries: 2

Rep: Reputation: 576Reputation: 576Reputation: 576Reputation: 576Reputation: 576Reputation: 576
Quote:
Originally Posted by jsbjsb001 View Post
...if you don't care much for systemd... which one would you prefer?
Anything that can be EASILY replaced by a competing project if I don't like it.
 
2 members found this post helpful.
Old 04-17-2017, 05:51 AM   #18
Xeratul
Senior Member
 
Registered: Jun 2006
Location: UNIX
Distribution: FreeBSD
Posts: 2,657

Rep: Reputation: 255Reputation: 255Reputation: 255
Systemd is a good thing, because it is available on all linux distributions.
 
Old 04-17-2017, 07:56 AM   #19
fatmac
LQ Guru
 
Registered: Sep 2011
Location: Upper Hale, Surrey/Hants Border, UK
Distribution: Mainly Devuan, antiX, & Void, with Tiny Core, Fatdog, & BSD thrown in.
Posts: 5,498

Rep: Reputation: Disabled
If it were just another init system, there would have been no outcry, but it is not, it is being integrated into other programs, causing a lot of bother to people who like 'freedom', whether you are for it or not, you can see that for your self.

Personally, I like the unix way of doing things, & will continue to support those who continue along this line.
 
4 members found this post helpful.
Old 04-17-2017, 08:07 AM   #20
Xeratul
Senior Member
 
Registered: Jun 2006
Location: UNIX
Distribution: FreeBSD
Posts: 2,657

Rep: Reputation: 255Reputation: 255Reputation: 255
It is just meaning that the original "Unix philosophy" is no longer existing in today's Linux community.

The today's Linux community is not congruent at all.


So, let's take a simple programmer example. Are you ready?
GTK is today classic and standard, right? Compiling this will cause in interesting results on your installation.
Code:
/* example-start base base.c */

#include <gtk/gtk.h>

int main( int   argc,
          char *argv[] )
{
    GtkWidget *window;
    
    gtk_init (&argc, &argv);
    
    window = gtk_window_new (GTK_WINDOW_TOPLEVEL);
    gtk_widget_show  (window);
    
    gtk_main ();
    
    return(0);
}
/* example-end */
Awesome example, right? herewith what it gives
Code:
The following NEW packages will be installed:
  autopoint build-essential debhelper dpkg-dev fakeroot gettext gir1.2-atk-1.0
  gir1.2-freedesktop gir1.2-gdkpixbuf-2.0 gir1.2-glib-2.0 gir1.2-gtk-2.0
  gir1.2-pango-1.0 intltool-debian libalgorithm-diff-perl
  libalgorithm-diff-xs-perl libalgorithm-merge-perl libasprintf-dev
  libatk1.0-dev libcairo-script-interpreter2 libcairo2-dev libdpkg-perl
  libfakeroot libfile-fcntllock-perl libgdk-pixbuf2.0-dev libgettextpo-dev
  libgettextpo0 libgirepository-1.0-1 libgtk2.0-dev libharfbuzz-dev
  libharfbuzz-gobject0 liblzo2-2 libmail-sendmail-perl libpango1.0-dev
  libpixman-1-dev libsys-hostname-long-perl libxcb-shm0-dev libxcomposite-dev
  libxcursor-dev libxi-dev libxml2-utils libxrandr-dev po-debconf
  x11proto-composite-dev x11proto-randr-dev
0 upgraded, 44 newly installed, 0 to remove and 0 not upgraded.
Need to get 14.3 MB of archives.
After this operation, 45.3 MB of additional disk space will be used.
Do you want to continue? [Y/n] NOOOOOOOOOOOOOOOOOOOOOO

Last edited by Xeratul; 04-17-2017 at 08:37 AM.
 
Old 04-17-2017, 09:02 AM   #21
sundialsvcs
LQ Guru
 
Registered: Feb 2004
Location: SE Tennessee, USA
Distribution: Gentoo, LFS
Posts: 10,662
Blog Entries: 4

Rep: Reputation: 3943Reputation: 3943Reputation: 3943Reputation: 3943Reputation: 3943Reputation: 3943Reputation: 3943Reputation: 3943Reputation: 3943Reputation: 3943Reputation: 3943
As I said in another thread – the things that were true on an isolated 1970's minicomputer ... and, I was there ... are not today sacrosanct. Neither is the deployment situation the same. Today, a single large company might run hundreds or even thousands of Linux machines. They have to be able to control them remotely and to make them function as a distributed-computing unit. "systemd" was specifically conceived with these new operational requirements in mind.

If you can't conceive of a world without inittab and crontab with which to run your one Linux machine, there's no one stopping you ... even today ... from running your one Linux machine that way. But there was a reason for the various architectural decisions that the other teams made in constructing "systemd." And, there was a strongly perceived market demand, as seen by the various Linux distro author teams, to adopt it. They didn't do it out of reasons of conspiracy. They did it because they perceived that their customers demanded it.

Last edited by sundialsvcs; 04-17-2017 at 09:05 AM.
 
2 members found this post helpful.
Old 04-17-2017, 09:36 AM   #22
Emerson
LQ Sage
 
Registered: Nov 2004
Location: Saint Amant, Acadiana
Distribution: Gentoo ~amd64
Posts: 7,661

Rep: Reputation: Disabled
More systemd fun.
 
3 members found this post helpful.
Old 04-17-2017, 09:42 AM   #23
Xeratul
Senior Member
 
Registered: Jun 2006
Location: UNIX
Distribution: FreeBSD
Posts: 2,657

Rep: Reputation: 255Reputation: 255Reputation: 255
Sorry guys, this Systemd is adopted by most distros. This is a sane decision, otherwise, Linux distros would not be in favor of it.

If you are not happy of today's Linux, you can make your own distro or can anytime rewrite another Unix-like operating system. This time, you could make it really GNU, free, and without all those necessary libs for graphical apps; besides, you may remove java, perl, python, mono,...

Besides, good luck to compile anything from scratch, since many libs are require
This is why people should re-think about X11 and Motif or the ugly simplicity.

Have fun:
https://en.wikipedia.org/wiki/GNU_Assembler


Source: https://en.wikipedia.org/wiki/Systemd
Attached Thumbnails
Click image for larger version

Name:	distro.png
Views:	27
Size:	78.7 KB
ID:	24796  

Last edited by Xeratul; 04-17-2017 at 09:50 AM.
 
Old 04-17-2017, 09:48 AM   #24
Emerson
LQ Sage
 
Registered: Nov 2004
Location: Saint Amant, Acadiana
Distribution: Gentoo ~amd64
Posts: 7,661

Rep: Reputation: Disabled
Great logic. If something is widespread then it is a good thing. Like plague in middle ages.
 
5 members found this post helpful.
Old 04-17-2017, 09:52 AM   #25
Xeratul
Senior Member
 
Registered: Jun 2006
Location: UNIX
Distribution: FreeBSD
Posts: 2,657

Rep: Reputation: 255Reputation: 255Reputation: 255
Quote:
Originally Posted by Emerson View Post
Great logic. If something is widespread then it is a good thing. Like plague in middle ages.
People bare it and even better keep installing it, right?

Many many Ubuntu users are there (with Systemd).
 
Old 04-17-2017, 09:53 AM   #26
pingu_penguin
Member
 
Registered: Aug 2004
Location: pune
Distribution: Slackware
Posts: 350

Rep: Reputation: 60
Quote:
Sorry guys, this Systemd is adopted by most distros. This is a sane decision, otherwise, Linux distros would not be in favor of it.
What would you say if distros threw it out in a year ? esp when they realize its re-inventing the wheel.
 
1 members found this post helpful.
Old 04-17-2017, 09:57 AM   #27
hydrurga
LQ Guru
 
Registered: Nov 2008
Location: Pictland
Distribution: Linux Mint 21 MATE
Posts: 8,048
Blog Entries: 5

Rep: Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925
Quote:
Originally Posted by sundialsvcs View Post
They did it because they perceived that their customers demanded it.
Not necessarily. Changes are also often developer-led, to allow easier future development and maintenance of the platform.

Or, of course, a mixture of the two.
 
Old 04-17-2017, 09:59 AM   #28
Xeratul
Senior Member
 
Registered: Jun 2006
Location: UNIX
Distribution: FreeBSD
Posts: 2,657

Rep: Reputation: 255Reputation: 255Reputation: 255
Quote:
Originally Posted by pingu_penguin View Post
What would you say if distros threw it out in a year ? esp when they realize its re-inventing the wheel.
It won't throw it. Linux is now a big business, man.

I have a complete freedom, since I own my code, formats and applications.
https://github.com/spartrekus/
 
Old 04-17-2017, 09:59 AM   #29
hydrurga
LQ Guru
 
Registered: Nov 2008
Location: Pictland
Distribution: Linux Mint 21 MATE
Posts: 8,048
Blog Entries: 5

Rep: Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925
Quote:
Originally Posted by pingu_penguin View Post
What would you say if distros threw it out in a year ? esp when they realize its re-inventing the wheel.
If ifs and buts were pots and pans. Re-inventing the wheel, no. Redesigning it, yes.
 
Old 04-17-2017, 10:04 AM   #30
pingu_penguin
Member
 
Registered: Aug 2004
Location: pune
Distribution: Slackware
Posts: 350

Rep: Reputation: 60
I do not like systemd because you do not have the freedom to replace it without messing things.

Quote:
If ifs and buts were pots and pans
I thought it went - If ifs and buts were candy and nuts , it would be a merry xmas
 
  


Reply

Tags
init, systemd



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
LXer: systemd 230 Launches with DNSSEC Enabled by Default in systemd-resolved LXer Syndicated Linux News 0 05-22-2016 11:41 AM
Can't access full journalctl from script via systemd service even though user is in systemd-journal group iwtbf Linux - Newbie 0 02-19-2016 02:44 PM
LXer: Why pro-systemd and anti-systemd people will never get along LXer Syndicated Linux News 0 05-15-2015 11:44 PM
LXer: Is systemd as bad as boycott systemd is trying to make it? LXer Syndicated Linux News 0 09-03-2014 05:50 PM
Boot Delay 30min: systemd-analyze blame systemd-tmpfiles-setup.service BGHolmes Fedora 0 07-27-2011 09:02 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - General

All times are GMT -5. The time now is 05:57 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration