Contenu | Rechercher | Menus

Annonce

Si vous avez des soucis pour rester connecté, déconnectez-vous puis reconnectez-vous depuis ce lien en cochant la case
Me connecter automatiquement lors de mes prochaines visites.

À propos de l'équipe du forum.

#1 Le 19/04/2017, à 13:52

teub

[Résolu] laptop ne s'éteind jamais en shutdown/reboot

Bonjour je possède un laptop Acer E3-112 series depuis 2 ans. J'étais sous ubuntu 14.04 LTS jusqu'à il y a 2 semaines, depuis j'ai installé sans soucis ubuntu 16.04 LTS. Le seul hic ets que le laptop ne s'éteind jamais quand je lance un shutdown ou reboot. En d'autres termes quand je lance une de ces deux commandes je suis deloggé et je vois le logo ubuntu mais jamais l'écran ne s'éteind. Je suis forcé de presser le bouton marche/arrêt en continu pendant quelques secondes afin de forcer l'arrêt. Ca ne me convient pas de devoir faire cela et j'aimerai quel le laptop s'éteigne.
Il est à noter que ce comportement est survenu tout à coup il y a maintenant quelques semaines lorsque ma machine était sous ubuntu 14.04.
Je suis passé a ubuntu 16.04 pour diverses raisons et je suis décu de voir que ce problème ait persisté.
Quelqu'un connaît-il un moyen de fixer cela ?
J'ai essayé de suivre des solutions sur des topics trouvé sur internet mais rien n'a réussi a résoudre mon problème. Voici le genre de choses que j'ai essayé :

sudo gedit /etc/default/grub
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash acpi=force apm=power_off"
sudo update-grub

ou sinon :

GRUB_CMDLINE_LINUX_DEFAULT="quiet splash reboot=bios"

et quelques autres paramètres dans les "" que j'ai oublié.

Dernière modification par teub (Le 19/04/2017, à 23:49)

Hors ligne

#2 Le 19/04/2017, à 14:18

teub

Re : [Résolu] laptop ne s'éteind jamais en shutdown/reboot

Je viens de trouver une solution qui fonctionne :

GRUB_CMDLINE_LINUX_DEFAULT=""

Je vois aussi qu'il semble que certains paramètres par defaut ne ont pas bons comme on peut le voir dans ce qui est retourné par la commande :

XXX@YYY:~$ sudo update-grub
Generating grub configuration file ...
Warning: Setting GRUB_TIMEOUT to a non-zero value when GRUB_HIDDEN_TIMEOUT is set is no longer supported.
Found linux image: /boot/vmlinuz-4.8.0-46-generic
Found initrd image: /boot/initrd.img-4.8.0-46-generic
Found linux image: /boot/vmlinuz-4.8.0-45-generic
Found initrd image: /boot/initrd.img-4.8.0-45-generic
Found linux image: /boot/vmlinuz-4.8.0-36-generic
Found initrd image: /boot/initrd.img-4.8.0-36-generic
Found memtest86+ image: /memtest86+.elf
Found memtest86+ image: /memtest86+.bin
done

Hors ligne

#3 Le 19/04/2017, à 14:26

teub

Re : [Résolu] laptop ne s'éteind jamais en shutdown/reboot

au cas ou, voici le contenu de /etc/default/grub :

# If you change this file, run 'update-grub' afterwards to update
# /boot/grub/grub.cfg.
# For full documentation of the options in this file, see:
#   info -f grub -n 'Simple configuration'

GRUB_DEFAULT=0
GRUB_HIDDEN_TIMEOUT=0
GRUB_HIDDEN_TIMEOUT_QUIET=true
GRUB_TIMEOUT=10
GRUB_DISTRIBUTOR=`lsb_release -i -s 2> /dev/null || echo Debian`
# init -> laptop never shutdown
#GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"
# my modif
GRUB_CMDLINE_LINUX_DEFAULT=""
GRUB_CMDLINE_LINUX=""

# Uncomment to enable BadRAM filtering, modify to suit your needs
# This works with Linux (no patch required) and with any kernel that obtains
# the memory map information from GRUB (GNU Mach, kernel of FreeBSD ...)
#GRUB_BADRAM="0x01234567,0xfefefefe,0x89abcdef,0xefefefef"

# Uncomment to disable graphical terminal (grub-pc only)
#GRUB_TERMINAL=console

# The resolution used on graphical terminal
# note that you can use only modes which your graphic card supports via VBE
# you can see them in real GRUB with the command `vbeinfo'
#GRUB_GFXMODE=640x480

# Uncomment if you don't want GRUB to pass "root=UUID=xxx" parameter to Linux
#GRUB_DISABLE_LINUX_UUID=true

# Uncomment to disable generation of recovery mode menu entries
#GRUB_DISABLE_RECOVERY="true"

# Uncomment to get a beep at grub start
#GRUB_INIT_TUNE="480 440 1"

Dernière modification par teub (Le 19/04/2017, à 14:26)

Hors ligne

#4 Le 19/04/2017, à 14:58

grandtoubab

Re : [Résolu] laptop ne s'éteind jamais en shutdown/reboot

Salut,
Les histoires de timeout c'est parce qu'Ubuntu masque l'affichage du menu grub.
J'ai moi aussi constaté des problèmes lors de l'arrêt. Je les ai imputé à Plymouth et l'utilisation du parametre splash ( ce qui déclenche les images animées au boot)
Par contre quiet sert à masquer les messages texte lors du démarrage et de l'arrêt et ça ne me pose pas de problème de le laisser

Pour info, mon grub, NB j'utilise apparmor c'est pour cela que j'ai ajouté le paramètre

 cat /etc/default/grub
# If you change this file, run 'update-grub' afterwards to update
# /boot/grub/grub.cfg.
# For full documentation of the options in this file, see:
#   info -f grub -n 'Simple configuration'

GRUB_DEFAULT=0
GRUB_TIMEOUT=5
GRUB_DISTRIBUTOR=`lsb_release -i -s 2> /dev/null || echo Debian`
GRUB_CMDLINE_LINUX_DEFAULT="quiet apparmor=1 security=apparmor"
GRUB_CMDLINE_LINUX=" "

Dernière modification par grandtoubab (Le 19/04/2017, à 15:00)


Linux tout seul sur HP Pavilion DV7 et Acer Aspire T650, Canon MG3650 en wifi
Debian 11 Bullseye Gnome/Xorg, Gnome/Wayland avec SDDM
https://bidouilledebian.wordpress.com/
ON M'A VU DANS LE VERCORS, SAUTER A L'ELASTIQUE..... J'AI DANS LES BOTTES DES MONTAGNES DE QUESTIONS....

Hors ligne