Advertisement
Guest User

Untitled

a guest
Feb 21st, 2017
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. ### Fix plymouth after upgrading from f24 to f25
  2.  
  3. ##### Restore default ``/etc/plymouth/plymouth.conf``
  4.  
  5. ```
  6. [Daemon]
  7. Theme=fade-in
  8. ```
  9.  
  10. ##### Add or update ``/etc/default/grub``
  11.  
  12. ```
  13. GRUB_GFXMODE="1280x1024x24"
  14. GRUB_GFXPAYLOAD_LINUX="keep"
  15. ```
  16.  
  17. Edit the **GRUB_CMDLINE_LINUX** line by removing ``rhgb`` and adding ``splash``.
  18.  
  19. ##### Update grub
  20.  
  21. - BIOS
  22. ```
  23. grub2-mkconfig -o /boot/grub2/grub.cfg
  24. ```
  25.  
  26. - UEFI
  27. ```
  28. grub2-mkconfig -o /boot/efi/EFI/fedora/grub.cfg
  29. ```
  30.  
  31. ##### Update plymouth
  32.  
  33. ```
  34. dracut --force
  35. ```
  36.  
  37. ##### Reboot
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement