Kubuntu 14.04 & 15.04
https://www.kubuntuforums.net/showth...746#post371746
https://www.kubuntuforums.net/showth...746#post371746
steve@x250:~$ [B]tree /boot/efi[/B] /boot/efi └── EFI ├── refind │ ├── drivers_x64 │ │ └── [I]{...filesystem drivers appropriate for your installation...}[/I] │ ├── icons │ │ └── [I]{...list of icon files znipped to zave zpace...}[/I] │ ├── keys │ │ └── [I]{...list of certificates also znipped to zave zpace...}[/I] │ ├── refind.conf │ └── refind_x64.efi └── tools └── shell.efi [I]{...not included; you'll need to download...}[/I]
steve@x250:~$ [B]sudo efibootmgr -v[/B] BootCurrent: 0013 Timeout: 0 seconds BootOrder: 0013,0007,0008,0009,000A,000B,000C,000D,0012 . . . Boot0013* rEFInd Boot Manager HD(1,800,100000,acf1ebe5-edcc-45ab-aea0-203666021f70)File(\EFI\refind\refind_x64.efi)
steve@x250:~$ [B]cat /boot/efi/EFI/refind/refind.conf[/B] timeout 20 textonly 1 [I][COLOR="#008000"]<-- text mode list[/COLOR][/I] use_graphics_for [I][COLOR="#008000"]<-- also launch all operating systems into text mode; let the OS dictate when to switch to graphical[/COLOR][/I] scan_delay 1 [I][COLOR="#008000"]<-- without this one-second delay, rEFInd loads before file systems are detected[/COLOR][/I] also_scan_dirs + @/boot [I][COLOR="#008000"]<-- needed to find boot loaders (kernels) on Btrfs filesystems[/COLOR][/I]
sudo efibootmgr -v [sudo] password for mike: BootCurrent: 0000 Timeout: 1 seconds BootOrder: 0002,0000,0005,0001,0004 Boot0000* ubuntu HD(1,800,fa000,0b3a3e36-b506-4f4a-9811-8549f1b5d884)File(\EFI\UBUNTU\SHIMX64.EFI) Boot0001* Hard Drive BIOS(2,0,00)..GO..NO........O.W.D.C. .W.D.5.0.0.3.A.Z.E.X.-.0.0.M.K.2.A.0.................>..Gd-.;.A..MQ..L. . . . .W. .-.D.C.W.3.C.5.F.F.X.2.6.F.K........BO Boot0002* rEFInd Boot Manager HD(1,800,fa000,0b3a3e36-b506-4f4a-9811-8549f1b5d884)File(\EFI\REFIND\REFIND_X64.EFI) Boot0004* CD/DVD Drive BIOS(3,0,00)..GO..NO........O.T.S.S.T.c.o.r.p. .C.D.D.V.D.W. .S.H.-.2.2.4.D.B.................>..Gd-.;.A..MQ..L.9.R.U.4.Y.6.F.B.0.6.4.1.Y.9. . . . . . ........BO Boot0005* ubuntu HD(1,800,fa000,0b3a3e36-b506-4f4a-9811-8549f1b5d884)File(\EFI\UBUNTU\GRUBX64.EFI)..BO
tree /boot/efi /boot/efi └── EFI ├── my_Backups_5-5-15 <-- {my backup of my old GRUB 2stuff} │ ├── grub.cfg │ ├── grubx64.efi │ ├── MokManager.efi │ └── shimx64.efi ├── refind │ ├── drivers_x64 │ │ └── ext4_x64.efi │ ├── icons │ │ ├── {many!} │ ├── keys │ │ ├── {whatever they should be} │ ├── refind.conf │ └── refind_x64.efi ├── tools └── ubuntu <-- {my old GRUB 2 stuff} ├── grub.cfg ├── grubx64.efi ├── MokManager.efi └── shimx64.efi 8 directories, 83 files
Comment