-- Leo's gemini proxy

-- Connecting to gmi.runtimeterror.dev:1965...

-- Connected

-- Sending request

-- Meta line: 20 text/gemini;lang=en-US

💻 [runtimeterror $]

2023-02-20 ~ 2024-02-06

Create Virtual Machines on a Chromebook with HashiCorp Vagrant


I've lately been trying to do more with Salt [1] at work, but I'm still very much a novice with that tool. I thought it would be great to have a nice little portable lab environment where I could deploy a few lightweight VMs and practice managing them with Salt - without impacting any systems that are actually being used for anything. Along the way, I figured I'd leverage HashiCorp Vagrant [2] to create and manage the VMs, which would provide a declarative way to define what the VMs should look like. The VM (or even groups of VMs) would be specified in a single file, and I'd bypass all the tedious steps of creating the virtual hardware, attaching the installation media, installing the OS, and performing the initial configuration. Vagrant will help me build up, destroy, and redeploy a development environment in a simple and repeatable way.

[1] Salt

[2] HashiCorp Vagrant

Also, because I'm a bit of a sadist, I wanted to do this all on my new Framework Chromebook [3]. I might as well put my 32GB of RAM to good use, right?

[3] Framework Chromebook

It took a bit of fumbling, but this article describes what it took to get a Vagrant-powered VM up and running in the Linux Development Environment [4] on my Chromebook (which is currently running ChromeOS v111 beta).

[4] Linux Development Environment

Install the prerequisites

First things first: you should make sure your Chromebook supports nested virtualization. Many newer ones do, but it's not a universal thing. It's easy to check just by looking for the `kvm` device file:

ls -l /dev/kvm
crw-rw---- 10,232 root  6 Feb 08:03 /dev/kvm

As long as you don't get an error like `No such file or directory` then you should be good to go.

With that out of the way, there are are a few packages which need to be installed before we can move on to the Vagrant-specific stuff. It's quite possible that these are already on your system.... but if they *aren't* already present you'll have a bad problem.

sudo apt update && sudo apt install \
    build-essential \
    gpg \
    lsb-release \
    wget

I'll be configuring Vagrant to use `libvirt` [5] to interface with the Kernel Virtual Machine (KVM) [6] 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:

sudo apt install virt-manager libvirt-dev

[5] `libvirt`

[6] Kernel Virtual Machine (KVM)

And to avoid having to `sudo` each time I interact with `libvirt` I'll add myself to that group:

sudo gpasswd -a $USER libvirt ; newgrp libvirt

And to avoid this issue [7] I'll make a tweak to the `qemu.conf` file:

echo "remember_owner = 0" | sudo tee -a /etc/libvirt/qemu.conf
sudo systemctl restart libvirtd

[7] this issue

<-- note -->

There seems to be an issue with libvirt in LXC containers on Debian Bookworm [8], which explains why I was getting errors on `vagrant up` after updating my Crostini environment.

[8] issue with libvirt in LXC containers on Debian Bookworm

The workaround is to add another line to `qemu.conf`:

echo "namespaces = []" | sudo tee -a /etc/libvirt/qemu.conf
sudo systemctl restart libvirtd

<-- /note -->

I'm also going to use `rsync` to share a synced folder [9] between the host and the VM guest so I'll need to make sure that's installed too:

sudo apt install rsync

[9] synced folder

Install Vagrant

With that out of the way, I'm ready to move on to the business of installing Vagrant. I'll start by adding the HashiCorp repository:

wget -O- https://apt.releases.hashicorp.com/gpg | gpg --dearmor | sudo tee /usr/share/keyrings/hashicorp-archive-keyring.gpg
echo "deb [signed-by=/usr/share/keyrings/hashicorp-archive-keyring.gpg] https://apt.releases.hashicorp.com $(lsb_release -cs) main" | sudo tee /etc/apt/sources.list.d/hashicorp.list

I'll then install the Vagrant package:

sudo apt update
sudo apt install vagrant

I also need to install the `vagrant-libvirt` plugin [10] so that Vagrant will know how to interact with `libvirt`:

vagrant plugin install vagrant-libvirt

[10] `vagrant-libvirt` plugin

Create a lightweight VM

Now I can get to the business of creating my first VM with Vagrant!

Vagrant VMs are distributed as Boxes, and I can browse some published Boxes at app.vagrantup.com/boxes/search?provider=libvirt [11] (applying the `provider=libvirt` filter so that I only see Boxes which will run on my chosen virtualization provider). For my first VM, I'll go with something light and simple: `generic/alpine38` [12].

[11] app.vagrantup.com/boxes/search?provider=libvirt

[12] `generic/alpine38`

So I'll create a new folder to contain the Vagrant configuration:

mkdir vagrant-alpine
cd vagrant-alpine

And since I'm referencing a Vagrant Box which is published on Vagrant Cloud, downloading the config is as simple as:

vagrant init generic/alpine38

A `Vagrantfile` has been placed in this directory. You are now
ready to `vagrant up` your first virtual environment! Please read
the comments in the Vagrantfile as well as documentation on
`vagrantup.com` for more information on using Vagrant.

Before I `vagrant up` the joint, I do need to make a quick tweak to the default Vagrantfile, which is what tells Vagrant how to configure the VM. By default, Vagrant will try to create a synced folder using NFS and will throw a nasty error when that (inevitably) fails. So I'll open up the Vagrantfile to review and edit it:

vim Vagrantfile

Most of the default Vagrantfile is commented out. Here's the entirey of the configuration *without* the comments:

Vagrant.configure("2") do |config|
  config.vm.box = "generic/alpine38"
end

There's not a lot there, is there? Well I'm just going to add these two lines somewhere between the `Vagrant.configure()` and `end` lines:

Vagrant.configure("2") do |config|
  config.vm.box = "generic/alpine38"
  config.nfs.verify_installed = false
  config.vm.synced_folder '.', '/vagrant', type: 'rsync'
end

The first line tells Vagrant not to bother checking to see if NFS is installed, and will use `rsync` to share the local directory with the VM guest, where it will be mounted at `/vagrant`.

So here's the full Vagrantfile (sans-comments, again):

Vagrant.configure("2") do |config|
  config.vm.box = "generic/alpine38"
  config.nfs.verify_installed = false
  config.vm.synced_folder '.', '/vagrant', type: 'rsync'
end

With that, I'm ready to fire up this VM with `vagrant up`! Vagrant will look inside `Vagrantfile` to see the config, pull down the `generic/alpine38` Box from Vagrant Cloud, boot the VM, configure it so I can SSH in to it, and mount the synced folder:

vagrant up
Bringing machine 'default' up with 'libvirt' provider...
==> default: Box 'generic/alpine38' could not be found. Attempting to find and install...
    default: Box Provider: libvirt
    default: Box Version: >= 0
==> default: Loading metadata for box 'generic/alpine38'
    default: URL: https://vagrantcloud.com/generic/alpine38
==> default: Adding box 'generic/alpine38' (v4.2.12) for provider: libvirt
    default: Downloading: https://vagrantcloud.com/generic/boxes/alpine38/versions/4.2.12/providers/libvirt.box
    default: Calculating and comparing box checksum...
==> default: Successfully added box 'generic/alpine38' (v4.2.12) for 'libvirt'!
==> default: Uploading base box image as volume into Libvirt storage...
[...]
==> default: Waiting for domain to get an IP address...
==> default: Waiting for machine to boot. This may take a few minutes...
    default: SSH address: 192.168.121.41:22
    default: SSH username: vagrant
    default: SSH auth method: private key
[...]
    default: Key inserted! Disconnecting and reconnecting using new SSH key...
==> default: Machine booted and ready!
==> default: Rsyncing folder: /home/john/projects/vagrant-alpine/ => /vagrant

And then I can use `vagrant ssh` to log in to the new VM:

vagrant ssh
cat /etc/os-release
NAME="Alpine Linux"
ID=alpine
VERSION_ID=3.8.5
PRETTY_NAME="Alpine Linux v3.8"
HOME_URL="http://alpinelinux.org"
BUG_REPORT_URL="http://bugs.alpinelinux.org"

I can also verify that the synced folder came through as expected:

ls -l /vagrant
total 4
-rw-r--r--    1 vagrant  vagrant       3117 Feb 20 15:51 Vagrantfile

Once I'm finished poking at this VM, shutting it down is as easy as:

vagrant halt

And if I want to clean up and remove all traces of the VM, that's just:

vagrant destroy


Create a heavy VM, as a treat

Having proven to myself that Vagrant does work on a Chromebook, let's see how it does with a slightly-heavier VM.... like Windows 11 [13].

[13] Windows 11

<-- note -->

Windows 11 makes for a pretty hefty VM which will require significant storage space. My Chromebook's Linux environment ran out of storage space the first time I attempted to deploy this guy. Fortunately ChromeOS makes it easy to allocate more space to Linux (**Settings > Advanced > Developers > Linux development environment > Disk size**). You'll probably need at least 30GB free to provision this VM.

<-- /note -->

Again, I'll create a new folder to hold the Vagrant configuration and do a `vagrant init`:

mkdir vagrant-win11
cd vagrant-win11
vagrant init oopsme/windows11-22h2

And, again, I'll edit the Vagrantfile before starting the VM. This time, though, I'm adding a few configuration options to tell `libvirt` that I'd like more compute resources than the default 1 CPU and 512MB RAM

Vagrant.configure("2") do |config|

config.vm.box = "oopsme/windows11-22h2"

config.vm.provider :libvirt do |libvirt|

libvirt.cpus = 4

libvirt.memory = 4096

end

end

Now it's time to bring it up. This one's going to take A While as it syncs the ~12GB Box first.

vagrant up

Eventually it should spit out that lovely **Machine booted and ready!** message and I can log in! I *can* do a `vagrant ssh` again to gain a shell in the Windows environment, but I'll probably want to interact with those sweet sweet graphics. That takes a little bit more effort.
First, I'll use `virsh -c qemu:///system list` to see the running VM(s):

virsh -c qemu:///system list

Id Name State

---------------------------------------

10 vagrant-win11_default running

Then I can tell `virt-viewer` that I'd like to attach a session there:

virt-viewer -c qemu:///system -a vagrant-win11_default

I log in with the default password `vagrant`, and I'm in Windows 11 land!
=> win-11-vm.png Image: Windows 11 running on a Chromebook!
### Next steps
Well that about does it for a proof-of-concept. My next steps will be exploring multi-machine Vagrant environments [14] to create a portable lab environment including machines running several different operating systems so that I can learn how to manage them effectively with Salt. It should be fun!
=> https://developer.hashicorp.com/vagrant/docs/multi-machine [14] multi-machine Vagrant environments



---

=> mailto:blogreply.create-vms-chromebook-hashicorp-vagrant@runtimeterror.dev?subject=Re%3A%20Create%20Virtual%20Machines%20on%20a%20Chromebook%20with%20HashiCorp%20Vagrant 📧 Reply by email


## Related articles

=> /salt-state-netdata-tailscale/index.gmi Quick Salt State to Deploy Netdata
=> /tailscale-ssh-serve-funnel/index.gmi Tailscale Feature Highlight: SSH, Serve, and Funnel
=> /ditching-vsphere-for-proxmox/index.gmi I Ditched vSphere for Proxmox VE
---

=> / Home
=> https://runtimeterror.dev/create-vms-chromebook-hashicorp-vagrant/ This page on the big web

-- Response ended

-- Page fetched on Fri May 10 10:09:20 2024