Vagrant 常用命令

$ vagrant init # 初始化

vagrant halt # 关闭虚拟机
vagrant reload --provision #修改配置后重加载
vagrant suspend # 挂起虚拟机
vagrant status # 查看虚拟机运行状态
$ vagrant destroy # 销毁当前虚拟机

box管理命令

vagrant box add # 添加box到列表

$ vagrant box remove # 从box列表移除

你可能感兴趣的:(Vagrant 常用命令)