Skip to content

Instantly share code, notes, and snippets.

@smutek
Created February 11, 2017 19:22
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save smutek/fb9574ea6239c13b81c232531d6a51b1 to your computer and use it in GitHub Desktop.
Save smutek/fb9574ea6239c13b81c232531d6a51b1 to your computer and use it in GitHub Desktop.
Install VVV on Fedora 25

Installing Virtualbox, Vagrant, and VVV on Fedroa 25 requires a few extra steps.

Install Vagrant and Virtual Box

Follow the instructions here to install Virtual Box and Vagrant.

Install Ruby Tools

Add necessary Ruby tools neded to install vagrant plugins.

  • Ruby Devel: sudo dnf install ruby-devel
  • Ruby Gem Bundler: sudo dnf install ruby-gem-bundler
  • RPM Build: sudo dnf install rpm-build
  • zlib devel: sudo dnf install zlib-devel
  • gcc: sudo dnf install gcc

Maybe not necessary, but for good measure I also installed: sudo dnf install @"Development Tools"

Install gems

  • Minima: gem install minima
  • FFI: gem install ffi -v '1.9.14'
  • Nokogiri: gem install nokogiri -v '1.6.8.1'

Done

At this point you should be able to install vagrant plugins and get vagrant up and running.

First Vagrant Up

Fedora ships with libvirt, for each new Vagrant box specifiy the default provider on the first vagrant up with: vagrant up --provider=virtualbox

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment