diff options
Diffstat (limited to 'netbsd9')
-rw-r--r-- | netbsd9/Vagrantfile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/netbsd9/Vagrantfile b/netbsd9/Vagrantfile index 274450f..f02c9fc 100644 --- a/netbsd9/Vagrantfile +++ b/netbsd9/Vagrantfile @@ -3,8 +3,8 @@ ENV['VAGRANT_DEFAULT_PROVIDER'] = 'libvirt' MOUNT_POINT = '/home/vagrant/ff' -CPU_COUNT = 1 -MEMORY = 1024 +CPU_COUNT = 2 +MEMORY = 128 Vagrant.require_version '>= 2.2.6' Vagrant.configure('2') do |config| @@ -31,6 +31,8 @@ Vagrant.configure('2') do |config| libvirt.qemuargs value: '-nographic' libvirt.qemuargs value: '-nodefaults' libvirt.qemuargs value: '-no-user-config' + libvirt.qemuargs value: '-serial' + libvirt.qemuargs value: 'pty' libvirt.sound_type = nil libvirt.cpus = CPU_COUNT libvirt.memory = MEMORY |