From 2fa4f76231548c0ffe64c8c975075b7c6f86438a Mon Sep 17 00:00:00 2001 From: John Bowdre Date: Mon, 5 Feb 2024 08:15:06 -0600 Subject: [PATCH] update post --- content/posts/create-vms-chromebook-hashicorp-vagrant/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/posts/create-vms-chromebook-hashicorp-vagrant/index.md b/content/posts/create-vms-chromebook-hashicorp-vagrant/index.md index c1dd764..e46e8bc 100644 --- a/content/posts/create-vms-chromebook-hashicorp-vagrant/index.md +++ b/content/posts/create-vms-chromebook-hashicorp-vagrant/index.md @@ -41,7 +41,7 @@ sudo apt update && sudo apt install \ # [tl! .cmd] [^problem]: and [will not go to space today](https://xkcd.com/1133/). -I'll be configuring Vagrant to use [`libvirt`](https://libvirt.org/) to interface with the [Kernel Virtual Machine (KVM)](https://www.linux-kvm.org/page/Main_Page) virtualization solution (rather than something like VirtualBox that would bring more overhead) so I'll need to install some packages for that as well: +I'll be configuring Vagrant to use [`libvirt`](https://libvirt.org/) to interface with the [Kernel Virtual Machine (KVM)](https://www.linux-kvm.org/page/Main_Page) virtualization solution (rather than something like VirtualBox which would require kernel modules that can't be loaded in ChromeOS) so I'll need to install some packages for that as well: ```shell sudo apt install virt-manager libvirt-dev # [tl! .cmd] ```