Skip to content

Instantly share code, notes, and snippets.

@Shono1207
Last active September 28, 2018 06:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Shono1207/904ec5dc4956a66bbbaa052337824788 to your computer and use it in GitHub Desktop.
Save Shono1207/904ec5dc4956a66bbbaa052337824788 to your computer and use it in GitHub Desktop.
Vagrant.configure("2") do |config|
config.vm.box = "Shono/CentOSIaC"
config.vm.provider "virtualbox" do |vb|
vb.name = "Vagrant-CentOS"
vb.cpus = 2
vb.gui = true
vb.memory = "2048"
vb.customize [
"modifyvm", :id,
"--vram", "256",
"--accelerate3d", "on",
"--hwvirtex", "on",
"--nestedpaging", "on",
"--largepages", "on",
"--ioapic", "on",
"--pae", "on",
"--paravirtprovider", "kvm",
"--chipset", "ich9",
]
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment