高木のブログ

【Vagrant】CPU の数を変更する

2022/11/09

仮想マシンに割り当てる CPU の数を増やしたかった
メモリを増やす方法と同じやり方でできた

Vagrantfile
config.vm.provider "virtualbox" do |vb|
  # Display the VirtualBox GUI when booting the machine
  # vb.gui = true

  # Customize the amount of memory on the VM:
  vb.memory = "15360"

+ vb.cpus = "3"
end
$ grep processor /proc/cpuinfo | wc -l
3

CPU のコア数が3になっていることが確認できる

参考

Vagrant で VirtualBox 仮想マシンの CPU 数とメモリサイズを変更 - なんとなくな Developer のメモ 物理 CPU、CPU コア、および論理 CPU の数を確認する - Red Hat Customer Portal


SNS でシェアする


ytkg

Written by ytkg, Twitter, GitHub