<div dir="ltr">HI All,<div><br></div><div>I am trying to create a customer boot CD/DVD/iso.  Basically just copy the iso</div><div>and "replace" one file the boot menu txt.cfg is what I want to do. I added a timeout line "timeout 90" and a label entry. That is all. My Script:</div><div><br></div><div><br>MOUNT_POINT="/mnt/iso"<br>DATE=`date "+%Y.%m.%d"`<br>DESTINATION_DIR="/home/silentm/development.systems/Ubuntu-Server.20.04"<br>DESTINATION_IMAGE="/home/silentm/CDROM.iso/Ubuntu.20.04/Ubuntu.20.04.LSI.$DATE.iso"<br><br>rm /home/silentm/CDROM.iso/Ubuntu.20.04/*.LSI.*.iso<br><br>mount -o loop /home/silentm/CDROM.iso/Ubuntu.20.04/ubuntu-20.04.1-live-server-amd64.iso $MOUNT_POINT<br><br>mkdir -p $DESTINATION_DIR<br>cp -rT $MOUNT_POINT $DESTINATION_DIR<br><br>umount $MOUNT_POINT<br><br># Put in CUSTOM file<br>cp /home/silentm/src/isolinux_ubuntu20.txt.cfg $DESTINATION_DIR/isolinux/txt.cfg<br><br>mkisofs -r -V "Custom Ubuntu Server Install CD" \<br>        -cache-inodes \<br>        -J -l -b isolinux/isolinux.bin \<br>        -c isolinux/<a href="http://boot.cat">boot.cat</a> -no-emul-boot \<br>        -boot-load-size 4 -boot-info-table \<br>        -o $DESTINATION_IMAGE $DESTINATION_DIR<br><br>rm -rf $DESTINATION_DIR<br></div><div><br></div><div><br></div><div><br></div><div>Runs without errors. But when I boot the iso - its like my changes did not take effect at all. I do not get a menu with a 9 second timeout and the boot just boots into the normal first menu screen with the Try or Install.</div><div><br></div><div>What am I missing to get a menu to show to select the install menu item I added.</div><div>Must be something easy.</div><div><br></div><div>Jerry</div></div>