run these commands as root to install virtualbox and automatically keep it updated with the rest of the system,
echo deb http://download.virtualbox.org/virtualbox/debian `lsb_release -sc` contrib > /etc/apt/sources.list.d/virtualbox.list wget -q https://www.virtualbox.org/download/oracle_vbox.asc -O- | sudo apt-key add - apt-get update apt-get install virtualbox-5.0 then install vagrant from https://www.vagrantup.com/downloads.html now try it. make a folder, cd into and make a file called Vagrantfile with these contents. # -*- mode: ruby -*- # vi: set ft=ruby : VAGRANTFILE_API_VERSION = "2" Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| config.vm.box = "ubuntu/trusty64" config.vm.hostname = "vagrantbox" end then 'vagrant up' and see if it works. https://docs.vagrantup.com/v2/getting-started/index.html On Saturday, December 26, 2015 at 2:37:49 PM UTC-8, Edgar Oliveira wrote: > > Hello, > > Thanks for your helps > > exist some article or tutorial where explain how install and configure > environment vagrant, with virtualbox or any other, on Linux? > > Thanks > -- This mailing list is governed under the HashiCorp Community Guidelines - https://www.hashicorp.com/community-guidelines.html. Behavior in violation of those guidelines may result in your removal from this mailing list. GitHub Issues: https://github.com/mitchellh/vagrant/issues IRC: #vagrant on Freenode --- You received this message because you are subscribed to the Google Groups "Vagrant" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/vagrant-up/e93bc5bc-2aaf-4888-8fe6-bec9506729cf%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.
