Slight boot problem. 'You need to boot the kernel first.' After that it went to the boot menu. I selected advanced options and the top kernel. Kubuntu booted properly after that.
Snippit from grub.cfg
It doesn't seem to be loading the new volumes. Why not?
Snippit from grub.cfg
Code:
menuentry 'Ubuntu' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-simple-27a9a212-d177-4665-b6bc-bf304e8c1f3e' { recordfail load_video gfxmode $linux_gfx_mode insmod gzio if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi insmod part_msdos insmod btrfs set root='hd0,msdos5' if [ x$feature_platform_search_hint = xy ]; then search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos5 --hint-efi=hd0,msdos5 --hint-baremetal=ahci0,msdos5 27a9a212-d177-4665-b6bc-bf304e8c1f3e else search --no-floppy --fs-uuid --set=root 27a9a212-d177-4665-b6bc-bf304e8c1f3e fi linux /@Kubuntu1704/boot/vmlinuz-4.10.0-35-generic root=UUID=27a9a212-d177-4665-b6bc-bf304e8c1f3e ro rootflags=subvol=@Kubuntu1704 quiet splash $vt_handoff initrd /@Kubuntu1704/boot/initrd.img-4.10.0-35-generic }
Comment