vmexec-run(1) General Commands Manual vmexec-run(1)

vmexec-run - Run a command in a new virtual machine

vmexec run [-d|--detach] [--rm] [--vmid] [--disable-kvm] [-m|--memory] [-e|--env] [-w|--workdir] [-v|--volume] [--pmem] [-p|--publish] [-s|--ssh-timeout] [-i|--interactive] [-t|--tty] [--show-vm-window] [--pull] [-h|--help] <IMAGE_SOURCE> [ARGS]

Run a command in a new virtual machine

Run virtual machine in background and print virtual machine ID
Remove virtual machine runtime data after exit
Virtual machine identifier

If not provided, a random identifier will be generated.

Run virtual machine with TCG instead of KVM

This would be mostly useful in environments where KVM is not available. It will be a lot slower but might be acceptable in some contexts.

Memory limit for the virtual machine in GBs

Must be an integer of at least 1.

If not provided, all available host memory is used.

Set environment variables for the process inside the virtual machine

Can be provided multiple times.

Expected format: KEY=VALUE

Working directory inside the virtual machine

The default wokring directory for running binaries within a virtual machine is dependent on the image. Most commonly, it'll be /root.

Bind mount a volume into the virtual machine

Can be provided multiple times.

Expected format: source:dest[:ro]

`ro` can optionally be provided to mark the mount as read-only.

Example: $PWD/src:/mnt:ro

Mount a virtio-pmem device file into the virtual machine

You might want to do this to bypass the guest page cache. This is important if you're overprovisioning your host (i.e. giving VMs more combined memory than the host actually has) and have a write-heavy workload. For more info, see: https://www.qemu.org/docs/master/system/devices/virtio-pmem.html

Can be provided multiple times.

Size is in gigabytes.

Expected format: dest:<size>

Example: /var/lib:20

Publish a port on the virtual machine to the host

Can be provided multiple times.

Expected format: [[hostip:][hostport]:]vmport

`hostip` is optional and if not provided, the port will be bound on all host IPs.

`hostport` is optional and if not provided, the same value of `vmport` will be used for the host port.

Currently only IPv4 is supported for `hostip`.

SSH connection timeout

Try for this long (in seconds) to connect to the virtual machine's SSH server.

Make STDIN available to the virtual machine's process

If 'auto', this will try to read from stdin if it is available, and do nothing when stdin is not available. If 'always', this will try to read from stdin and abort when stdin is not available.

Possible values:

  • always
  • never
  • auto
Allocate a pseudo-TTY for the virtual machine

If 'auto', this will be enabled in case vmexec is run from an interactive terminal.

Possible values:

  • always
  • never
  • auto
Show a window with the virtual machine running in it

This is mostly useful for debugging boot failures.

When to pull a new image

Possible values:

  • missing
  • never
  • newer
Print help (see a summary with '-h')
<IMAGE_SOURCE>
Either an operating system (e.g. archlinux) or a path to an image

Possible OS types: archlinux

[ARGS]
Arguments to run in the virtual machine
run