Skip to content

Instantly share code, notes, and snippets.

@gcgists
Last active December 31, 2015 01:59
Show Gist options
  • Save gcgists/7918069 to your computer and use it in GitHub Desktop.
Save gcgists/7918069 to your computer and use it in GitHub Desktop.
Installation of VMS for Libvirt/KVM
# Put your download key here:
export GC_KEY=xxxxxxxxxxxxxxxxxxxxxx
# Install Gridcentric signing key
wget -O - http://downloads.gridcentric.com/packages/gridcentric.key | sudo apt-key add -
# Add Gridcentric repositories
echo deb http://downloads.gridcentric.com/packages/$GC_KEY/vms/ubuntu/ gridcentric multiverse | sudo tee -a /etc/apt/sources.list.d/gridcentric.list
# Update apt
sudo apt-get update
# Install KVM and libvirt (if they are not already installed)
sudo apt-get install -y qemu-kvm libvirt-bin
# Install Linux kernel headers and VMS AppArmor policies
sudo apt-get install -y linux-headers-`uname -r` vms-apparmor
# Install VMS for Libvirt
sudo apt-get install -y vms-libvirt
$ vmsctl version
2.7.3119
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment