Skip to content

Commit 7461550

Browse files
committed
Update Windows VM Learning Path
1 parent e806cc6 commit 7461550

File tree

1 file changed

+9
-5
lines changed

1 file changed

+9
-5
lines changed

content/learning-paths/laptops-and-desktops/win11-vm-automation/prerequisites-1.md

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ Verify your system supports KVM by running:
4444

4545
```console
4646
sudo apt install cpu-checker -y
47-
sudo kvm-ok
47+
kvm-ok
4848
```
4949

5050
If KVM is available, you will see the messages:
@@ -59,6 +59,13 @@ This confirms that:
5959
- The KVM kernel module is loaded
6060
- The `/dev/kvm` device exists
6161

62+
Add your user account to the KVM group:
63+
64+
```console
65+
sudo usermod -a -G kvm $USER
66+
newgrp kvm
67+
```
68+
6269
## Install required software
6370

6471
The scripts require several software packages.
@@ -67,7 +74,7 @@ Install the packages using the Linux package manager.
6774

6875
```console
6976
sudo apt update
70-
sudo apt install qemu-system-arm qemu-utils genisoimage wget curl jq uuid-runtime -y
77+
sudo apt install qemu-system-arm qemu-utils genisoimage wget curl jq uuid-runtime seabios -y
7178
```
7279

7380
If needed, the [Remmina](https://remmina.org/) remote desktop (RDP) client is automatically installed by the run script so you don't need to install it now, but you can install it using this command:
@@ -76,7 +83,4 @@ If needed, the [Remmina](https://remmina.org/) remote desktop (RDP) client is au
7683
sudo apt install remmina remmina-plugin-rdp -y
7784
```
7885

79-
8086
You’ve verified your system requirements and you’re now ready to move on and start working with Windows on Arm virtual machines.
81-
82-

0 commit comments

Comments
 (0)