感谢支持
我们一直在努力

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

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


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


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


2 不重启而查看plymouth主题的效果.方法:sudo plymouthd然后plymouth –show-splas,退出:sudo plymouth quit



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


Download Zorin Splash Screen Manager


注:如果你的plymouth主题和私有的Nvidia/ATI显卡有冲突的话,你可以试试这个脚本 this script。

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: 1024×768 (+4096), 24 bits<<”
echo “And you have to enter it like this >>1024×768-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\=640×480/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”

赞(0) 打赏
转载请注明出处:服务器评测 » Ubuntu下用Zorin管理器来安装和配置Plymouth主题
分享到: 更多 (0)

听说打赏我的人,都进福布斯排行榜啦!

支付宝扫一扫打赏

微信扫一扫打赏