vagrant入门教程--添加box到本地仓库(4)

box简介

box实际上是vagrant克隆一台虚拟机的基础镜像
vagrant开源社区提供了很多box的下载地址,使用国外的源添加box会遇到下载速度比较慢的情况,分享我下载的box文件,如下:

  • centos-6.5_chef_32.box
  • centos-6.5_chef_64.box
  • centos-7.0_chef.box
  • ubuntu_trusty_32.box
  • ubuntu_trusty_64.box

添加box

在命令行下添加box命令格式:

vagrant box add 自定义你的box名称  box路径

添加box到本地仓库有三种方式:

1 . 使用http远程添加

vagrant box add my_first_box  https://github.com/tommy-muehle/puppet-vagrant-boxes/releases/download/1.1.0/centos-7.0-x86_64.box

2 . 使用本地box文件

vagrant box add my_first_box D:/centos-7.0-x86_64.box

3 .使用中央仓库名称

vagrant box add my_first_box hashicorp/precise64

本文将演示使用第二种本地添加box文件的方式
vagrant入门教程--添加box到本地仓库(4)_第1张图片

接上篇文章vagrant入门教程–基本配置(3) ,添加box完成后,vagrant
将存储初始box
vagrant入门教程--添加box到本地仓库(4)_第2张图片

查看已添加的box

查看已添加的box,使用命令

vagrant box list

这里写图片描述

删除box

删除box使用如下命令:

vagrant box remove your_box_name

你可能感兴趣的:(vagrant,vagrant入门教程)