Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision Both sides next revision
en:manual:reference_installation [2022/04/05 18:40]
i3_relativism [Bootloader installation and configuration] remove further duplication
en:manual:reference_installation [2022/04/05 18:52]
i3_relativism set bootloader section in right place
Line 534: Line 534:
 </code> </code>
 </note> </note>
- 
-==== Bootloader installation and configuration ==== 
-=== GRUB === 
-Finally follow these steps: 
- 
-<code bash> 
-# pacman -S grub 
-</code> 
- 
-<code bash> 
-# grub-install --target=i386-pc --recheck /dev/sdX 
-</code> 
- 
-<note> 
-Here do NOT append a partition number, i.e. <color #0B71B9/#DDF1FF>/dev/sdaX</color>) 
-</note> 
- 
-<code bash> 
-# grub-mkconfig -o /boot/grub/grub.cfg 
-</code> 
- 
-  * To configure the bootloader, you have to install it and generate the file <color #0B71B9/#DDF1FF>grub.cfg</color>: 
- 
-<note important> 
-If you want to [[en:manual:encrypted_installation|install GRUB on a Libreboot system]], keep in mind your system **does not use UEFI or Legacy BIOS**, but instead loads GRUB as its only payload. So you we will run this command instead: 
- 
-<code bash> 
-grub-install --no-bootsector /dev/sdX 
-</code> 
-</note> 
- 
-<code bash> 
-# grub-mkconfig -o /boot/grub/grub.cfg 
-</code> 
- 
-  * For BIOS and EFI: 
- 
-<code bash> 
-# pacstrap /mnt grub 
-</code> 
- 
-  * Install GRUB after chrooting (refer to the [[en:manual:reference_installation#Configure the system]] section). 
- 
-See [[https://wiki.parabola.nu/GRUB2|GRUB]] for further details. 
- 
-=== Syslinux === 
-<code bash>  
-# pacstrap /mnt syslinux 
-</code> 
- 
-See [[https://wiki.parabola.nu/Syslinux|Syslinux]] for further details. 
  
 ==== Wireless tools installation ==== ==== Wireless tools installation ====
Line 782: Line 731:
 # alsactl store # alsactl store
 </code> </code>
 +
 +==== Bootloader installation and configuration ====
 +=== GRUB ===
 +Finally follow these steps:
 +
 +<code bash>
 +# pacman -S grub
 +</code>
 +
 +<code bash>
 +# grub-install --target=i386-pc --recheck /dev/sdX
 +</code>
 +
 +<note>
 +Here do NOT append a partition number, i.e. <color #0B71B9/#DDF1FF>/dev/sdaX</color>)
 +</note>
 +
 +<code bash>
 +# grub-mkconfig -o /boot/grub/grub.cfg
 +</code>
 +
 +  * To configure the bootloader, you have to install it and generate the file <color #0B71B9/#DDF1FF>grub.cfg</color>:
 +
 +<note important>
 +If you want to [[en:manual:encrypted_installation|install GRUB on a Libreboot system]], keep in mind your system **does not use UEFI or Legacy BIOS**, but instead loads GRUB as its only payload. So you we will run this command instead:
 +
 +<code bash>
 +grub-install --no-bootsector /dev/sdX
 +</code>
 +</note>
 +
 +<code bash>
 +# grub-mkconfig -o /boot/grub/grub.cfg
 +</code>
 +
 +  * For BIOS and EFI:
 +
 +<code bash>
 +# pacstrap /mnt grub
 +</code>
 +
 +  * Install GRUB after chrooting (refer to the [[en:manual:reference_installation#Configure the system]] section).
 +
 +See [[https://wiki.parabola.nu/GRUB2|GRUB]] for further details.
 +
 +=== Syslinux ===
 +<code bash> 
 +# pacstrap /mnt syslinux
 +</code>
 +
 +See [[https://wiki.parabola.nu/Syslinux|Syslinux]] for further details.
  
 === Unmount and reboot === === Unmount and reboot ===