facebook twitter hatena line email

「仮想サーバ/vagrant」の版間の差分

提供: 初心者エンジニアの簡易メモ
移動: 案内検索
行3: 行3:
  
 
==Vagrantfile作成==
 
==Vagrantfile作成==
 +
作業ディレクトリを作成してその中にVagrantfileを作成
 +
 
  $ vi Vagrantfile
 
  $ vi Vagrantfile
 
  Vagrant.configure("2") do |config|
 
  Vagrant.configure("2") do |config|

2016年2月8日 (月) 10:36時点における版

vagrantダウンロード

https://www.vagrantup.com/downloads.html

Vagrantfile作成

作業ディレクトリを作成してその中にVagrantfileを作成

$ vi Vagrantfile
Vagrant.configure("2") do |config|
 config.vm.box = "hashicorp/precise64"
end

仮想マシン起動

$ vagrant up