按照这个教程: http://jingyan.baidu.com/article/eae07827856ac21fed54856f.html 安装. 会出现问题:"VT-x is disabled in the BIOS for both all CPU modes " 这个问题是cpu没有开启虚拟化技术.解决办法: 1. 重启,进入bios2. 进入高级,cpu配置,找到Intel Virtualization Technology(VT-x)英特尔虚拟化技术选项,开启. 设置好共享
Windows Server 2008 R2 数据离机备份与恢复操作手册 实验环境 Windows server 2008 R2(服务器) IP地址:192.168.136.175 计算机名:CXH Windows server 2008 R2(备份机) IP地址:192.168.136.178 计算机名:WIN-S5663KIF8BL 实验目的 将服务器中的数据定期备份到备份机实现离机备份操作. 实验说明 本次实验为虚拟机环境下的备份操作与实际有许多不同点会在实验过程中讲明. 实验步骤如下 备
1.线程范围内共享变量 1.1 前奏: 使用一个Map来实现线程范围内共享变量 public class ThreadScopeShareData { static Map<Thread, Integer> dataMap = new HashMap<Thread, Integer>(); public static void main(String[] args) { for (int i = 0; i < 2; i++) { new Thread(new Runnable