制作RHEL5 GRUB开机画面背景图片


1、配置好yum仓库,在这就不举例了,可看文章:

RHEL5通过光盘配置本地yum仓库及命令详解

http://crushlinux.blog.51cto.com/2663646/1274819

安装软件包ImageMagick,convert工具由ImageMagick软件包提供,可修改图片属性。

[root@localhost ~]# yum install ImageMagick

 

2、准备一个图片作为开机画面背景图(最好是png格式的),系统要求图片分辨率是640×480,图片色深设置为14,还要将图片格式转成xpm并压缩成gz格式的。

 

[root@localhost ~]# convert -resize 640x480 -colors 14 linux.png splash.xpm
将linux.png 转换成符合要求的图片并更名为splash.xpm


3、 检查图片是否符合grub的要求,用命令:
[root@localhost ~]# more splash.xpm
在文件头部可以找到这些信息,则说明该图片可以被grub正常显示:

static char *10[] = {

"640 480 14 1",

 

4、 查看文件:/boot/grub/grub.conf
找到 splashimage=(hd0,0)/grub/splash.xpm.gz 按照这个要求我们用下面的命令压缩图片:
[root@localhost ~]#  gzip -9 splash.xpm

5、得到splash.xpm.gz后,将其放到/boot/grub/路径下,替换掉原图片,重启看看个性化的背景图片吧。

[root@localhost ~]# cp splash.xpm.gz /boot/grub/

 

本文出自 “Crushlinux” 博客,转载请与作者联系!

制作RHEL5 GRUB开机画面背景图

 

1、配置好yum仓库,在这就不举例了,可看文章:

RHEL5通过光盘配置本地yum仓库及命令详解

http://crushlinux.blog.51cto.com/2663646/1274819

安装软件包ImageMagick,convert工具由ImageMagick软件包提供,可修改图片属性。

[root@localhost ~]# yum install ImageMagick

 

2、准备一个图片作为开机画面背景图(最好是png格式的),系统要求图片分辨率是640×480,图片色深设置为14,还要将图片格式转成xpm并压缩成gz格式的。

 

[root@localhost ~]# convert -resize 640x480 -colors 14 linux.png splash.xpm
将linux.png 转换成符合要求的图片并更名为splash.xpm


3、 检查图片是否符合grub的要求,用命令:
[root@localhost ~]# more splash.xpm
在文件头部可以找到这些信息,则说明该图片可以被grub正常显示:

static char *10[] = {

"640 480 14 1",

 

4、 查看文件:/boot/grub/grub.conf
找到 splashimage=(hd0,0)/grub/splash.xpm.gz 按照这个要求我们用下面的命令压缩图片:
[root@localhost ~]#  gzip -9 splash.xpm

5、得到splash.xpm.gz后,将其放到/boot/grub/路径下,替换掉原图片,重启看看个性化的背景图片吧。

[root@localhost ~]# cp splash.xpm.gz /boot/grub/

 

本文出自 “Crushlinux” 博客,转载请与作者联系!

制作RHEL5 GRUB开机画面背景图

 

1、配置好yum仓库,在这就不举例了,可看文章:

RHEL5通过光盘配置本地yum仓库及命令详解

http://crushlinux.blog.51cto.com/2663646/1274819

安装软件包ImageMagick,convert工具由ImageMagick软件包提供,可修改图片属性。

[root@localhost ~]# yum install ImageMagick

 

2、准备一个图片作为开机画面背景图(最好是png格式的),系统要求图片分辨率是640×480,图片色深设置为14,还要将图片格式转成xpm并压缩成gz格式的。

 

[root@localhost ~]# convert -resize 640x480 -colors 14 linux.png splash.xpm
将linux.png 转换成符合要求的图片并更名为splash.xpm


3、 检查图片是否符合grub的要求,用命令:
[root@localhost ~]# more splash.xpm
在文件头部可以找到这些信息,则说明该图片可以被grub正常显示:

static char *10[] = {

"640 480 14 1",

 

4、 查看文件:/boot/grub/grub.conf
找到 splashimage=(hd0,0)/grub/splash.xpm.gz 按照这个要求我们用下面的命令压缩图片:
[root@localhost ~]#  gzip -9 splash.xpm

5、得到splash.xpm.gz后,将其放到/boot/grub/路径下,替换掉原图片,重启看看个性化的背景图片吧。

[root@localhost ~]# cp splash.xpm.gz /boot/grub/

 

本文出自 “Crushlinux” 博客,转载请与作者联系http://crushlinux.blog.51cto.com

你可能感兴趣的:(文章,背景图片,convert,制作,软件包)