insights/content/tutorials/run-windows-11-tpm-and-secure-boot-on-kvm/index.md

151 lines
6.4 KiB
Markdown
Raw Permalink Normal View History

---
title: "Run Windows 11 (TPM and Secure Boot) on KVM"
2024-08-25 17:46:15 +07:00
description: "How to enable TPM on KVM host and enable Secure-Boot for Windows 11 VM."
summary: "How to enable TPM on KVM host and enable Secure-Boot for Windows 11 VM."
# linkTitle:
date: 2022-09-19T03:57:12+07:00
lastmod:
draft: false
noindex: false
# comments: false
nav_weight: 1000
series:
# - Tutorial
categories:
2024-08-25 17:46:15 +07:00
# -
tags:
2024-08-25 17:46:15 +07:00
- Windows
- KVM
- QEMU
- libvirt
images:
authors:
2024-08-25 17:46:15 +07:00
- ditatompel
---
Microsoft tightened the security of **Windows 11** by adding [TPM][win_tpm]
and [Secure-Boot][win_secure_boot] as the minimum requirement to install it.
This article show how to **enable TPM on KVM host** and
**enable Secure-Boot for Windows 11 VM**.
Before starting and going any further, you need to fulfill the following
requirements to follow this article:
2024-08-25 17:46:15 +07:00
- Have the official Windows 11 ISO. You can
[download the official Windows 11 ISO from Microsoft website][win11_dl].
- [Download Windows 11 virtio drivers][virtio_win_iso] to install required
driver on guest machine such as Ethernet controller.
- Configured and
[running KVM environment]({{< ref "/tutorials/how-to-install-virt-manager-on-arch-linux" >}})
including `virt-manager` (**Virtual Machine Manager** GUI) on your host
machine.
My KVM host running on Arch (BTW); however, the steps mentioned here are
identical for other Linux distributions as well.
{{< youtube ik31RsNqMcw >}}
## Install TPM on Linux KVM Host
To emulate TPM, we need to install a software called [swtpm][swtpm_gh],
a Libtpms-based TPM emulator with socket, character device, and Linux CUSE
interface.
2024-08-25 17:46:15 +07:00
Since `swtpm` already available from _Arch Community package repository_, we
can simply install it using `pacman -S swtpm`. If you are using another
_distro_, look for information on how to install `swtpm` on your favorite
distro's documentation page.
For example, if you running KVM Host on **Ubuntu**, you need to add
[Stefan Berger's PPA repository][swtpm_ppa] to your machine before doing
`apt install swtpm-tools`.
To check your installed `swtpm` version, simply run `swtpm --version` command:
2024-08-25 17:46:15 +07:00
```plain
TPM emulator version 0.7.3, Copyright (c) 2014-2021 IBM Corp
```
## Create Windows 11 VM
2024-08-25 17:46:15 +07:00
Create a new VM for Windows 11 from `virt-manager`, attach
**Windows 11 ISO image** to your Windows 11 VM, configure your desired CPU,
RAM and storage capacity for your Windows 11 VM, and at the end of the wizard,
tick **"Costumize configuration before install"** checkbox.
## Configure Windows 11 VM Hardware
2024-08-25 17:46:15 +07:00
In order for Windows 11 work smoothly on KVM, we need to make some changes on
its virtual hardware.
- Click the Overview section, change firmware to something similar to
`UEFI x86_64: /usr/share/edk2-ovmf/x64/OVMF_CODE.secboot.fd`.
- Click **Add Hardware** and add `TPM`. Keep the `Type` option as `Emulated`,
change `Model` option from `CRB` to `TIS`, and `Version` option to `2.0`.
2024-08-25 17:46:15 +07:00
![KVM Windows 11 TPM](kvm-win11-01-tpm.jpg#center)
- Click **Network interface** section and change Device model from
`e1000e` to `virtio`.
> Note: If you allocate more than one virtual CPU (vCPU), make sure the CPU
> topology you configure uses 1 socket. This is because Windows Home Edition
> only reads a maximum of 1 CPU socket, while Windows Pro Edition reads
> a maximum of 2 CPU sockets. For more detailed information, see the
> [Windows edition comparison chart][win_edition_comp_wiki].
>
> So play on CPU cores and threads, because the average consumer hardware only
> has 1 CPU socket (unless you are using a mid-range / high-end server).
## Install Windows 11
2024-08-25 17:46:15 +07:00
Boot up the VM and follow Windows 11 _installation wizard_ and
_initial setup wizard_. During the initial setup wizard, you'll notice you
can't connect to the network because Windows didn't detect any network
interface. For now, we can skip the problem for now, and fix the network
issue latter.
Click **"I don't have internet"** and **"Continue with limited setup"**.
![KVM Windows 11 No Network](kvm-win11-02-no-network-iface.png#center)
> Note: In the latest version of Windows (the last one I tried in the
> `Win11_23H2_English_x64v2.iso`), the **"I don't have internet"** button does
> not appear.
> ![BypassNRO.cmd](kvm-win11-oobe-bypassnro.jpg#center "BypassNRO.cmd")
> To display it, press <kbd>SHIFT</kbd> + <kbd>F10</kbd> type
> `OOBE\BypassNRO.cmd` then press <kbd>ENTER</kbd>. After that the computer
> will restart and the **"I don't have internet"** button will appear.
Continue initial setup wizard by create a **local account**, set
**3 security questions** and **"privacy" settings** stuff. Wait for a few
minutes until you boot into Windows desktop successfully.
Until this step, your Windows 11 VM is successfully installed. Now, you need
to poweroff the VM to fix network driver problem.
## Install virtio driver on Windows 11 VM
2024-08-25 17:46:15 +07:00
Go to **SATA CDROM 1** section, and change `Source path` from where your
Windows 11 VM ISO is located to where **Windows 11 virtio drivers** by simply
click Browse button and choose
[downloaded Windows 11 virtio drivers][virtio_win_iso] on your local machine.
Now, boot up the Windows 11 VM again. After logged in to desktop, click
**Search Icon from task bar**, search for **"Device Manager"** and run
**"Device Manager"** program.
![Windows 11 Virtio Driver](kvm-win11-03-virtio-driver.jpg#center)
On "_Device Manager_" program, right click _Ethernet adapter_ and choose to
_update driver_. Choose **"Browse my computer for drivers"** => pick the
**Windows 11 virtio drivers ISO from CDROM**, tick **"Include subfolders"**
checkbox, click the **"Next"** button and you should see the ethernet adapter
driver is successfully installed.
[win_tpm]: https://support.microsoft.com/en-us/topic/what-is-tpm-705f241d-025d-4470-80c5-4feeb24fa1ee "What is TPM?"
[win_secure_boot]: https://support.microsoft.com/en-us/windows/windows-11-and-secure-boot-a8ff1202-c0d9-42f5-940f-843abef64fad "Windows 11 and Secure Boot"
[win11_dl]: https://www.microsoft.com/en-gb/software-download/windows11 "Download Windows 11"
[virtio_win_iso]: https://fedorapeople.org/groups/virt/virtio-win/direct-downloads/stable-virtio/virtio-win.iso "Windows 11 virtio drivers"
[swtpm_gh]: https://github.com/stefanberger/swtpm "swtpm GitHub repository"
[swtpm_ppa]: https://launchpad.net/~stefanberger/+archive/ubuntu/swtpm "swtpm PPA repository"
[win_edition_comp_wiki]: https://en.wikipedia.org/wiki/Windows_10_editions#Comparison_chart "Windows Edition Comparison chart"