LoginSignup
8
8

More than 5 years have passed since last update.

VagrantfileでCPUコアを複数割り当て(ホスト Win7 64bit)

Last updated at Posted at 2014-06-23

Win7(64bit)環境にVagrant1.6.3、VirtualBox4.3.12をインストール。
Vagrantfileでメモリ、CPUコア数を変更したがCPUコア数が変わらなかった。
調べた結果、VirtualBoxの設定でI/O APICを有効化しないとダメだったので追加。

config.vm.provider "virtualbox" do |vb|
  vb.customize ["modifyvm", :id, "--memory", "768", "--cpus", "2" ,"--ioapic", "on"]
end
8
8
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
8
8