Skip to content

Instantly share code, notes, and snippets.

@peco8
Forked from leifg/Vagrantfile
Created February 9, 2016 07:36
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 peco8/3e0c8488ad537b0a5399 to your computer and use it in GitHub Desktop.
Save peco8/3e0c8488ad537b0a5399 to your computer and use it in GitHub Desktop.
Add a second disk to system using vagrant
file_to_disk = './tmp/large_disk.vdi'
Vagrant::Config.run do |config|
config.vm.box = 'base'
config.vm.customize ['createhd', '--filename', file_to_disk, '--size', 500 * 1024]
config.vm.customize ['storageattach', :id, '--storagectl', 'SATA Controller', '--port', 1, '--device', 0, '--type', 'hdd', '--medium', file_to_disk]
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment