システムの開始時間を調整しようとしています。通常、私はそれを使用してそれについて行きます
systemd-analyze blame
それは私に物のリストとそれらが開始するのにどれくらい時間がかかるかを与えます。このマシンではほとんど必要ないので、その場合は
systemctl mask SERVICENAME
または
systemctl disable SERVICENAME
しかし、私はsysvinitシステムを使用していないため、これらのコマンドの代替を探しています。
Systemd Command ------------------------------- Sysvinit Command
systemctl start fooserv ------------------------ service fooserv start
systemctl stop fooserv ------------------------- service fooserv stop
systemctl restart fooserv ---------------------- service fooserv restart
systemctl reload fooserv ----------------------- service fooserv reload
systemctl condrestart fooserv ------------------ service fooserv condrestart
systemctl status fooserv ----------------------- service fooserv status
systemctl list-unit-files --type=service ------- ls /etc/rc.d/init.d/
systemctl enable fooserv ----------------------- chkconfig fooserv on
systemctl disable fooserv ---------------------- chkconfig fooserv off
systemctl is-enabled fooserv ------------------- chkconfig fooserv
systemctl list-unit-files --type=service ------- chkconfig --list
ls /etc/systemd/system/*.wants/fooserv.service - chkconfig fooserv --list
systemctl daemon-reload ------------------------ chkconfig fooserv --add
systemctl isolate multi-user.target ------------ telinit 3
systemctl halt --------------------------------- halt
systemctl poweroff ----------------------------- poweroff
systemctl reboot ------------------------------- reboot
systemctl suspend ------------------------------ pm-suspend
systemctl hibernate ---------------------------- pm-hibernate
journalctl -f ---------------------------------- tail -f /var/log/messages
systemd-analyze
は、起動時間を確認するための新しいコマンドです
systemctl mask
はsystemctl disable
の強力なバージョンです。これにより、これらのユニットが/ dev/nullにリンクされ、起動できなくなります。