web-dev-qa-db-fra.com

Aucun écran de démarrage d'arrêt sur Ubuntu avec la nouvelle carte Nvidia et le moniteur D-sub

J'utilise le pilote Nvidia 346 et j'ai suivi les instructions de ce lien Comment réparer plymouth (écran de démarrage) dans toutes les versions d'Ubuntu! Mais j'ai seulement réussi à afficher l'écran de démarrage, mais pas l'arrêt comme vous pouvez le voir dans cette vidéo .

Je suppose que c'est probablement dû au fait qu'il n'y a pas de prise D-sub sur la carte vidéo et je dois utiliser l'adaptateur HDVI vers D-sub qui a empêché Ubuntu de le détecter. Veuillez m'aider avec le problème. Merci d'avance. C'est ce que j'ai fait:

Sudo apt-get install v86d
Sudo gedit /etc/default/grub
GRUB_GFXMODE=1024x768x32
GRUB_GFXPAYLOAD_LINUX=keep    
echo FRAMEBUFFER=y | Sudo tee /etc/initramfs-tools/conf.d/splash
Sudo update-initramfs -u
Sudo update-grub2

Il y a un écran de démarrage, mais pas de démarrage. Comment puis-je faire fonctionner les éclaboussures d'arrêt?

Config:

  • Ubuntu 14.04 64 bits
  • Carte mère Gigabyte G1-sniper H6
  • CPU intel® Core ™ i7-4790 CPU à 3,60 GHz × 8
  • Carte vidéo Nvidia GeForce GTX 750 Ti/PCIe/SSE2 sans D-sub
  • Adaptateur DVI vers D-sub
  • Affichage LG E2242C LCD avec uniquement une prise D-sub

grub.conf:

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`
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"
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
#Fix nvidia splash screen
#GRUB_GFXMODE=640x480
GRUB_GFXMODE=1024x768x32
GRUB_GFXPAYLOAD_LINUX=keep
# 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"
2
徐志誠
Sudo apt-get install v86d
gksudo gedit /etc/default/grub

Remplacez le contenu correspondant par:

GRUB_CMDLINE_LINUX_DEFAULT="quiet splash nomodeset video=uvesafb:mode_option=1024x768-24, mtrr=3, scroll=ywrap"
GRUB_GFXMODE=1024x768
GRUB_GFXPAYLOAD_LINUX=keep

Alors:

gksudo gedit /etc/initramfs-tools/modules

ajoute ça:

uvesafb mode_option=1024x768-24 mtrr=3 scroll=ywrap

sauvegardez votre /etc/X11/xorg.conf s'il existe et exécutez:

echo FRAMEBUFFER=y | Sudo tee /etc/initramfs-tools/conf.d/splash
Sudo update-initramfs -u
Sudo update-grub2

restaurez votre /etc/X11/xorg.conf

1
徐志誠