How to Install Edge Microvisor Toolkit: Virtual & Bare-Metal Deployment Guide #318
biapalmeiro
started this conversation in
General
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
As edge workloads become more complex and performance-critical, developers need operating systems that are secure, lightweight, and customizable. The Edge Microvisor Toolkit (EMT) offers exactly that—a high-performance, Intel-optimized Linux distribution designed to run containers, virtual machines, and real-time workloads at the edge.
Quick walkthrough how to install EMT on virtual machines (Hyper-V, VirtualBox, KVM, QEMU) and on bare-metal hardware.
What Is Edge Microvisor Toolkit?
Edge Microvisor Toolkit is:
Based on Azure Linux
Immutable by design (supports A/B updates)
Tailored for Intel® platforms
Open-source and customizable via RPM build system
Option 1: Install EMT in a Virtual Machine
You can use the pre-built ISO or disk images (RAW, VHD, VHDX) generated by EMT’s build system.
Hyper-V on Windows
Open Hyper-V Manager
New → Virtual Machine
Choose:
Allocate memory, network, and storage
Select:
Install from ISO or
Use existing VHD (skip ISO if using a prebuilt disk)
For Gen2, go to Settings → Security and disable Secure Boot
Adjust boot order to prioritize DVD
Start the VM and follow the installation prompts
VirtualBox on Windows/Linux
Open VirtualBox, create a new VM
Select Linux > Fedora (64-bit)
Choose the EMT ISO
Enable EFI and assign memory/CPU
If using a VHD/RAW image, convert to VDI:
VBoxManage clonehd --format VDI input.vhd output.vdi # or for RAW: VBoxManage convertfromraw input.img output.vdi --format VDI
KVM with Virt-Manager on Linux
Install packages:
sudo apt update sudo apt install virt-manager libvirt-clients libvirt-daemon-system sudo usermod -a -G libvirt $(whoami)
Open virt-manager, create a new VM
Use:
ISO (installer) or
Import RAW image (recommended for best performance)
Manually select OS as Fedora
Assign resources and configure the network
Start the VM and install EMT
QEMU with UEFI
For advanced users wanting CLI installation with QEMU and UEFI support:
Option 2: Install EMT on Bare Metal
What You’ll Need:
EMT 3.0 ISO
USB flash drive (8GB+)
Access to the target machine
Optional: BMC/iDRAC for remote install
Create a Bootable USB (Linux):
lsblk # Identify your USB (e.g., /dev/sdb) sudo dd if=/path/to/emt.iso of=/dev/sdb bs=4M status=progress oflag=sync sudo sync
Create a Bootable USB (Windows):
Install Rufus
Insert USB and launch Rufus
Select:
ISO: EMT 3.0
Partition scheme: MBR (BIOS) or GPT (UEFI)
File system: FAT32
Click Start and follow prompts
Boot and Install
Insert USB and boot from it
Choose installer mode (terminal or graphical)
Follow prompts:
Select disk
Partition layout
Optional encryption
Create user/password
Click Install
Reboot — you’re now running Edge Microvisor Toolkit!
Post-Installation Checklist
After install, confirm version:
You’re now ready to deploy container workloads, set up Kubernetes, or build your own image using the Edge Microvisor Toolkit build system.
Learn more – EMT Install Guide
Beta Was this translation helpful? Give feedback.
All reactions