aquaballoon

Dual-booting Ubuntu and Windows 8 with Secure Boot

Jan 11th, 2014
161
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.69 KB | None | 0 0
  1. http://seravo.fi/2013/dual-booting-ubuntu-12-04-windows-8-machines-restricted-boot
  2.  
  3. In Widnows 8, widnows Key + I
  4. press power Button
  5. Hold down shift key with reboot
  6.  
  7. Troubleshooting -> Advanced -> Bios
  8.  
  9. In the BIOS settings, find the option “Secure Boot” and disable it.
  10.  
  11. Boot to Ubuntu Live CD
  12.  
  13. $ sudo nano /etc/defaulf/grub
  14. DISABLE_OS_PROBE=”true
  15.  
  16. $ sudo nano /etc/grub.d/40_custom
  17. menuentry "Windows 8" {
  18.  insmod part_gpt
  19.  insmod chain
  20.  set root='(hd0,gpt1)'
  21.  chainloader /EFI/Microsoft/Boot/bootmgfw.efi
  22. }
  23.  
  24. // /EFI/Microsoft/Boot/bootmgfw.efi -> /boot/efi/EFI/Microsoft/Boot/bootmgfw.efi
  25. // EFI System Partition (/dev/sda1 -> gpt1 ; /dev/sda2 -> gpt2)
  26.  
  27. $ sudo update-grub
Advertisement
Add Comment
Please, Sign In to add comment