元の質問と @blong の Vagrant フォーラムの投稿に答えるために、これを機能させるために私が行ったことです。
私は自分で似たようなことをしようとしていました (実際には Vagrant/VMware が Vagrant/Vbox をホストしています)、考えられるすべての最適化を実行し、「ホスト」VM に大量の RAM (24GB) と 6 コアを与え、スワッピングを無効にしました。 「すべての VM メモリを予約済みのホスト メモリに合わせる」を設定し、VM ごとのページ ファイルを許可する (そうしないと、それらはシステム ページ ファイルに存在し、実行できる VM の数が制限されます)。一度)。
私がやっていることは完璧に機能しています。私が抱えていたネットワークの問題は、私が背後にいる企業のプロキシが原因でした。VM がインターネットにアクセスできるように構成すると、すべてがうまくいきました。
サンプル (Virtualbox) Vagrantfile で既に設定されている natdnsproxy1 と naddnshostresolver1 に加えて、Vagrantfile を介して --natbindip1 と --natnet1 を手動で設定する必要がありました。これらの設定は、正しい使用法について Virtualbox のドキュメントに記載されています。
要約すると、VM CPU 設定で VT-x パススルー/「仮想化」オプションを使用し、VM に十分なメモリを与え、そのメモリが「ルート」ホスト マシンでスワップされるのを許可しないでください。ネットワーク範囲が重複していないか、ルーティングの問題が発生します。
これは、私が作業していた Vagrantfile です。ほぼ完全に、modern.ie vagrant セットアップに関する andreptb の要点に基づいています。https://gist.github.com/andreptb/57e388df5e881937e62a
# -*- mode: ruby -*-
# vi: set ft=ruby :
# box name into env var, same script can be used with different boxes. Defaults to win7-ie11.
box_name = box_name = ENV['box_name'] != nil ? ENV['box_name'].strip : 'win7-ie11'
# box repo into env var, so private repos/cache can be used. Defaults to http://aka.ms
box_repo = ENV['box_repo'] != nil ? ENV['box_repo'].strip : 'http://aka.ms'
Vagrant.configure("2") do |config|
# If the box is win7-ie11, the convention for the box name is modern.ie/win7-ie11
config.vm.box = "modern.ie/" + box_name
# If the box is win7-ie11, the convention for the box url is http://aka.ms/vagrant-win7-ie11
config.vm.box_url = box_repo + "/vagrant-" + box_name
# big timeout since windows boot is very slow
config.vm.boot_timeout = 500
# rdp forward
config.vm.network "forwarded_port", guest: 3389, host: 3389, id: "rdp", auto_correct: true
# winrm config, uses modern.ie default user/password. If other credentials are used must be changed here
config.vm.communicator = "winrm"
config.winrm.username = "IEUser"
config.winrm.password = "Passw0rd!"
config.vm.provider "virtualbox" do |vb|
# first setup requires gui to be enabled so scripts can be executed in virtualbox guest screen
#vb.gui = true
vb.customize ["modifyvm", :id, "--memory", "1024"]
vb.customize ["modifyvm", :id, "--vram", "128"]
vb.customize ["modifyvm", :id, "--cpus", "2"]
vb.customize ["modifyvm", :id, "--natdnsproxy1", "on"]
vb.customize ["modifyvm", :id, "--natdnshostresolver1", "on"]
vb.customize ["guestproperty", "set", :id, "/VirtualBox/GuestAdd/VBoxService/--timesync-set-threshold", 10000]
end
end
私の追加の変更:
# Need the WinRM gem for managing from Linux
$ sudo gem install winrm
config.vm.communicator = "winrm"
+ config.winrm.host = "localhost"
config.winrm.username = "IEUser"
config.winrm.password = "Passw0rd!"
# This one may not be necessary, I added it for completeness
+ config.vm.guest = :windows
# In order to USE the two CPUs you need the ioapic
# Virtualbox gives an error in the GUI and only shows 1 CPU in the VM otherwise
vb.customize ["modifyvm", :id, "--cpus", "2"]
+ vb.customize ["modifyvm", :id, "--ioapic", "on"]
# We had to modify the network range because we are running Virtualbox inside VMware
+ vb.customize ["modifyvm", :id, "--natnet1", "192.168.199.0/24"]
+ 記号を削除し、それらの行を上記の Vagrantfile に追加すると、私が使用しているものと同等の動作システムが得られるはずです。