如何在 macbook pro 中 运行 docker 时启用虚拟化功能

how to enable virtualization capabilities when running docker in macbook pro

我想 运行 docker 在我的 macbook pro.but 中出现错误。

首先,我认为我的cpu没有虚拟化capabilities.but当我运行"sysctl -a | grep machdep.cpu.features",我发现我错了

我的 cpu 有 VMX.So,谁能告诉我如何在我的计算机中启用虚拟化功能 运行 docker。 另外,我的笔记本电脑是mackbook7.1(13寸,2010年中) 期待您的回答。

官方文档在这里:What to know before you install.

这个thread mentions:

The Getting Started document describes the following prerequisites:

  • Mac must be a 2010 or newer model, with Intel’s hardware support for memory management unit (MMU) virtualization; i.e., Extended Page Tables (EPT)

我对 MMU 和 EPT 部分做了一些研究。从 https://en.wikipedia.org/wiki/X86_virtualization31 我发现 EPT 是 VT-x 的一部分。 MMU 是 VT-d 的一部分。
简而言之,这意味着 CPU 应该同时支持 VT-x 和 VT-d。

由于 "Mac must be a 2010 or newer model..." 描述了要求,我假设我是安全的。无论哪种方式,我都能够在我的 iMac 中查找有关 CPU 的更多信息。使用 sysctl 命令可为您提供有关 CPU 型号的信息,在我的例子中是英特尔酷睿 i5-760 处理器。

$ sysctl -n machdep.cpu.brand_string
Intel(R) Core(TM) i5 CPU         760  @ 2.80GHz

This model information can be used on the Intel Ark website to look up specific details of the processor. For example: http://ark.intel.com/products/48496/Intel-Core-i5-760-Processor-8M-Cache-2_80-GHz199. If you've got another CPU, go to ark.intel.com and use the search box to enter your model.

On the details page, I noticed under the "Advanced Technologies" part my CPU does support VT-x but doesn't support VT-d.

So that would be explaining why Docker for Mac won't run on my iMac.

注意:如果支持 EPT、VT-d 和 VT-x,请检查您的 BIOS 以启用它们。

XHyve 需要 Hypervisor 框架:

On OS X, the way of knowing if your CPU complies with all the Hypervisor.framework requirements is by checking the value of the sysctl kern.hv_support key.

$ sysctl kern.hv_support
kern.hv_support: 1
  • If it is 1, then your CPU is supported.
  • If it is 0, it means the Hypervisor.framework cannot be used with your CPU, for a reason or another.