Our official Ubuntu image will display 3 logos during system boot:
- U-Boot logo
- Kernel logo
- Ubuntu logo
The U-Boot logo is located at /usr/share/fenix/logo/logo.bmp
.
The image format is BMP with a resolution of 500x500px
, and bit-depth of 24 bits
.
You can use Terminal to check the default logo image format:
1 | $ file /usr/share/fenix/logo/logo.bmp |
Changing the default logo:
You can replace the default logo with your own BMP image.
NoteIf you have built the image with Fenix, you can replace the file
archives/logo/bmp/logo.bmp
to change the logo.
- Use the
netpbm
tool to convert png images to ppm images.
1 | $ pngtopnm linux_logo.png > linux_logo.pnm |
Put the converted ppm file into the
drivers/video/logo/
directory of the kernel, and replace thelogo_linux_clut224.ppm
file.Re-compile the kernel, and the logo will be replaced with a new picture.
The Ubuntu logo file is located at /usr/share/fenix/logo/logo.png
, replace the .png file to change the Ubuntu boot logo.
NoteIf you’ve built the image with Fenix, replace the file
archives/logo/png/logo.png
to change the logo.