Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trial
Brian van Vlymen
12,637 PointsHow get full screen on Oracle VM?
After type $vagrant up and it goes to Oracle VM VirtualBox Manager. I was excepted it will go to remote screen automatically and it does not show up..... Do you know how to switch the preview screen to get full screen or new tab window to handle the LINUX? Its inside preview of black screen with smallest words so I could not type inside.
1 Answer
Brian van Vlymen
12,637 Pointsignore vagrant init what they said.... change Vagrantfile copy and paste
VAGRANTFILE_API_VERSION = "2"
path = "#{File.dirname(FILE)}"
require 'yaml' require path + '/scripts/homestead.rb'
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| Homestead.configure(config, YAML::load(File.read(path + '/Homestead.yaml'))) config.vm.provider :virtualbox do |vb| vb.gui = true end end
it will automatically window tab for you.