Não é possível desligar através do terminal

0

Sempre que eu uso o seguinte

sudo shutdown now

sudo reboot

sudo shutdown -h

meu laptop vai parar, o que exatamente é, em algum momento eles funcionam, mas não o tempo todo .. por que é tão ..

há algo errado com o meu comando de entrada ou instalação?

    
por Sukupa91 13.11.2013 / 15:04

3 respostas

1

Experimente o seguinte código

sudo shutdown -P now

Todas as opções disponíveis para o comando shutdown são

-r     Requests that the system be rebooted after it has been brought down.
-h     Requests that the system be either halted or powered off after it has been brought down, with the choice as to which left up to the system.
-H     Requests that the system be halted after it has been brought down.
-P     Requests that the system be powered off after it has been brought down.
-c     Cancels a running shutdown.
-k     Only send out the warning messages and disable logins, do not actually bring the system down.
    
por Ibungo 13.11.2013 / 15:32
1

Tente o comando sudo shutdown -h now para desligar rapidamente.

    
por Avinash Raj 13.11.2013 / 15:08
0

Tente

init 0

iniciar o processo de desligamento de todos os processos / daemons gerados como escritos nos arquivos init

    
por Sambit 13.11.2013 / 15:20