Autor Tópico: Ubuntu Jaunty Não Desliga nem Reinicia  (Lida 1929 vezes)

Offline sistematico

  • Usuário Ubuntu
  • *
  • Mensagens: 576
  • Sistematico
    • Ver perfil
    • Sistematico.org
Ubuntu Jaunty Não Desliga nem Reinicia
« Online: 30 de Abril de 2009, 12:14 »
Pessoal, estou tendo o seguinte problema pra desligar ou reiniciar no Ubuntu, aparece isso aqui:
* Killing all remaining processes...            [fail]
...
mount: / is busy
* Will now halt

Aí o sistema congela e só desliga pelo botão(se ficar pressionado) ou reincia pelo CTRL + ALT + DEL.

Alguem passou por isso?
Acho que não instalei nada estravagante, e no Intrepid o PC estava normal.

Obrigado.
Lucas Saliés Brum
Ubuntu User #27150
http://sistematico.org

Offline RUDR1GO

  • Usuário Ubuntu
  • *
  • Mensagens: 56
  • Linux user #496641
    • Ver perfil
    • POCEIROS
Re: Ubuntu Jaunty Não Desliga nem Reinicia
« Resposta #1 Online: 16 de Setembro de 2009, 13:25 »
Também estou com o mesmo problema.... :'(

@rudr1go

Offline mpmoraes

  • Usuário Ubuntu
  • *
  • Mensagens: 516
  • Rio de Janeiro - RJ
    • Ver perfil
Re: Ubuntu Jaunty Não Desliga nem Reinicia
« Resposta #2 Online: 16 de Setembro de 2009, 14:19 »
Passo 1 - Adicionar a linha: apm power_off=1, no /etc/modules com o comando:
Citar
echo "apm power_off=1" >> /etc/modules

Passo2 - Adicionar as opções na linha do boot: acpi=off apm=power_off, no /boot/grub/menu.lst
Citar
sudo gedit /boot/grub/menu.lst
Este comando vai abrir o arquivo menu.lst e a inclusão dos parâmetros se dará conforme abaixo (em negrito)
Citar
## should update-grub add savedefault to the default options
## can be true or false
# savedefault=false

## ## End Default Options ##

title      Ubuntu 9.04, kernel 2.6.28-11-generic
uuid      7d998ba1-1061-48fe-a4a9-ec78afd57132
kernel      /boot/vmlinuz-2.6.28-11-generic root=UUID=7d998ba1-1061-48fe-a4a9-ec78afd57132 ro locale=pt_BR quiet splash acpi=off
apm=power_off
initrd      /boot/initrd.img-2.6.28-11-generic
quiet

title      Ubuntu 9.04, kernel 2.6.28-11-generic (recovery mode)
uuid      7d998ba1-1061-48fe-a4a9-ec78afd57132
kernel      /boot/vmlinuz-2.6.28-11-generic root=UUID=7d998ba1-1061-48fe-a4a9-ec78afd57132 ro locale=pt_BR  single
initrd      /boot/initrd.img-2.6.28-11-generic

title      Ubuntu 9.04, kernel 2.6.27-11-generic
uuid      7d998ba1-1061-48fe-a4a9-ec78afd57132
kernel      /boot/vmlinuz-2.6.27-11-generic root=UUID=7d998ba1-1061-48fe-a4a9-ec78afd57132 ro locale=pt_BR quiet splash
initrd      /boot/initrd.img-2.6.27-11-generic
quiet

title      Ubuntu 9.04, kernel 2.6.27-11-generic (recovery mode)
uuid      7d998ba1-1061-48fe-a4a9-ec78afd57132
kernel      /boot/vmlinuz-2.6.27-11-generic root=UUID=7d998ba1-1061-48fe-a4a9-ec78afd57132 ro locale=pt_BR  single
initrd      /boot/initrd.img-2.6.27-11-generic

title      Ubuntu 9.04, memtest86+
uuid      7d998ba1-1061-48fe-a4a9-ec78afd57132
kernel      /boot/memtest86+.bin
quiet

### END DEBIAN AUTOMAGIC KERNELS LIST

Depois posta aqui o resultado...
Ubuntu 12.04 - AMD64 Notebook: Compaq Q40-714br, Intel Core 2 Duo T6600 2.2GHz Memória 4GB HD 500GB DVD-RW

Offline RUDR1GO

  • Usuário Ubuntu
  • *
  • Mensagens: 56
  • Linux user #496641
    • Ver perfil
    • POCEIROS
Re: Ubuntu Jaunty Não Desliga nem Reinicia
« Resposta #3 Online: 16 de Setembro de 2009, 14:44 »
Fiz a dica acima já há algum tempo e não tinha resolvido meu problema, resolveu com essa dica aqui:

Edite o arquivo /etc/init.d/alsa-utils
view source
print?
1.sudo gedit /etc/init.d/alsa-utils

Após o texto “stop)” no arquivo (aproximadamente na linha 353), adicione:

ifconfig wlan0 down
ifconfig eth0 down

Então o arquivo deve ficar assim:
stop)
ifconfig wlan0 down
ifconfig eth0 down
EXITSTATUS=0

@rudr1go