三、vagrant工具

除了docker-image可以快速远程操作创建和删除linux系统外,还有vagrant也可以
https://www.vagrantup.com/docs/virtualbox/

一、安装

二、下载实例。

可以到上面找自己需要的实列
https://app.vagrantup.com
官方封装好的实例:
http://www.vagrantbox.es

三、常用命令

1.sudo vagrant init ubuntu/16.04

A Vagrantfile has been placed in this directory. You are now
ready to vagrant up your first virtual environment! Please read
the comments in the Vagrantfile as well as documentation on
vagrantup.com for more information on using Vagrant.

会初使化一下Vagrantfile 一个文件,这个文件是描述了我们要去创建一个什么样子的虚拟机。

2.sudo vagrant up

直接会启动虚拟机。如果本地没有会到远程去下载并启动

3.启动好了。直接运行 sudo vagrant ssh 

可直接进入 刚创建好的虚拟机

碰到的一些问题
https://www.cnblogs.com/xishuai/p/macos-use-vagrant-with-virtualbox.html

你可能感兴趣的:(三、vagrant工具)