5
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Vagrant でgui-MODE

Last updated at Posted at 2014-07-15

次の3工程で起動させます。
vagrant box へ登録 vagrant box add [boxファイルURL]
vagrant 初期化 vagrant init <vms名
vagrant で対象の起動 vagrant up

設定 (Vagrantfile)
仮想ウィンドウを起動したい仮想マシーンのフォルダにある設定ファイル「Vagrantfile」をテキストエディタで編集します。 だいたい47行目あたりにある行のコメントを次のように外します。



config.vm.provider :virtualbox do |vb|
  # Don't boot with headless mode
  vb.gui = true
#
#   # Use VBoxManage to customize the VM. For example to change memory:
#   vb.customize ["modifyvm", :id, "--memory", "1024"]
end

編集を保存し、vagrant up コマンドで仮想マシーンを起動しましょう。 すると、今までとは違い仮想ウィンドウが表示されます。

5
5
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
5
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?