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 13/04/2010, à 09:03

aranud

ubuntu accueil flou

Bonjour !
je suis nouveau dans ubuntu et j'utilise la 10.04 depuis 2 jours smile
voilà après avoir installé les mises à jour dont les propriétaires ati...
enfin bref installation faite tout est ok sauf que l'écran de chargement "ubuntu" avec les 4 petits points qui clignotent.

il était toujours bien net mais depuis il est complètement "pixélisé" par exemple quand on enregistre un fichier gif en jpg ça devient très flou là c'est pareil, j'ai impression d'être en 8 ou 16 bits en affichage !
(mais c'est juste le démarrage/arrêt de l'écran mais le reste est ok j'arrrive même à lancer des jeux en 3D)

quelqu'un à une idée ?
merci !

Dernière modification par aranud (Le 13/04/2010, à 09:04)


Acer Swift 3 - Ubuntu Mate 20.04 LTS

Hors ligne

#2 Le 13/04/2010, à 09:24

Seren

Re : ubuntu accueil flou

Le driver propriétaire ne gère pas bien ce qu'il faut pour que l'écran de démarrage et d'extinction soit correcte.(fourni par plymouth)

Il me semble que ça devrait s'améliorer d'ici la version finale, mais c'est pas sûr...

Dernière modification par Seren (Le 13/04/2010, à 09:27)


"I am not young enough to know everything". Oscar Wilde

Hors ligne

#3 Le 13/04/2010, à 12:33

lock

Re : ubuntu accueil flou

Bonjour,
Voici la marche à suivre que j'ai moi même faite pour avoir un beau démarrage. Cependant il me semble et je ne sais pas si c'est lié que cela ne boot pas à tout les coups maintenant .... (pas assez de recul pour imputer ça à la version beta ou à la manip, je verrais ce soir)

On édite le grub (Grub2) :

sudo gedit /etc/default/grub

On décommente cette ligne (on enlève le #)

GRUB_GFXMODE=640x480

En y mettant la résolution qui nous intéresse. (je l'ai mis en 1024x768 car il n'aime pas trop mon 1440x900)

Ensuite on édite un autre fichier du grub

sudo gedit /etc/grub.d/00_header

Pour y trouver la ligne suivante : gfxmode=${GRUB_GFXMODE} en dessous de laquelle on y inscrit :

set gfxpayload=keep

Ensuite il ne reste plus qu'a mettre à jour le grub avec

sudo update-grub

Il semble que ca fix un problème de prise en charge des drivers proprio Nvidia : ce qui est mon cas.
Cordialement


EDIT : Alors mon ordi redémarre a chaque fois... Il a du planté les 2 fois de suite par hasard tout à l'heure smile
La manip marche donc très bien. Cependant on sent que ca a du mal avec les drivers NVIDIA. En effet avant la prise en charge du splash et tout le tralala, l'ordi reste bloqué 5-6sec sur un écran noir. C'est dommage car après ça c'est une fusée !!!

Source : http://www.webupd8.org/2010/03/how-to-g … .html#more

Dernière modification par lock (Le 13/04/2010, à 16:39)


Dell Precision 5520
Intel© Xeon© CPU E3-1505M v6 @ 3.00GHz × 4
Intel Corporation HD Graphics P630

Hors ligne

#4 Le 23/04/2010, à 13:44

did

Re : ubuntu accueil flou

Salut,

Ces modifications fonctionnent chez moi (j'obtiens bien une meilleure résolution de Grub) mais elles ne me permettent pas ensuite de lancer ma session avec le driver proprio Nvidia et je me retrouve avec un mode graphique dégradé.
Pour palier ce problème je doit utiliser la ligne

set gfxpayload=1024x768

dans la modification du fichier /etc/grub.d/00_header.

http://forum.ubuntu-fr.org/viewtopic.php?id=391343

Hors ligne

#5 Le 30/04/2010, à 16:34

lebojojo

Re : ubuntu accueil flou

Bonjour,
même problème pour moi.
j'ai une carte vidéo Gforce 8800 GTS 512mb et depuis le passage à la version 10.04, j'ai plus le logo ubuntu au démarrage mais que des points qui clignotent.
Ensuite boot normal.
Dans le fichier /etc/grub.d/00_header , je n'ai pas la ligne gfxmode=${GRUB_GFXMODE}.
Quelqu'un peut-il m'aider.
voici le contenu de mon fichier 00_header.
Merci


#! /bin/sh -e

# grub-mkconfig helper script.
# Copyright (C) 2006,2007,2008,2009,2010  Free Software Foundation, Inc.
#
# GRUB is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# GRUB is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with GRUB.  If not, see <http://www.gnu.org/licenses/>.

transform="s,x,x,"

prefix=/usr
exec_prefix=${prefix}
libdir=${exec_prefix}/lib
grub_prefix=`echo /boot/grub | sed ${transform}`
locale_dir=`echo /boot/grub/locale | sed ${transform}`
grub_lang=`echo $LANG | cut -d _ -f 1`

. ${libdir}/grub/grub-mkconfig_lib

# Do this as early as possible, since other commands might depend on it.
# (e.g. the `loadfont' command might need lvm or raid modules)
for i in ${GRUB_PRELOAD_MODULES} ; do
  echo "insmod $i"
done

if [ "x${GRUB_DEFAULT}" = "x" ] ; then GRUB_DEFAULT=0 ; fi
if [ "x${GRUB_DEFAULT}" = "xsaved" ] ; then GRUB_DEFAULT='${saved_entry}' ; fi
if [ "x${GRUB_TIMEOUT}" = "x" ] ; then GRUB_TIMEOUT=5 ; fi
if [ "x${GRUB_GFXMODE}" = "x" ] ; then GRUB_GFXMODE=640x480 ; fi

cat << EOF
if [ -s \$prefix/grubenv ]; then
  load_env
fi
set default="${GRUB_DEFAULT}"
if [ \${prev_saved_entry} ]; then
  set saved_entry=\${prev_saved_entry}
  save_env saved_entry
  set prev_saved_entry=
  save_env prev_saved_entry
  set boot_once=true
fi

function savedefault {
  if [ -z \${boot_once} ]; then
    saved_entry=\${chosen}
    save_env saved_entry
  fi
}

function recordfail {
  set recordfail=1
  if [ -n \${have_grubenv} ]; then if [ -z \${boot_once} ]; then save_env recordfail; fi; fi
}
EOF

case ${GRUB_TERMINAL_INPUT}:${GRUB_TERMINAL_OUTPUT} in
  serial:* | *:serial)
    if ! test -e ${grub_prefix}/serial.mod ; then
      echo "Serial terminal not available on this platform." >&2 ; exit 1
    fi

    if [ "x${GRUB_SERIAL_COMMAND}" = "x" ] ; then
      grub_warn "Requested serial terminal but GRUB_SERIAL_COMMAND is unspecified. Default parameters will be used."
      GRUB_SERIAL_COMMAND=serial
    fi
    echo "${GRUB_SERIAL_COMMAND}"
  ;;
esac

case x${GRUB_TERMINAL_INPUT} in
  x)
    # Just use the native terminal
  ;;
  x*)
    cat << EOF
if terminal_input ${GRUB_TERMINAL_INPUT} ; then true ; else
  # For backward compatibility with versions of terminal.mod that don't
  # understand terminal_input
  terminal ${GRUB_TERMINAL_INPUT}
fi
EOF
  ;;
esac

case x${GRUB_TERMINAL_OUTPUT} in
 xgfxterm)
    # Make the font accessible
    prepare_grub_to_access_device `${grub_probe} --target=device ${GRUB_FONT_PATH}`

    cat << EOF
if loadfont `make_system_path_relative_to_its_root ${GRUB_FONT_PATH}` ; then
set gfxmode=1280x1024
  insmod gfxterm
  insmod ${GRUB_VIDEO_BACKEND}
  if terminal_output gfxterm ; then true ; else
    # For backward compatibility with versions of terminal.mod that don't
    # understand terminal_output
    terminal gfxterm
  fi
EOF
if [ x$GRUB_THEME != x ] && [ -f $GRUB_THEME ] \
	&& is_path_readable_by_grub $GRUB_THEME; then
    echo "Found theme: $GRUB_THEME" >&2
    prepare_grub_to_access_device `${grub_probe} --target=device $GRUB_THEME` | sed -e "s/^/  /"
    cat << EOF
  insmod gfxmenu
  set theme=(\$root)`make_system_path_relative_to_its_root $GRUB_THEME`
  set menuviewer=gfxmenu
EOF
fi
    cat << EOF
fi
EOF
  ;;
  x)
    # Just use the native terminal
  ;;
  x*)
    cat << EOF
if terminal_output ${GRUB_TERMINAL_OUTPUT} ; then true ; else
  # For backward compatibility with versions of terminal.mod that don't
  # understand terminal_output
  terminal ${GRUB_TERMINAL_OUTPUT}
fi
EOF
  ;;
esac

# Gettext variables and module
if [ "x${LANG}" != "xC" ] ; then
    prepare_grub_to_access_device $(${grub_probe} --target=device ${locale_dir})
  cat << EOF
set locale_dir=(\$root)$(make_system_path_relative_to_its_root ${locale_dir})
set lang=${grub_lang}
insmod gettext
EOF
fi

cat << EOF
if [ \${recordfail} = 1 ]; then
  set timeout=-1
else
  set timeout=${GRUB_TIMEOUT}
fi
EOF

# Play an initial tune
if [ "x${GRUB_INIT_TUNE}" != "x" ] ; then
  cat << EOF
insmod play
play ${GRUB_INIT_TUNE}
EOF
fi

ASUS P5NSLI ACPI BIOS Revision 0702
Ubuntu 10.04 64bits  2.6.32-21-generic - Grub2
Intel(R) Core(TM)2 CPU     6400 @ 2.13GHz RAM : 2 Go
GeForce 8800 GTS 512

Hors ligne

#6 Le 30/04/2010, à 19:16

did

Re : ubuntu accueil flou

Dans le fichier /etc/grub.d/00_header , je n'ai pas la ligne gfxmode=${GRUB_GFXMODE}.

En effet il est un peu différent du mien, chez toi à la place il y a :

set gfxmode=1280x1024
  insmod gfxterm

Rajoute lla ligne entre ces deux lignes.

Hors ligne

#7 Le 30/04/2010, à 20:47

lebojojo

Re : ubuntu accueil flou

did a écrit :

Dans le fichier /etc/grub.d/00_header , je n'ai pas la ligne gfxmode=${GRUB_GFXMODE}.

En effet il est un peu différent du mien, chez toi à la place il y a :

set gfxmode=1280x1024
  insmod gfxterm

Rajoute lla ligne entre ces deux lignes.

Merci pour la réponse j'ai essayé ( que ce soit avec keep ou la résolution) mais toujours le même problème: plus de logo que ce soit à la fermeture ou au boot.
Peut-être dois-je changer tout le fichier 00_header?
Si quelqu'un a le code initial?

Dernière modification par lebojojo (Le 30/04/2010, à 20:50)


ASUS P5NSLI ACPI BIOS Revision 0702
Ubuntu 10.04 64bits  2.6.32-21-generic - Grub2
Intel(R) Core(TM)2 CPU     6400 @ 2.13GHz RAM : 2 Go
GeForce 8800 GTS 512

Hors ligne

#8 Le 01/05/2010, à 00:33

did

Re : ubuntu accueil flou

Tu es passé à Lucid par upgrade ? ça expliquerait peut-être les différences entre nos fichiers, et peut-être même ton bug.
Mon /etc/grub.d/00_header :

#! /bin/sh -e

# grub-mkconfig helper script.
# Copyright (C) 2006,2007,2008,2009,2010  Free Software Foundation, Inc.
#
# GRUB is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# GRUB is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with GRUB.  If not, see <http://www.gnu.org/licenses/>.

transform="s,x,x,"

prefix=/usr
exec_prefix=${prefix}
libdir=${exec_prefix}/lib
grub_prefix=`echo /boot/grub | sed ${transform}`
locale_dir=`echo /boot/grub/locale | sed ${transform}`
grub_lang=`echo $LANG | cut -d _ -f 1`

. ${libdir}/grub/grub-mkconfig_lib

# Do this as early as possible, since other commands might depend on it.
# (e.g. the `loadfont' command might need lvm or raid modules)
for i in ${GRUB_PRELOAD_MODULES} ; do
  echo "insmod $i"
done

if [ "x${GRUB_DEFAULT}" = "x" ] ; then GRUB_DEFAULT=0 ; fi
if [ "x${GRUB_DEFAULT}" = "xsaved" ] ; then GRUB_DEFAULT='${saved_entry}' ; fi
if [ "x${GRUB_TIMEOUT}" = "x" ] ; then GRUB_TIMEOUT=5 ; fi
if [ "x${GRUB_GFXMODE}" = "x" ] ; then GRUB_GFXMODE=640x480 ; fi
#if [ "x${GRUB_GFXMODE}" = "x" ] ; then GRUB_GFXMODE=1280x800 ; fi

cat << EOF
if [ -s \$prefix/grubenv ]; then
  load_env
fi
set default="${GRUB_DEFAULT}"
if [ \${prev_saved_entry} ]; then
  set saved_entry=\${prev_saved_entry}
  save_env saved_entry
  set prev_saved_entry=
  save_env prev_saved_entry
  set boot_once=true
fi

function savedefault {
  if [ -z \${boot_once} ]; then
    saved_entry=\${chosen}
    save_env saved_entry
  fi
}

function recordfail {
  set recordfail=1
  if [ -n \${have_grubenv} ]; then if [ -z \${boot_once} ]; then save_env recordfail; fi; fi
}
EOF

case ${GRUB_TERMINAL_INPUT}:${GRUB_TERMINAL_OUTPUT} in
  serial:* | *:serial)
    if ! test -e ${grub_prefix}/serial.mod ; then
      echo "Serial terminal not available on this platform." >&2 ; exit 1
    fi

    if [ "x${GRUB_SERIAL_COMMAND}" = "x" ] ; then
      grub_warn "Requested serial terminal but GRUB_SERIAL_COMMAND is unspecified. Default parameters will be used."
      GRUB_SERIAL_COMMAND=serial
    fi
    echo "${GRUB_SERIAL_COMMAND}"
  ;;
esac

case x${GRUB_TERMINAL_INPUT} in
  x)
    # Just use the native terminal
  ;;
  x*)
    cat << EOF
if terminal_input ${GRUB_TERMINAL_INPUT} ; then true ; else
  # For backward compatibility with versions of terminal.mod that don't
  # understand terminal_input
  terminal ${GRUB_TERMINAL_INPUT}
fi
EOF
  ;;
esac

case x${GRUB_TERMINAL_OUTPUT} in
 xgfxterm)
    # Make the font accessible
    prepare_grub_to_access_device `${grub_probe} --target=device ${GRUB_FONT_PATH}`

    cat << EOF
if loadfont `make_system_path_relative_to_its_root ${GRUB_FONT_PATH}` ; then
  set gfxmode=${GRUB_GFXMODE}
  set gfxpayload=1024x768
  insmod gfxterm
  insmod ${GRUB_VIDEO_BACKEND}
  if terminal_output gfxterm ; then true ; else
    # For backward compatibility with versions of terminal.mod that don't
    # understand terminal_output
    terminal gfxterm
  fi
EOF
if [ x$GRUB_THEME != x ] && [ -f $GRUB_THEME ] \
	&& is_path_readable_by_grub $GRUB_THEME; then
    echo "Found theme: $GRUB_THEME" >&2
    prepare_grub_to_access_device `${grub_probe} --target=device $GRUB_THEME` | sed -e "s/^/  /"
    cat << EOF
  insmod gfxmenu
  set theme=(\$root)`make_system_path_relative_to_its_root $GRUB_THEME`
  set menuviewer=gfxmenu
EOF
fi
    cat << EOF
fi
EOF
  ;;
  x)
    # Just use the native terminal
  ;;
  x*)
    cat << EOF
if terminal_output ${GRUB_TERMINAL_OUTPUT} ; then true ; else
  # For backward compatibility with versions of terminal.mod that don't
  # understand terminal_output
  terminal ${GRUB_TERMINAL_OUTPUT}
fi
EOF
  ;;
esac

# Gettext variables and module
if [ "x${LANG}" != "xC" ] ; then
    prepare_grub_to_access_device $(${grub_probe} --target=device ${locale_dir})
  cat << EOF
set locale_dir=(\$root)$(make_system_path_relative_to_its_root ${locale_dir})
set lang=${grub_lang}
insmod gettext
EOF
fi

cat << EOF
if [ \${recordfail} = 1 ]; then
  set timeout=-1
else
  set timeout=${GRUB_TIMEOUT}
fi
EOF

# Play an initial tune
if [ "x${GRUB_INIT_TUNE}" != "x" ] ; then
  cat << EOF
insmod play
play ${GRUB_INIT_TUNE}
EOF
fi

Je sais pas ce que ça peut donner cher toi.

Sinon, tu as vérifié les résolutions supportées par ta carte avec vbeinfo ? Tu en as testé plusieurs ?
Je donne d'autres trucs pour les drivers NVIDIA ici, t'as essayé ?

Dernière modification par did (Le 01/05/2010, à 00:36)

Hors ligne

#9 Le 01/05/2010, à 00:38

Lola75

Re : ubuntu accueil flou

http://www.webupd8.org/2010/03/how-to-get-plymouth-working-with-nvidia.html

GRUB_GFXMODE=1024x768

Dernière modification par Lola75 (Le 01/05/2010, à 00:38)

Hors ligne

#10 Le 01/05/2010, à 16:30

lebojojo

Re : ubuntu accueil flou

Salut,
J'ai tout essayé, me changer mon fichier par celui de DID, j'ai refais toutes les manips mais j'ai toujours des points bleus et vert à la place du logo.
A mon avis c'est un bug depuis lucid


ASUS P5NSLI ACPI BIOS Revision 0702
Ubuntu 10.04 64bits  2.6.32-21-generic - Grub2
Intel(R) Core(TM)2 CPU     6400 @ 2.13GHz RAM : 2 Go
GeForce 8800 GTS 512

Hors ligne

#11 Le 01/05/2010, à 18:51

John-Paul

Re : ubuntu accueil flou

Exatement le même problème que lebojojo, carte nvidia, pilote propriétaire installé, installation de lucid normale (pas une mise à jour)...
La solution proposée ci-dessus ne fonctionne pas, la ligne gfxmode=${GRUB_GFXMODE} n'existe pas dans le fichier header.
Plymouth ne s'affiche plus, même après réinstallation du paquet.
Help?

Hors ligne

#12 Le 13/05/2010, à 15:05

vince22

Re : ubuntu accueil flou

Bonjour,

J'ai trouvé une méthode qui marche http://www.clapico.com/2010/05/02/logo- … r-le-joli/
Je précise que je ne suis pas un expert avec linux, mais me renseigne via la compulsion du savoir des autres.


ordinateur de bureau Ubuntu 22.04.3 LTS avec Carte graphique radeon RX 470 saphire nitro + 8 go / processeur AMD Ryzen 5 3600  16 go RAM en dual boot windows 10 (second choix)
+ ordinateur portable Dell latitude E6420 Ubuntu 22.04 LTS 3  RAM 8 go

Hors ligne