Difference between revisions of "Systemd"
From HackerNet
Helikopter (talk | contribs) |
|||
Line 8: | Line 8: | ||
apt-get install systemd systemd-sysv | apt-get install systemd systemd-sysv | ||
reboot | reboot | ||
+ | |||
+ | Titta på senaste uppstart grafiskt. Testa detta, seriöst det är coolt! | ||
+ | systemd-analyze plot > plot.svg | ||
+ | |||
+ | =Systemctl= | ||
+ | Det huvudsakliga kommandot man använder är systemctl. Systemctl ersätter service och chkconfig. | ||
+ | systemctl start sshd.service | ||
+ | systemctl stop sshd.service | ||
+ | systemctl restart sshd.service | ||
+ | systemctl status sshd.service | ||
+ | Autostarta en service | ||
+ | systemctl enable sshd.service | ||
+ | systemctl disable sshd.service |
Revision as of 10:15, 15 May 2015
Systemd är en ny service hanterare för linux. Den tar bland annat hand om upstarten och man märker ett stor skillnad mot tidigare. Den är redan default hanterare i flera stora linux distar förutom Debian och Ubuntu.
Den planeras att läggas in som default i Debian 8(Jessie).
Installera
Verfierat på Debian 7(wheezy)
apt-get update apt-get install systemd systemd-sysv reboot
Titta på senaste uppstart grafiskt. Testa detta, seriöst det är coolt!
systemd-analyze plot > plot.svg
Systemctl
Det huvudsakliga kommandot man använder är systemctl. Systemctl ersätter service och chkconfig.
systemctl start sshd.service systemctl stop sshd.service systemctl restart sshd.service systemctl status sshd.service
Autostarta en service
systemctl enable sshd.service systemctl disable sshd.service