diff --git a/docs/distributions/arch/installation.md b/docs/distributions/arch/installation.md index 87574ff9..ccbd1ebc 100644 --- a/docs/distributions/arch/installation.md +++ b/docs/distributions/arch/installation.md @@ -14,7 +14,7 @@ You will need: 3. Follow the Arch Wiki guide from [here](https://wiki.archlinux.org/index.php/Installation_guide#Set_the_console_keyboard_layout) up to "Format the partitions". 1. You will need to reformat your partitions, except for the EFI partition. The other partitions will need to reformatted as described in the Arch Wiki Installation guide. For the EFI system partition (mentioned in a note on the Arch Wiki), there will be one at `/dev/nvme0n1p1` and you can use this if you don't intend to install Windows or already have it installed. If you do intend to triple boot, refer to [this guide](https://wiki.t2linux.org/guides/windows/). - 2. Mount the EFI partition that you intend to use for your bootloader on `/mnt/boot/efi`, and your other partitions on `/mnt`, etc. + 2. Mount the EFI partition that you intend to use for your bootloader on `/mnt/boot`, and your other partitions on `/mnt`, etc. 4. Continue following the Arch Wiki's guide until "Install essential packages". @@ -42,10 +42,10 @@ You will need: 8. Enable `t2fanrd` and `tiny-dfr` by running: - ```bash - sudo systemctl enable t2fanrd - sudo systemctl enable tiny-dfr - ``` + ```bash + systemctl enable t2fanrd + systemctl enable tiny-dfr + ``` 9. Install a bootloader, GRUB is easier, but you can also use systemd-boot. Don't do both. @@ -53,12 +53,12 @@ You will need: 1. Edit `/etc/default/grub`, you'll need to install a text editor (i.e. `vim` or `nano`) with `pacman -S PACKAGE_NAME` for this step. 2. On the line with `GRUB_CMDLINE_LINUX="quiet splash"`, add the following kernel parameters: `intel_iommu=on iommu=pt pcie_ports=compat` - 3. Run `grub-install --target=x86_64-efi --efi-directory=/boot/efi --bootloader-id=GRUB --removable`. + 3. Run `grub-install --target=x86_64-efi --efi-directory=/boot --bootloader-id=GRUB`. 4. Run `grub-mkconfig -o /boot/grub/grub.cfg` to generate configuration file. - Installing systemd-boot: - 1. Follow the Arch wiki's [instructions](https://wiki.archlinux.org/title/Systemd-boot#Installation). You will want `--path=/boot/efi` as an argument to `bootctl` if you mounted your EFI partition there. Also make sure you configure it to boot the `linux-t2` kernel. + 1. Follow the Arch wiki's [instructions](https://wiki.archlinux.org/title/Systemd-boot#Installation). You will want `--path=/boot` as an argument to `bootctl` if you mounted your EFI partition there. Also make sure you configure it to boot the `linux-t2` kernel. 2. Install a text editor (i.e. `pacman -S vim` or `pacman -S nano`), and make the following edit for `.conf` files in `/boot/efi/loader/entries/`. 3. Add `intel_iommu=on iommu=pt pcie_ports=compat` to the `options` line to add those kernel parameters.