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:
上一篇:常用类string的用法


下一篇:题目:从键盘输入10个整数并保存到数组,要求找出最小数和它的下标,然后把它和数组中最前面的元素调换