diff options
author | terminaldweller <devi@terminaldweller.com> | 2023-12-30 05:29:13 +0000 |
---|---|---|
committer | terminaldweller <devi@terminaldweller.com> | 2023-12-30 05:29:13 +0000 |
commit | b071c37f8c6157669c8ce024bb9b9d1b7e6387af (patch) | |
tree | 495b3d5efc86520f888480879cb11e5aaabe3e62 /netbsd9/Vagrantfile | |
parent | alma9 (diff) | |
download | vagrantboxes-b071c37f8c6157669c8ce024bb9b9d1b7e6387af.tar.gz vagrantboxes-b071c37f8c6157669c8ce024bb9b9d1b7e6387af.zip |
updates
Diffstat (limited to 'netbsd9/Vagrantfile')
-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 |