web-dev-qa-db-fra.com

coincé à l'arrêt ou redémarrer Ubuntu

Je suis très nouveau sur Linux. J'ai installé Ubuntu 14.04.4 LTS il y a 5-6 jours.

Lorsque je veux redémarrer ou éteindre le système, celui-ci se bloque (j'ai attendu plus de 3 heures), puis je me suis arrêté de force en appuyant sur le bouton d'arrêt.

Quand j'appuie esc pendant le redémarrage, il montre:

wait-for-static stop/waiting
stopping rsync daemon rsync [ok]
speech-dispatcher disabled: edit /etc/default/speech-dispatcher
asking all remaining processes to terminate... [ok]
killing all remaining processes... [fail]
ModemManager[654]: could not aquire the 'org.freedesktop.ModemManager' service name
Modemmanager[654] ModemManager is shutdown
deactivating swap... [ok]
mount: / is busy
will now restart

Quand j'appuie esc pendant l'arrêt, il montre:

wait-for-static stop/waiting
stopping rsync daemon rsync [ok]
speech-dispatcher disabled: edit /etc/default/speech-dispatcher
asking all remaining processes to terminate... [ok]
ModemManager[654]: Modem /org/freedesktop/ModemManager1/Modem/0: signal quantity updated(20)
killing all remaining processes... [fail]

ModemManager[654]: could not aquire the 'org.freedesktop.ModemManager' service name
Modemmanager[654]: Modem /org/freedesktop/ModemManager1/Modem/0: state changed (registered -> disabling)
Modemmanager[654]: Modem /org/freedesktop/ModemManager1/Modem/0: signal quality updated (0)
Modemmanager[654]: Modem /org/freedesktop/ModemManager1/Modem/0: access technology changed (gprs -> unknown)
Modemmanager[654]: Caught signal, shutting down...
deactivating swap... [ok]
mount: / is busy
will now halt

Quel est le problème et comment puis-je le résoudre?

1
pawan singh dhami

J'ai aussi ça. (mais je n'ai pas appuyé sur Esc bien que). Lorsqu'il se bloque, j'appuie sur le bouton d'alimentation de la machine, celle-ci s'éteint au bout de 5 secondes environ.

1
Mina Michael

Eh bien, je vous recommande de modifier votre fichier grub comme suit:

Ouvrez le terminal et devenez root en publiant

Sudo -i

Editer le fichier grub.

nano /etc/default/grub 

Recherchez la ligne commençant par GRUB_CMDLINE_LINUX_DEFAULT et modifiez-la comme suit:

GRUB_CMDLINE_LINUX_DEFAULT="quiet splash reboot=bios"

Maintenant, mettez à jour grub en émettant

Sudo update-grub

Redémarrez votre système.

Sudo reboot
0
SAGAR Nair