From bdbce10faafd455d0e220b590e682bef2979a5b6 Mon Sep 17 00:00:00 2001 From: qaidvoid <12017109+QaidVoid@users.noreply.github.com> Date: Mon, 10 Aug 2020 14:36:14 +0545 Subject: [PATCH] Just work please. --- README.org | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/README.org b/README.org index aef7d78..ce5a952 100644 --- a/README.org +++ b/README.org @@ -1,36 +1,36 @@ * Set up IOMMU ** Enable IOMMU -Load /etc/default/grub and append *intel_iommu=on* or *amd_iommu=on* to GRUB_CMDLINE_LINUX_DEFAULT. Also, *iommu=pt*. \\ -Update grub configuration. +***** Load /etc/default/grub and append "intel_iommu=on" or "amd_iommu=on" to GRUB_CMDLINE_LINUX_DEFAULT. Also, "iommu=pt". +***** Update grub configuration. #+BEGIN_SRC bash grub-mkconfig -o /boot/grub/grub.cfg #+END_SRC ** Verify IOMMU is enabled successfully -You should see *IOMMU enabled* in output. +***** You should see "IOMMU enabled" in output. #+BEGIN_SRC bash dmesg | grep -i -e DMAR -e IOMMU | grep enabled #+END_SRC * Set up VM ** Installation -Install the required packages. +***** Install the required packages. #+BEGIN_SRC bash sudo pacman -S qemu libvirt edk2-ovmf virt-manager dnsmasq ebtables iptables #+END_SRC ** Starting services -Enable and start libvirt service +***** Enable and start libvirt service #+BEGIN_SRC bash sudo systemctl enable libvirtd sudo systemctl start libvirtd #+END_SRC ** Start default network -This may not be needed. If default network isn't started by default for you, start the network manually. +***** This may not be needed. If default network isn't started by default for you, start the network manually. #+BEGIN_SRC bash sudo virsh net-start default sudo virsh net-autostart default #+END_SRC ** Setup Guest OS -***** Launch virt-manager, and start creating guest. On final step, check *Customize before install*. -***** > In the *Overview* section, set Chipset to *Q35* and firmware to *UEFI*. -***** > In the *CPUs* section, change CPU model to *host-passthrough*. You need to type it manually. +***** Launch virt-manager, and start creating guest. On final step, check "Customize before install". +***** > In the "Overview" section, set Chipset to "Q35" and firmware to "UEFI". +***** > In the "CPUs" section, change CPU model to "host-passthrough". You need to type it manually. ***** According to Arch Wiki, this makes sure that the CPU is detected properly. Without it, some applications may complain about your CPU being of an unknown model. ***** Now, you can *Begin Installation*.