1. ホーム
  2. virtualbox

[解決済み] Vagrantのコマンドは具体的に何をするのですか?

2023-01-31 09:29:01

質問

Vagrantのコマンドが何をするものなのか、チュートリアルのquot;geting started"を参照する以外には、驚くほどドキュメントがありません。

ここまでで解決したこと。

  • box - は、" を管理します。 ボックス "
  • destroy - VM をシャットダウンし、その保存されたイメージを削除しますか。
  • gem
  • halt - VMをシャットダウンする
  • init - 新しいVagrantfileのあるディレクトリを用意します。
  • package - VM をシャットダウンして、箱にできる 'パッケージ' に変換する?(または何か)
  • provision - プロビジョニング (例: Chef、Puppet...) の段階だけを実行します。
  • reload - VMの設定変更(例:Vagrantfileの再適用)、VMの再起動、再ビジョン化
  • resume - サスペンド解除 (例: Unibernate)
  • ssh - VM への SSH シェル接続を開始します。
  • ssh-config
  • status
  • suspend - VM をハイバネートする
  • up - 一部または全部: VM イメージをコピーして新しい VM を作成し、設定を適用し、ブートする

これらは正しいですか。他には何があるのでしょうか。の正確な違いについてまだ少し不明です。 reloaddestroy / up .

どのように解決するのですか?

いつから変わったのかわかりませんが、現在のバージョン(1.6.3)では、ちゃんとコマンドのリストがあり、実行すると vagrant list-commands を実行すると、さらに完全なリストが表示されます。

box             manages boxes: installation, removal, etc.
connect         connect to a remotely shared Vagrant environment
destroy         stops and deletes all traces of the vagrant machine
docker-logs     outputs the logs from the Docker container
docker-run      run a one-off command in the context of a container
global-status   outputs status Vagrant environments for this user
halt            stops the vagrant machine
help            shows the help for a subcommand
init            initializes a new Vagrant environment by creating a Vagrantfile
list-commands   outputs all available Vagrant subcommands, even non-primary ones
login           log in to Vagrant Cloud
package         packages a running vagrant environment into a box
plugin          manages plugins: install, uninstall, update, etc.
provision       provisions the vagrant machine
rdp             connects to machine via RDP
reload          restarts vagrant machine, loads new Vagrantfile configuration
resume          resume a suspended vagrant machine
rsync           syncs rsync synced folders to remote machine
rsync-auto      syncs rsync synced folders automatically when files change
share           share your Vagrant environment with anyone in the world
ssh             connects to machine via SSH
ssh-config      outputs OpenSSH valid configuration to connect to the machine
status          outputs status of the vagrant machine
suspend         suspends the machine
up              starts and provisions the vagrant environment
version         prints current and latest Vagrant version

を実行したときに、完全なリストから省かれる唯一のコマンドは次のとおりです。 vagrant を単体で実行した場合、dockerとrsyncのコマンドだけが完全なリストから外れます。私のシステムでは、とにかく、です。

それが今、決定的な答えのようです。