Fix Elementary Boot Screen (plymouth) After Installing Nvidia Drivers

Q:I just installed propietary nvidia drivers, after that the glowing “e” plymouth theme was gone, only text and some ugly graphics appears. The version of nvidia drivers is 304. I try reinstalling the plymouth theme but it don’t work.

 

  1. sudo apt-get install v86d hwinfo
  2. sudo hwinfo --framebuffer
  3. Choose highest resolution
  4. sudo gedit /etc/default/grub
  5. Change line GRUB_CMDLINE_LINUX_DEFAULT="quiet splash" to look like this GRUB_CMDLINE_LINUX_DEFAULT="quiet splash nomodeset video=uvesafb:mode_option=1280x1024-24,mtrr=3,scroll=ywrap"
  6. Uncomment and change line GRUB_GFXMODE=1280x1024-24
  7. sudo gedit /etc/initramfs-tools/modules
  8. At end of file add line uvesafb mode_option=1280x1024-24 mtrr=3 scroll=ywrap
  9. echo FRAMEBUFFER=y | sudo tee /etc/initramfs-tools/conf.d/splash
  10. sudo update-grub
  11. sudo update-initramfs -u
  12. Restart computer.
    Catch it from the websit following:
原文地址:https://www.cnblogs.com/suncoolcat/p/3331399.html