创建虚拟机:http://www.linuxidc.com/Linux/2015-08/121807.htm
http://www.linuxidc.com/Linux/2010-04/25573.htm
=========xshell连接虚拟机===========
:参考资料:http://blog.sina.com.cn/s/blog_e128ae800102wo95.html
1在windows下用cmd--ipconfig查看VirtualBox Host-Only Network找到IPv4地址:192.168.56.1[一般都是这个]
2在虚拟机上的terminal--ifconfig查看eth0的inet addr:10.0.2.15[一般也都是这个]
3关掉虚拟机,在virtualbox中的菜单上找到控制--设置--网络,进入端口转发设置:
点击右面的按钮添加新规则
名称可以默认,协议使用TCP,主机IP:192.168.56.1,端口一般是:3331(随便啦),子系统IP:10.0.2.15,子系统端口也是:22
下图是xshell的配置
4ssh协议支持:在虚拟机上,
1)sudo apt-get update //完成系统的更新
2)安装ssh server:sudo apt-get install openssh-server
3)查看ssh服务起来了吗:ps -e grep ssh ,返回是:进程号 sshd
若ssh服务没起来,执行4),否则就不用了
4)sudo etc/init.d/ssh restart //为了保证ssh的状态成功起来,运行重启服务的指令()
=================
引申:若想在虚拟机上远程登录其他虚拟机,需要安装ssh client
sudo apt-get install openssh-client //可以安装ssh的客户端,这样可以使用linux去远程连接其他的机器
========复制虚拟机=
http://jingyan.baidu.com/article/b87fe19e7794b452183568b4.html
========docker 安装===
http://www.runoob.com/docker/ubuntu-docker-install.html
sudo usermod -aG docker zcy + 重启虚拟机
====加速器===
http://www.cnblogs.com/weschen/p/7134462.html
docker login https://r7kugqe4.mirror.aliyuncs.com(自己专属的加速器地址)