红联Linux门户
Linux帮助

Ubuntu下用Zorin管理器来安装和配置Plymouth主题

发布时间:2015-03-06 22:27:27来源:wowubuntu作者:linux人

Zorin Splash Screen Manager是你安装,改变,删除plymouth主题的小工具

除了提供以上功能外,它还允许你更改主题文本(文本模式的plymouth),另外它还有2大特色:

1.查看你已经安装的plymouth主题

2.不重启而查看plymouth主题的效果.方法:sudo plymouthd然后plymouth –show-splas,退出:sudo plymouth quit
Ubuntu下用Zorin管理器来安装和配置Plymouth主题

以上图片上传到红联Linux系统教程频道中。
具体使用方法:打开系统-系统管理- Splash Screen Manager,点击”安装”按钮,选择以tar.gz结尾的plymouth主题文件(可以在下载到合适的plymouth主题).然后您可以点击”改变默认的主题”按钮,选择.plymouth文件(不用担心,系统会自动打开plymouth所在的文件夹),这样您的改动就成功了.


Today i reinstalled my Ubuntu and after installing my video card it’s an ATI but the same issues happen with NVDIA to namely the boot screen loses it’s resolution. So i’w done some googling and found the solution on the ubuntu forums, and created a script based on that solution.

So here’s the script you have to make it executable with the following command in console  :

chmod +x fixres.sh

And you can start it like this :

./fixres.sh

Hers the script :

#!/bin/bash
# ----------------------------------
# Author: D0rkye
# Homepage: http://d0rkye.zsenialis.com/
# ----------------------------------
sudo apt-get install v86d hwinfo -y
sudo hwinfo --framebuffer
echo "---------------------------------------------------------------"
echo "Please enter the best resolution from the list above"
echo "It usualy looks like this >>Mode 0x0323: 1024x768 (+4096), 24 bits<<"
echo "And you have to enter it like this >>1024x768-24<<"
echo "---------------------------------------------------------------"
read resolution
sed 's/GRUB\_CMDLINE\_LINUX\_DEFAULT\=\"quiet\ splash\"/GRUB\_CMDLINE\_LINUX\_DEFAULT\=\"quiet\ splash\ nomodeset\ video\=uvesafb\:mode\_option\='$resolution'\,mtrr\=3\,scroll\=ywrap\"/g' /etc/default/grub > ./newgrub
sudo mv -f ./newgrub /etc/default/grub
sed 's/\#GRUB\_GFXMODE\=640x480/GRUB\_GFXMODE\='$resolution'/g' /etc/default/grub > ./temp
sudo mv -f ./newgrub /etc/default/grub
sudo echo "uvesafb mode_option=$resolution mtrr=3 scroll=ywrap" >> /etc/initramfs-tools/modules
echo FRAMEBUFFER=y | sudo tee /etc/initramfs-tools/conf.d/splash
sudo update-grub2
sudo update-initramfs -u
echo "The resolution should be fixed afther a reboot"