Ops
Search
K

Hyper-V

Nanos can run on hyper-v.

Pre-requisites

Hyper-v is only supported on Windows 10 Enterprise, Pro and Education.
You need to enable the next Windows features:
After enabling the required windows features you may be able to manage virtual machines with ops commands from a wsl shell with administrator permissions.

Image Operations

Create Image

$ ops image create <elf_file|program> -i <image_name> -t hyper-v

List Images

$ ops image list -t hyper-v
+------+--------------------------------------+---------+----------------+
| NAME | PATH | SIZE | CREATEDAT |
+------+--------------------------------------+---------+----------------+
| main | /home/xyz/.ops/vhdx-images/main.vhdx | 33.6 MB | 21 minutes ago |
+------+--------------------------------------+---------+----------------+

Delete Image

$ ops delete image <image_name> -t hyper-v

Instance Operations

Create Instance

$ ops instance create <image_name> -t hyper-v

List Instances

$ ops instance list -t hyper-v
+------+---------+----------------+--------------+------+
| NAME | STATUS | CREATED | PRIVATE IPS | PORT |
+------+---------+----------------+--------------+------+
| main | running | 21 minutes ago | 192.168.1.75 | 8080 |
+------+--------------------------------------+---------+

Delete Instance

$ ops instance delete main -t hyper-v
Last modified 2yr ago