0

Not plymouth, I mean the actual boot splash that gives you the options of trying out ubuntu, installing ubuntu, checking the disc for defects, etc.

It appears that everything concerning this is in the "isolinux"folder on the ISO. I found some info here: Splash screen before Ubiquity install

But when I follow his commands to create a new bootlogo cpio archive, the boot fails.

I figured out that changing txt.cfg changes the text on the boot menu without needing a new bootlogo, which is great, but I'm having issues changing the .pcx images and gfxboot.cfg. I'd also like to turn off how ubuntu automatically chooses to open the graphical "try or install" window if you don't make a choice in 5 seconds.

Thanks a million to whoever reads this.

ovine
  • 109

1 Answers1

2

Those commands from link you posted actually work. However, you need to do it differently. Here is how I did:

Copy just bootlogo from live CD (or extracted folder) in temporary folder (i will give example in ~/tmp/isolinux/).

Now navigate to the folder and extract bootlogo with command:

cd ~/tmp/isolinux
cpio -i < bootlogo

After this output in terminal must be 1684 blocks (or diferent if it changes).

cat bootlogo | cpio -t > ~/tmp/list

Again, output must be 1684 blocks.

Now edit files and build bootlogo file with:

cpio -o < ~/tmp/list > bootlogo

Again, same amount of blocks must be present (if not changed by you).

And finally, copy other files from /LiveCD/isolinux into your temporary folder (excluding bootlogo ofc.), now you can also copy edited files and overwrite original (or simply skip while copying from LiveCD).

Now it will work.

Leipero
  • 61
  • Every time I run this command, it only creates 1 block and the resulting file is 512 bytes, which results in a boot error. :( What am I doing wrong, sir? – ovine Aug 30 '16 at 00:50
  • 1
    You are probably wrong in working directories, for start, make sure you are working in the same directories as example above (/home/user/tmp/isolinux), also work as regular user, not as superuser. – Leipero Aug 31 '16 at 02:33
  • Thank you so much, I got it working. I was messing up the cat command. Thanks again. :) – ovine Aug 31 '16 at 21:59