美文网首页
vagrant 常用命令

vagrant 常用命令

作者: 最怕认真 | 来源:发表于2019-08-14 11:00 被阅读0次
    $ vagrant init      # 初始化
    
    $ vagrant up        # 启动虚拟机
    $ vagrant halt      # 关闭虚拟机
    $ vagrant reload    # 重启虚拟机
    $ vagrant ssh       # SSH 至虚拟机
    $ vagrant suspend   # 挂起虚拟机
    $ vagrant resume    # 唤醒虚拟机
    $ vagrant status    # 查看虚拟机运行状态
    $ vagrant destroy   # 销毁当前虚拟机
    $ vagrant provision #重新加载配置
    
    #box管理命令
    $ vagrant box list    # 查看本地box列表
    $ vagrant box add     # 添加box到列表
    
    $ vagrant box remove  # 从box列表移除
    

    相关文章

      网友评论

          本文标题:vagrant 常用命令

          本文链接:https://www.haomeiwen.com/subject/bpzwjctx.html