Update README.md to make the copy paste flow more efficient

since the amd and intel commands were merged together in a single code block, i had to manually copy it but this commit creates two different copy paste blocks for each cpu type removing the need for manually copying
This commit is contained in:
Geetansh Jangid 2025-08-16 16:18:55 +05:30 committed by GitHub
parent 6cf56dd2d1
commit ae5cacd312
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 4 additions and 1 deletions

View File

@ -97,9 +97,12 @@ processors work just fine (even for macOS Sonoma).
To make this change permanent, you may use the following command. To make this change permanent, you may use the following command.
Use `lscpu` if you are not sure. Use `lscpu` if you are not sure.
* For Intel CPU
``` ```
sudo cp kvm.conf /etc/modprobe.d/kvm.conf # for intel boxes only sudo cp kvm.conf /etc/modprobe.d/kvm.conf # for intel boxes only
```
* For AMD CPU
```
sudo cp kvm_amd.conf /etc/modprobe.d/kvm.conf # for amd boxes only sudo cp kvm_amd.conf /etc/modprobe.d/kvm.conf # for amd boxes only
``` ```