Install Vagrant and Vagrant Plugins

Install Vagrant 2.4.0 along with the vagrant-lxd and vagrant-windows-sysprep plugins. Enable command completion and optionally configure Red Hat registration.

To install Vagrant, follow these steps:

  1. Install Vagrant: Download and install Vagrant 2.4.0:1

    wget https://releases.hashicorp.com/vagrant/2.4.0/vagrant_2.4.0-1_amd64.deb
    sudo dpkg -i vagrant_2.4.0-1_amd64.deb
    sudo apt-mark hold vagrant
    
  2. Install Plugins and Enable Autocomplete: Extend Vagrant with the vagrant-lxd and vagrant-registration plugins, and enable Vagrant command completion  :

    vagrant plugin install vagrant-lxd
    vagrant plugin install vagrant-registration
    vagrant autocomplete install --bash
    

    Verify the installed plugins:

    ls ~/.vagrant.d/gems/3.1.4/gems/
    
    Show me
    onknows@io3:/tmp$ ls ~/.vagrant.d/gems/3.1.4/gems/ -1
    activesupport-5.2.8.1
    addressable-2.8.8
    faraday-0.17.6
    hyperkit-1.3.0
    minitest-5.27.0
    multipart-post-2.4.1
    public_suffix-6.0.2
    sawyer-0.9.3
    thread_safe-0.3.6
    tzinfo-1.2.11
    vagrant-lxd-0.7.1
    vagrant-registration-1.3.4
    
  3. Install the Vagrant Windows Sysprep Provisioner: Install a custom, idempotent version of the Vagrant Windows Sysprep Provisioner  . This plugin uses Sysprep  to prepare reusable Windows images:

    wget https://c2platform.org/downloads/c2-iekeiTh7Fah5Orangooy/vagrant-windows-sysprep-0.0.11.gem
    vagrant plugin install vagrant-windows-sysprep-*.gem
    
  4. Optional: Automate Red Hat Linux VM Registration: If you use Red Hat Linux VMs, export the RHEL_DEV_ACCOUNT and RHEL_DEV_SECRET variables. See Streamlining RHEL Registration and Subscription Automation for details.


  1. Vagrant 2.4.0 is pinned because the LXD plugin is incompatible with newer releases. ↩︎