This commit is contained in:
davidovski 2022-10-03 18:59:45 +01:00
parent ca2fc05ad8
commit 4346dc9b0e
1 changed files with 2 additions and 2 deletions

View File

@ -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"