The smart virtual machines manager
Table of Contents:
What is Vermin
Vermin is a smart, simple and powerful command line tool for Linux, Windows and macOS. It's designed for developers/testers and others working in IT who want a fresh VM environment with a single command. It uses VirtualBox to run the VM. Vermin will fetch images on your behalf.
You can look to Vermin as a modern CLI for Vagrant Boxes.
Vermin can be used when you need an easy way to obtain a Linux environment up and running in minutes.
Install Vermin
Vermin uses VirtualBox v6.0 or later as the underlying hypervisor to create and run Virtual Machines. So you need to download and install it first.
To install/update on macOS and Linux run:
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/mhewedy/vermin/master/install.sh)"
To install/update on Windows (PowerShell) run:
# Should run as Administrator
iex ((New-Object System.Net.WebClient).DownloadString('https://raw.githubusercontent.com/mhewedy/vermin/master/install.ps1'))
Usage:
Create, control and connect to VirtualBox VM instances
Usage:
vermin [command]
Examples:
You can use vermin by creating a VM from an image.
To list all images available:
$ vermin images
Then you can create a vm using:
$ vermin create <image>
Available Commands:
commit Commit a VM into a new Image
completion Generates shell completion scripts
cp Copy files/folders between a VM and the local filesystem or between two VMs
create Create a new VM
exec Run a command in a running VM
gui open the GUI for the VM
help Help about any command
hypervisor print the name of the detected hypervisor
images List remote and cached images
ip Show IP address for a running VM
mount Mount local filesystem inside the VM
port Forward port(s) from a VM to host
ps List VMs
restart Restart one or more VMs
rm Remove one or more VM
rmi Remove one or more Image
ssh ssh into a running VM
start Start one or more stopped VMs
stop Stop one or more running VMs
tag Add or remove tag to a VM
update Update configuration of a VM
Flags:
-h, --help help for vermin
-v, --version version for vermin
Use "vermin [command] --help" for more information about a command.
You can start using Vermin after installation using:
$ vermin create <vagrant image name>
# example using ubuntu focal image
$ vermin create hashicorp/focal64
# also you can use rhel8 using:
$ vermin create generic/rhel8
You can use all vagrant images.
Vermin collects very simple usage data anonymously.
Vermin documentations website.
For more info on the usage options seeContributors
Special thanks to Ahmed Samir for contributing the logo.
Stars Overtime
TODO
See TODO.md