Change "LiveUSB" default boot options
Solution 1:
I think you can edit the /boot/grub/loopback.cfg
file (when you made the stick with usb-creator) or the /syslinux.cfg
file (when you used unetbootin) on the USB stick to include this.
Solution 2:
I'd try this way (note that I'm making some assumptions so I'm not sure that would work):
- Boot in a regular OS (not the one on the USB you want to tweak).
- Mount the USB drive and open USB_drive/syslinux/txt.cfg with a text editor.
-
Locate the image you usually boot to, it should be something like:
label live menu label ^Try Ubuntu without installing kernel /casper/vmlinuz append noprompt cdrom-detect/try-usb=true persistent file=/cdrom/preseed/ubuntu.seed boot=casper initrd=/casper/initrd.lz quiet splash --
The relevant part is the append line, add
acpi=off
to it before--
, I'd put it in betweeninitrd=...
andquiet
.- Save your edits.
- umount your USB drive.
- Boot your LiveUSB and keep your fingers crossed.
- (optional) Come back here to insult me if this procedure doesn't work or praise me if everything was fine. :P
- Report any advice you have or any progress you made.
Useful resources:
- Syslinux wiki