Last active
November 24, 2024 18:07
-
-
Save dreua/7435bfcf58e154d4e9f506fcc7380c81 to your computer and use it in GitHub Desktop.
Vagrant: Disable nfs (asks for sudo password) and more memory and cpus on Linux
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
config.nfs.verify_installed = false | |
config.vm.synced_folder '.', '/vagrant', disabled: true | |
config.vm.provider :libvirt do |libvirt| | |
libvirt.cpus = 7 | |
libvirt.memory = 4069 | |
end | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment