facebook twitter hatena line email

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

提供: 初心者エンジニアの簡易メモ
移動: 案内検索
行15: 行15:
 
==仮想マシン起動==
 
==仮想マシン起動==
 
  $ vagrant up
 
  $ vagrant up
 +
 +
==仮想マシンにログイン==
 +
$ vagrant ssh

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

virtualboxインストール

virtualbox [ショートカット]]

vagrantダウンロード

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

Vagrantfile作成

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

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

仮想マシン起動

$ vagrant up

仮想マシンにログイン

$ vagrant ssh