Removing Disk Check on Persistent USB's
The command line option fsck.mode=skip
can be used to skip the disk check.
The line Checking disks: 0% complete
will still come up but fsck will not be run, nor will boot time be increased.
mkusb After the Persistent USB drive is created, open /boot/grub/grub.cfg as root.
Add fsck.mode=skip
to the Persistent menuentry thus:
linux ($root)/casper/vmlinuz file=/cdrom/preseed/ubuntu.seed maybe-ubiquity fsck.mode=skip quiet splash persistent ---
Newer versions of mkusb already include this fix.
If you also wish to remove the Try Ubuntu / Install Ubuntu screen delete "maybe-ubiquity".
UNetbootin After creating the boot drive, open /boot/grub/grub.cfg as root.
Rufus After creating the boot drive, open /boot/grub/grub.cfg as root.
Add fsck.mode=skip
to the Default menuentry for (UEFI boot mode).
Open /isolinux/txt.cfg as root and add fsck.mode=skip
to the "Try Ubuntu without installing" menuentry, (for BIOS boot mode).
The Try Ubuntu / Install Ubuntu screen can be removed from BIOS boot by overwriting syslinux.cfg with:
default persistent
label persistent
say Booting an Ubuntu Persistent session...
kernel /casper/vmlinuz
append file=/cdrom/preseed/ubuntu.seed boot=casper persistent initrd=/casper/initrd quiet splash noprompt --
The Try Ubuntu / Install Ubuntu screen can be removed from Rufus UEFI boot by removing "maybe-ubiquity" from /boot/grub/grub.cfg.
fsck.mode=skip
can be used to skip the disk check. – C.S.Cameron Apr 29 '20 at 02:28