LoginSignup
18
17

More than 5 years have passed since last update.

Vagrant基本コマンド

Last updated at Posted at 2013-07-28

Box追加

terminal Command
$ vagrant box add precise32 \
http://files.vagrantup.com/precise32.box

名前:precise32
追加元:http://files.vagrantup.com/precise32.box

box list
http://www.vagrantbox.es/

Box list表示

terminal Command
$ vagrant box list

初期化

terminal Command
$ vagrant init

sshログイン

terminal Command
$ vagrant ssh

仮想マシン起動

terminal Command
$ vagrant up

仮想マシン停止

terminal Command
$ vagrant halt

仮想マシン再起動

terminal Command
$ vagrant reload

仮想マシン削除

terminal Command
$ vagrant destroy

仮想マシンの状態確認

terminal Command
$ vagrant status

仮想マシンスリープ

terminal Command
$ vagrant suspend

仮想マシンスリープ解除

terminal Command
$ vagrant resume

随時追加予定

18
17
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
18
17