summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordavidovski <david@davidovski.xyz>2022-10-03 18:59:45 +0100
committerdavidovski <david@davidovski.xyz>2022-10-03 18:59:45 +0100
commit4346dc9b0e1ffa467426a5807c001944b0c236ed (patch)
tree0b38e7c73c7cc7785967eff362224848598dcb18
parentca2fc05ad8cdc6e5aa7da972850682f71246cd06 (diff)
Added \
-rw-r--r--src/pci_passthrough.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/pci_passthrough.md b/src/pci_passthrough.md
index 4bf3a65..54bea08 100644
--- a/src/pci_passthrough.md
+++ b/src/pci_passthrough.md
@@ -26,7 +26,7 @@ Once you have enabled IOMMU, you will need to ensure that your PCI slot can actu
To list IOMMU groups, you may use this script from the [archwiki](https://wiki.archlinux.org/title/PCI_passthrough_via_OVMF#Ensuring_that_the_groups_are_valid)
```
-#!/bin/bash
+\#!/bin/bash
shopt -s nullglob
for g in $(find /sys/kernel/iommu_groups/* -maxdepth 0 -type d | sort -V); do
echo "IOMMU Group ${g##*/}:"
@@ -96,7 +96,7 @@ In this guide I will be using qemu from the command line. I feel as if this is t
Here is a script that use a to run a linux virtual machine, if you want to copy it blindly and not understand it, then thats alright, but I will include a description for each argument and why its used.
```
-#!/bin/sh
+\#!/bin/sh
ISO="/path/to/your/installer/iso"
ROOT="/path/to/your/virtual/disk"