From 374252a55c14f92aaed73b3917ed783bf2762911 Mon Sep 17 00:00:00 2001 From: Cem Keylan Date: Sat, 26 Dec 2020 03:23:39 +0300 Subject: docs: update --- docs/docs/Bootloader.html | 91 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 91 insertions(+) create mode 100644 docs/docs/Bootloader.html (limited to 'docs/docs/Bootloader.html') diff --git a/docs/docs/Bootloader.html b/docs/docs/Bootloader.html new file mode 100644 index 0000000..6f23a5b --- /dev/null +++ b/docs/docs/Bootloader.html @@ -0,0 +1,91 @@ + + + + + + +Bootloader (Carbs Linux User Manual) + + + + + + + + + + + + + + + + + +
+

+Next: , Up: Making your system bootable   [Contents]

+
+
+

1.5.1 Bootloader

+ +

In the main repository, there is efibootmgr and grub to serve as bootloaders. +efibootmgr can be used as a standalone bootloader, or can be used to install +grub in a UEFI environment. efibootmgr is needed unless you are using a device +without UEFI support (or you really want to use BIOS for a reason). +

+
    +
  1. GRUB BIOS installation + + +
    +
    cpt b grub && cpt i grub
    +grub-install --target=i386-pc /dev/sdX
    +grub-mkconfig -o /boot/grub/grub.cfg
    +
    + +
  2. GRUB UEFI installation + + +
    +
    cpt b efibootmgr && cpt i efibootmgr
    +cpt b grub && cpt i grub
    +
    +grub-install --target=x86_64-efi \
    +             --efi-directory=esp \
    +             --bootloader-id=CarbsLinux
    +
    +grub-mkconfig -o /boot/grub/grub.cfg
    +
    +
+ + + + + + -- cgit v1.2.3