
I can not wait
A) For people making posts about how terrible systemd is because a detail that only affects them is buggy and systemd is the worse thing ever.
B) The majority of the people who criticised systemd without having even seen it realizing that systemd is not only not going to eat their babies, but also it is quite a few steps forward.
How do you check your logs on a systemd system:
less /var/log/<whatever>
How do you mount stuff:
vim /etc/fstab
How do you... you get it,
Starting and stopping things is perhaps the biggest change for most people, instead of:
/etc/init.d/<service> restart
you do:
systemctl restart <service>
Some of the things systemd does are a dramatic improvement over sysv, like tracking processes IE:
systemctl status firewalld
firewalld.service - firewalld - dynamic firewall daemon
Loaded: loaded (/usr/lib/systemd/system/firewalld.service; enabled)
Active: active (running) since Wed 2015-04-01 14:15:22 BST; 7s ago
Main PID: 3463 (firewalld)
CGroup: /system.slice/firewalld.service
+-3463 /usr/bin/python -Es /usr/sbin/firewalld --nofork --nopid
Apr 01 14:15:22 nsa00systemd.willeat.your.babies.com systemd[1]: Starting firewalld - dynamic firewall daemon...
Apr 01 14:15:22 nsa00systemd.willeat.your.babies.com systemd[1]: Started firewalld - dynamic firewall daemon.