红联Linux门户
Linux帮助

怎么在Ubuntu上安装vagrant

发布时间:2016-06-26 15:30:05来源:topspeedsnail.com作者:斗大的熊猫

Vagrant是一个搭建完整的虚拟开发环境的工具,通常简写为VDE(Virtual Development Environment)。Vagrant节省大量重建操作系统环境的时间,它也是一个配置中心,允许你使用一个相同的配置管理和部署多个VDE。安装Vagrant的同时,你也需要安装VirtualBox,因为它是Vagrant的核心功能组建。


安装VirtualBox:

$ sudo apt-get install virtualbox


安装Vagrant:

$ sudo apt-get install vagrant

或者到官方Download Vagrant:https://www.vagrantup.com/downloads.html

怎么在Ubuntu上安装vagrant


部署开发环境:

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


启动Vagrant:

$ vagrant init

注意:vagrant init通过把Vagrant文件放到合适的目录来设置Vagrant环境。


启动:

vagrant up


本文永久更新地址:http://www.linuxdiyf.com/linux/21861.html