Linux开机LOGO修改

第一种方法:
首先需要制作一张*.png的图片,该格式的图片可以用PS进行另存为即可。然后在Linux系统下执行以下命令
$ pngtopnm linux_logo.png > linux_logo.pnm
$ pnmquant 224 linux_logo.pnm > linux_logo_224.pnm
  ppmquant:making histogram...
  ppmquant:24431 colors found
  ppmquant:choosing 224 colors...
  ppmquant:mapping image to new colors...
$ pnmtoplainpnm linux_logo_224.pnm > linux_logo.ppm

第二种方法:
首先需要制作一张*.bmp的图片
 $bmptoppm linux_logo.bmp > linux_logo.ppm
  bmptoppm:Windows BMP, 320*240*24
 $ppmquant 224 linux_logo.ppm > linux_logo_224.ppm
  ppmquant:making histogram...
  ppmquant:24431 colors found
  ppmquant:choosing 224 colors...
  ppmquant:mapping image to new colors...
 $pnmnoraw linux_logo_224.ppm > linux_logo.ppm


这样logo就已经制作成功了,将linux_logo.ppm拷贝到/drivers/video/logo文件夹中即可,记得要替换相关的ppm文件


2.

在内核目录中 make menuconfig

        Device Drivers ---->   Graphics support ---->

        选中 Bootup logo ----> Standard 224-color Linux logo


你可能感兴趣的:(linux,windows,image,colors)