Advertisement
Guest User

Untitled

a guest
Jun 15th, 2019
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. Using this VagrantFile...
  2. ```
  3. Vagrant.configure(2) do |config|
  4. config.vm.box = "peru/ubuntu-18.04-desktop-amd64"
  5. config.vm.box_version = "20190515.01"
  6. config.vm.provider "virtualbox" do |vb|
  7. # Display the VirtualBox GUI when booting the machine
  8. vb.gui = true
  9. vb.customize ["modifyvm", :id, "--memory", 4096]
  10. vb.customize ["modifyvm", :id, "--clipboard", "bidirectional"]
  11. vb.customize ["modifyvm", :id, "--vram", "32"]
  12. vb.customize ["setextradata", :id, "CustomVideoMode1", "1680x1024x32"]
  13. end
  14. end
  15. ```
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement