1

I am wondering how to change the text that displays "Ubuntu 14.04 . . . ." on boot to a custom text.

Edit: I am talking about the ASCII text during the boot process, not the Ubuntu logo.

enter image description here

Zanna
  • 72,312
Bede
  • 111

1 Answers1

-1

I don't recommend it, but if you really need to customize the OS entry in the GRUB menu you just need to open (with sudo) the file /etc/default/grub and look for the line

GRUB_DISTRIBUTOR=`lsb_release -i -s 2> /dev/null || echo Debian`

You should replace

`lsb_release -i -s 2> /dev/null || echo Debian`

with the custom string you want.

Don't forget to run

sudo update-grub

after changing the file.

Zanna
  • 72,312