VirtualBox + vagrant安装centos使用国内镜像加速操作步骤

使用vagrant默认的镜像仓库下载实在是太慢了, 所以可以使用国内镜像源来提升自己的部署效率.

  1. 安装vagrant
    地址: https://www.vagrantup.com/downloads
    下载对应版本的vagrant, 安装后根据提示重启电脑即可
  2. 从国内镜像下载对应的box
    地址: http://mirrors.ustc.edu.cn/centos-cloud/centos/7/vagrant/x86_64/images/
    我使用的是virtualbox来做虚拟化, 所以我找的版本也是对应的VirtualBox版本.
    镜像列表
  3. 到下载的box目录执行如下命令
1. vagrant box add centos7 .\CentOS-7-x86_64-Vagrant-1905_01.VirtualBox.box
2. vagrant init centos
3. vagrant up

顺利执行完, 可以在VirtualBox中看到虚拟机已经就绪.


VirtualBox

你可能感兴趣的:(VirtualBox + vagrant安装centos使用国内镜像加速操作步骤)