I have release 20.04 LTS. When I boot liveUSB with persistence
option, on USB two folders are created (as I understand during first time boot): work
, upper
. I want to rename them / assign different location. Where are these names set on liveUSB?
P.S. I know how to edit USB, I want to know what to change.
As an alternative being able to access /cow/uppper
would help too: Where is the upper layer of the live cd image overlayfs root filesystem stored?
Added 2:
USB created with Make Startup Disk
from Ubuntu LiveUSB 20.04 LTS (usb-creator-gtk
from terminal). Not quite bootstrapping, still made me recall that word.
Added 1: /usb_path/Ubuntu 20.04 LTS amd64/boot/grub
if loadfont /boot/grub/font.pf2 ; then
set gfxmode=auto
insmod efi_gop
insmod efi_uga
insmod gfxterm
terminal_output gfxterm
fi
set menu_color_normal=white/black
set menu_color_highlight=black/light-gray
set timeout=5
menuentry "Ubuntu" {
set gfxpayload=keep
linux /casper/vmlinuz file=/cdrom/preseed/ubuntu.seed maybe-ubiquity quiet splash ---
initrd /casper/initrd
}
menuentry "Ubuntu (safe graphics)" {
set gfxpayload=keep
linux /casper/vmlinuz file=/cdrom/preseed/ubuntu.seed maybe-ubiquity quiet splash nomodeset ---
initrd /casper/initrd
}
menuentry "OEM install (for manufacturers)" {
set gfxpayload=keep
linux /casper/vmlinuz file=/cdrom/preseed/ubuntu.seed only-ubiquity quiet splash oem-config/enable=true ---
initrd /casper/initrd
}
grub_platform
if [ "$grub_platform" = "efi" ]; then
menuentry 'Boot from next volume' {
exit
}
menuentry 'UEFI Firmware Settings' {
fwsetup
}
fi