Run vagrant vms with vm console enabled

If you want to use the virtualbox console for your vagrant vms, you need to enable that feature in the “Vagrantfile” settings file, just add these lines

config.vm.provider "virtualbox" do |v|
        v.customize ["modifyvm", :id, "--vrde","on"]
        v.customize ["modifyvm", :id, "--vrdeport","3389-4000"]
end

Leave a Reply

Your email address will not be published. Required fields are marked *