Linux Gracioso Shutdown

9

Ouvi dizer que "shutdown -h now" não é um comando de desligamento normal porque faz algo parecido com "kill -9" para todos os processos, ao contrário de "kill -15".

Isso é verdade e, em caso afirmativo, qual é a maneira mais elegante de encerrar para garantir que tudo tenha tempo de limpar depois de tudo?

p. Usando CentOS, Ubuntu e Debian principalmente.

    
por jwbensley 04.11.2011 / 12:59

2 respostas

11

shutdown -h now chamará /etc/rc.d/rc ou /etc/init.d/rc . O script rc chamará os scripts kill do novo runlevel (0 para -h , 6 para -r ), seguido por qualquer script de início.

Você verá S30killprocs ou S00killall ou algo assim dependendo da sua distro. Isso ocorre depois que todos os scripts de kill foram chamados para tentar parar cada serviço normalmente. Ele tentará kill -15 primeiro, seguido por kill -9 .

Resposta curta: shutdown -h now ou shutdown -r now são graciosos. halt e reboot costumavam ser não-graciosos, mas só chamam shutdown para você, a menos que você use a opção -f .

    
por 04.11.2011 / 13:18
9

Não, isso não é verdade. shutdown altera o nível de inicialização que, em seguida, executa todos os scripts de desligamento. O que esses scripts fazem depende do script. Mas eles normalmente não terminam processos, mas enviam-lhes o sinal para terminar.

Portanto, este é o excerto manual de shutdown :

   shutdown  brings  the system down in a secure way.  All logged-in users
   are notified that the system is going down, and  login(1)  is  blocked.
   It is possible to shut the system down immediately or after a specified
   delay.  All processes are first notified that the system is going  down
   by the signal SIGTERM.  This gives programs like vi(1) the time to save
   the file being edited, mail and news processing programs  a  chance  to
   exit  cleanly,  etc.   shutdown  does  its  job  by signalling the init
   process, asking it to change the runlevel.  Runlevel 0 is used to  halt
   the  system, runlevel 6 is used to reboot the system, and runlevel 1 is
   used to put to system into a state where administrative  tasks  can  be
   performed; this is the default if neither the -h or -r flag is given to
   shutdown.  To see which actions are taken on halt  or  reboot  see  the
   appropriate entries for these runlevels in the file /etc/inittab.
    
por 04.11.2011 / 13:05

Tags