vbox+vagrant+centos

安装】

1、官网下载链接

https://download.virtualbox.org/virtualbox/6.0.10/VirtualBox-6.0.10-132072-Win.exe

2、下载扩展包

https://download.virtualbox.org/virtualbox/6.0.10/Oracle_VM_VirtualBox_Extension_Pack-6.0.10.vbox-extpack

3、安装vbox

4、普通镜像安装centos

教程:https://blog.csdn.net/sinat_38798245/article/details/88103291

4.1、下载centos7

文章:https://www.jianshu.com/p/a63f47e096e8

直接下载地址:http://mirrors.aliyun.com/centos/7.6.1810/isos/x86_64/

5、windows10配置vagrant2 + virtualbox6 + homestead6

https://zhuanlan.zhihu.com/p/52952302

https://blog.csdn.net/u011781521/article/details/80275212

5.1、下载vagrant

https://www.vagrantup.com/downloads.html/

5.2、下载package.box系统镜像

http://www.vagrantbox.es/

5.3、把虚拟机添加到box容器中

在centos-7.0-x86_64.box目录下执行命令

vagrant box add centos7-1 centos-7.0-x86_64.box

vagrant box add --name centos7 centos-7.0-x86_64.box

 

6、初始化虚拟机

6.1、查看虚拟机列表 vagrant box list

6.2、vagrant init centos7-1

7、启动虚拟机

vagrant up

 

 

8、停止虚拟机

vagrant halt

9、在vbox启动虚拟机

默认用户名 : vagrant , 登录密码 : vagrant 

ROOT用户:root/vagrant

也可以用xshell链接虚拟机,登录密码用vbox

machine\centos7-1\.vagrant\machines\default\virtualbox下的private_key

 

 

你可能感兴趣的:(java,虚拟机)