Advertisement
Guest User

Untitled

a guest
May 22nd, 2016
441
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.86 KB | None | 0 0
  1. plymouth module "(/usr/lib/i386-linux-gnu/plymouth//.so)" missing, skipping that theme
  2.  
  3. apt-get install plymouth-themes
  4.  
  5. ls -ltr /lib/plymouth/themes
  6. ls -ltr /usr/share/plymouth/themes
  7.  
  8. cd /lib/plymouth/themes
  9. mv <theThemeDirectory> /usr/share/plymouth/themes
  10.  
  11. update-alternatives --install /usr/share/plymouth/themes/default.plymouth default.plymouth /usr/share/plymouth/themes/orb/orb.plymouth 100
  12.  
  13. #!/bin/bash
  14.  
  15. echo "Choose the number of the theme you want to use, then [ENTER]"
  16. echo
  17. sudo update-alternatives --config default.plymouth
  18. sudo update-initramfs -u
  19. echo
  20. read -p "Do you want to test the theme? (Y/N) "
  21. if [ "$REPLY" != "n" -a "$REPLY" != "N" ] ; then
  22. echo
  23. echo "Running 10-second test..."
  24. sudo plymouthd ; sudo plymouth --show-splash ; for ((I=0; I<10; I++)); do sleep 1 ; sudo plymouth --update=test$I ; done ; sudo plymouth --quit
  25. fi
  26. exit
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement