Can I see boot screen on vagrant up?

vagrant

Solution

On that command prompt? Not easily. What you can do is get the vm provider to run in headed mode so you can see the virtualised console, e.g. for virtualbox add:

config.vm.provider :virtualbox do |vb|
  # Don't boot with headless mode
  vb.gui = true
end

Indise the `Vagrant.configure` block.

Problem

For default if you starting vagrant (with vagrant up) then you can only see Vagrant messages. How can I print out boot informations from the box I'm just booting with? EDIT: I want to test some init scripts and see how they behave.

Original source