unofficial mirror of help-guix@gnu.org 
 help / color / mirror / Atom feed
From: jbranso@dismail.de
To: "kevinbanjo" <kevinbanjo@gmail.com>, help-guix@gnu.org
Subject: Re: efi dual boot issue
Date: Sat, 16 Jan 2021 02:22:04 +0000	[thread overview]
Message-ID: <0c4dcb1753fca7a2eb640137186c3d5b@dismail.de> (raw)
In-Reply-To: <CAOHcZqOdQtTY42B2Cfr_sZnz63nHn6QXQrT_OBe_wxUcAvbZJg@mail.gmail.com>

Hello,

What kind of hardware do you have?  Laptop? Desktop?  What processor?

That kind of information would be helpful.  

Also, note that I have never dual booted GNU/Linux and windows.  I just use 
GNU.  I think your problem amounts to configuring the bootloader section 
in config.scm incorrectly. 

There are two ways to boot up a computer: bios mode or EFI.  

https://guix.gnu.org/manual/en/guix.html#Manual-Installation

Note: Unsure whether to use EFI- or BIOS-based GRUB? If the directory /sys/firmware/efi 
exists in the installation image, then you should probably perform an EFI installation, 
using grub-efi-bootloader. Otherwise you should use the BIOS-based GRUB, known as 
grub-bootloader. See Bootloader Configuration, for more info on bootloaders. 

When you boot up the installation image does the director "/sys/firmware/efi"
exist?  If so, then you are booting via EFI, and you should follow the directions
in the manual via EIF installation:  namely you need an EFI partition:

mkfs.fat -F32 /dev/sda1; 

And you need to specify this EFI partition in your config.com:

(file-system
   (type "vfat")  
   (mount-point "/boot/sda1")
   (device "/dev/sda1"))

And you need to use the EFI bootloader in config.scm:

 (bootloader (bootloader-configuration
                (bootloader grub-efi-bootloader)
                (target "/boot/efi")))

If this is a bios only install, then you need to use the bios bootloader in your config:

(bootloader-configuration
  (bootloader grub-bootloader)
  (target "/dev/sda"))

Does that help?

Thanks,

Joshua

January 15, 2021 4:24 PM, "kevinbanjo" <kevinbanjo@gmail.com> wrote:

> Hi everyone. I'm trying to install a dual boot with windows 10 btrfs root
> GuixSD and I have a catch 22 I can't figure out how to resolve:
> 
> When I go to generate the system it says that grub-install didn't work (I
> can't remember exactly why and I was in console mode so I couldn't
> copy/paste the error but the gist of it was that it was because I booted in
> bios mode).
> 
> I had to go into bios and disable my legacy boot and windows still boots
> but I can't boot the GuixSD USB ISO.
> 
> It's an HP laptop and when I hit ESC during boot and select boot options it
> walks me thru the EFI boot files and I picked both the boot files and it
> just returns to the boot menu.
> 
> I also tried hard resetting my laptop (unplugging it, pulling out the
> battery and holding the power button down for a while) plus booting windows
> into recovery mode and letting it try and fix the boot (which probably only
> did the windows one as that was the only one that showed up) and still
> nothing.
> 
> How do I build an EFI boot if I can't boot GuixSD ISO as EFI?
> 
> TIA,
> -Kevin


  reply	other threads:[~2021-01-16  2:22 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <CAOHcZqNGnEtO6VXBv0W-hUaTfhivPG9W=JDWf1BE5WWehR397A@mail.gmail.com>
2021-01-14 21:34 ` efi dual boot issue kevinbanjo
2021-01-16  2:22   ` jbranso [this message]
     [not found]     ` <CAOHcZqOcYidoJEhPiwhXx8aJNXe_VUXjvjjLCkk5Fn7DE_ef4Q@mail.gmail.com>
     [not found]       ` <df4251e6f6577f8ea4fdf378efabe2de@dismail.de>
2021-01-16 22:40         ` jbranso
2021-01-16 13:18   ` znavko

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://guix.gnu.org/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=0c4dcb1753fca7a2eb640137186c3d5b@dismail.de \
    --to=jbranso@dismail.de \
    --cc=help-guix@gnu.org \
    --cc=kevinbanjo@gmail.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).