virtualbox怎么用,分享使用流程!

访客4年前黑客工具416

virtualbox是类似vmware workstation的虚拟机软件,而且是开源的,支持多平台,在win10上也能顺畅运行。win10上安装vagrant能在终端xshell上像linux一样命令行操作,也便于开发环境的切换,很不错。

vagrant怎么用?

1,下载安装

vagrant下载:http://www.vagrantup.com/downloads.html

virtualbox下载:http://www.virtualbox.org/wiki/Downloads

2,vagrant类似docker,当然你也可以像vmare workstation一样用它

vagrant操作box来启动虚拟机,box类似docker的image。

box官方下载地址http://www.vagrantbox.es,当然可能没有你喜欢的版本或你不信任这些box,可以自己 *** 。

3, *** 自己的box(此例基于virtualbox,方便;vmware也行,稍微麻烦一些)

首先,在virtualbox上安装虚拟机,比如到debian官网下载镜像,然后挂载镜像安装即可。

可做一些简单的调优,去掉u *** /音频设备,开发中很少用到;安装步骤就不多说了,中间按提示操作即可。

随后,以root账号进入系统(这里是debian9.5)

(1)替换阿里源

cd /etc/apt/

cp source.list source.list.bk

vi source.list

deb http://mirrors.aliyun.com/debian stretch main contrib non-free

deb-src http://mirrors.aliyun.com/debian stretch main contrib non-free

deb http://mirrors.aliyun.com/debian stretch-updates main contrib non-free

deb-src http://mirrors.aliyun.com/debian stretch-updates main contrib non-free

deb http://mirrors.aliyun.com/debian stretch-backports main non-free contrib

deb-src http://mirrors.aliyun.com/debian stretch-backports main non-free contrib

deb http://mirrors.aliyun.com/debian-security stretch/updates main contrib non-free

deb-src http://mirrors.aliyun.com/debian-security stretch/updates main contrib non-free

(2)更新系统并安装一些用到的工具

apt-get update -y

apt upgrade -y

apt install -y vim net-tools wget git sudo

(3)为 *** box做准备

创建vagrant用户

adduser vagrant

添加vagrant用户的公共密钥

mkdir -m 0700 -p /home/vagrant/.ssh

wget http://raw.githubusercontent.com/mitchellh/vagrant/master/keys/vagrant.pub -O /home/vagrant/.ssh/authorized_keys

chmod 600 /home/vagrant/.ssh/authorized_keys

chown -R vagrant:vagrant /home/vagrant/.ssh

设置sudoers

echo "vagrant ALL=(ALL) NOPASSWD: ALL" >> /etc/sudoers

(4)安装VBoxGuestAdditions,这个类似vmware workstation的vmtools

下载:http://download.virtualbox.org/virtualbox/5.2.18/VBoxGuestAdditions_5.2.18.iso

挂载到虚拟机光驱

mkdir -p /mnt/cdrom

mount /dev/cdrom /mnt/cdrom

yum install -y gcc kernel-devel

cd /mnt/cdrom

./VBoxLinuxAdditions.run

装完后重启一下(其实也不用,是重启很快)

apt clean 清理缓存包

随后关机

如果不装VBoxGuestAdditions,回头vagrant up启动时会报错:

Vagrant was unable to mount VirtualBox shared folders. This is usually

because the filesystem "vboxsf" is not available. This filesystem is

made available via the VirtualBox Guest Additions and kernel module.

Please verify that these guest additions are properly installed in the

guest. This is not a bug in Vagrant and is usually caused by a faulty

Vagrant box. For context, the command attempted was:

mount -t vboxsf -o uid=1000,gid=1000 vagrant /vagrant

The error output from the command was:

mount: unknown filesystem type 'vboxsf'

4,开始 *** box

进入虚拟机文件目录,这里是C:UserslVirtualBox VMscentos7.5

命令格式:

vagrant package --base --output

xhsell里

cd C:UserslVirtualBox VMscentos7.5

vagrant package --base debian9.5 --output debian9.5.box

不一会儿就生成了box文件,自己做的有点大,700M,将其移到D:debianbox目录

5,vagrant来操作box

xshell里

cd D:debianbox

添加box

vagrant box add debian9 debian9.5.box

查看box列表

vagrant box list

初始化虚拟机,在目录下会生成Vagrantfile

vagrant init debian9

启动虚拟机

vagrant up

查看当前状态

vagrant status

vagrant常用命令:

vagrant box add 添加box

vagrant init 初始化box

vagrant up 启动本地环境

vagrant ssh 通过ssh登录本地环境所在虚拟机(xshell显示不出来,??)

vagrant halt 关闭本地环境

vagrant suspend 暂停本地环境,虚拟机内存等信息将以状态文件的方式保存在本地,可以执行恢复操作后继续使用

vagrant resume 恢复本地环境,与前面的暂停相对应

vagrant reload 修改了Vagrantfile后,使之生效,重新加载

vagrant destroy 彻底移除本地环境,删除后在当前虚拟机所做进行的除开Vagrantfile中的配置都不会保留

vagrant box list 显示当前已经添加的box列表

vagrant box remove 删除相应的box

vagrant package 打包命令,可以把当前的运行的虚拟机环境进行打包

vagrant plugin 用于安装卸载插件

vagrant status 获取当前虚拟机的状态

vagrant global-status 显示当前用户Vagrant的所有环境状态

6,用xshell连接虚拟机(这里要在virtualbox界面配置该虚拟机的 *** ---高级---端口转发)

Windows 终端并不支持SSH,所以需要安装第三方SSH客户端, 比如:Xshell,Putty,Cmder, 这里是Xshell

在Xshell里面新建连接,然后输入IP:127.0.0.1,端口号:2222,都是默认的

选择Public Key登录, 在用户密钥处 点击浏览 , 选择刚刚配置虚拟机目录下的子目录 .vagrantmachinesdefaultirtualboxprivate_key , 然后确认登陆即可

如果想使用账户密码登录 , 可以进入虚拟系统后 , 修改 /etc/ssh/sshd_config , 设置 PasswordAuthentication yes

vagrant+virtualbox使用小记

 

相关文章

在淘宝开店要多少钱?淘宝开店流程及费用

新手淘宝开店需要多少钱?无货源开店详细流程步骤 淘宝开店是免费的,不收取任何服务费用。注册店铺的流程为: 1、百度搜索淘宝网,点击官网进入。   2、在登录页面,输入淘宝账户及密码登录,如果忘记密...

什么是定向增发股票(什么是定向增发及定增流

什么是定向增发股票(什么是定向增发及定增流

定向增发这个词相信大家并不陌生, 但很多人只知其表,不解其内,那么今天就来为大家解惑答疑吧! 定向增发,即非公开发行,是指上市公司采用非公开方式,向特定对象发行股票的行为。基本特点:发行对象...

怎么加入滴滴专车?申请滴滴详细的办理流程以

胶东在线消息 近日,问题编号为826339的网友留言咨询:注册滴滴打车司机都需要办理什么证件? 烟台市交通运输管理处对此回复:网民朋友,您好!烟台市区内从事网约车服务的驾驶员,应当符合下列条件,并经...

怎么淘宝开网店?2019淘宝开店最新流程

怎么淘宝开网店?2019淘宝开店最新流程

若您想开淘宝店铺,快速开店5步骤详见下文: 第一步:注册淘宝账户。(温馨提醒:会员名一旦注册成功,是无法修改的哦) 1、账户未登录情况下,点击淘宝网首页左上角【免费注册】。 2、根据页面提示...

网站搭建需要哪些流程,新手必看!

网站搭建需要哪些流程,新手必看!

在这个互联网时代,搭建网站已经非常普遍。随着技术的不断提升,搭建网站的方法也越来越多,要求越来越严苛,既要美观的页面,又要快速便宜,甚至免费。今天小编就为大家再来详细地讲述下,作为一个新手,如何进行建...

滴滴打车加盟条件是什么(滴滴打车加盟流程是

滴滴打车加盟条件是什么(滴滴打车加盟流程是

共享单车的出现,直接让滴滴打车的业务量只想下降,特别是一些短途的业务。在几公里的短距离的路程里,人们更多的是喜欢骑共享单车。特别是在滴滴收购优步之后,不断的在涨价,让用户就更加的不喜欢去使用滴滴了。...