Sysvinit alternativa de systemd-analyse e systemctl?

4

Estou tentando ajustar a hora de início do meu sistema. Normalmente eu faço isso usando

systemd-analyze blame

O que me dá uma lista de coisas e quanto tempo elas levam para começar. Para esta máquina eu não preciso da maioria deles, então é um caso de então

systemctl mask SERVICENAME

Ou

systemctl disable SERVICENAME

Mas eu estou em um sistema sysvinit não e buscando alternativas para esses comandos.

    
por John 25.05.2015 / 22:03

1 resposta

1

Comandos Systemd e Comandos 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 é um novo comando para verificar o tempo de inicialização

systemctl mask é uma versão mais strong de systemctl disable . Isto irá ligar estas unidades a / dev / null, tornando impossível iniciá-las.

Fonte

    
por kyodake 26.05.2015 / 02:03