Windows

使用 vagrant 和 chef 在 Ubuntu 中設置 Windows VM

  • December 26, 2012

我正在執行 Ubuntu,我想通過 Vagrant 和 Chef 在 Virtualbox 中設置一個 VM。我想我缺少的是我擁有的 Windows Server 2008 R2 x64 試用版的 .box。

有誰知道我在哪裡可以找到一個.box?如果沒有,我將如何為 Windows Server 2008 建構 Vagrant .box?

我最近不得不使用 Chef 配置為 Windows Server 2008 R2 建構一個 Vagrant .box。我在這裡寫了一篇關於我的經歷的部落格。正如 Henk 所提到的,您首先需要使用veewee模板創建 basebox。我推薦使用 windows-2008R2-serverstandard-amd64-winrm 模板。

使用 Windows 分發 .box 是非法的。公共/免費盒子可以在Vagrantbox.es網站上找到

您可以嘗試使用veewee建構自己的盒子。veewee 的作者在此影片中展示了他如何建構 Windows7 盒子:veewee 做 windows7,因此 Windows Server 2k8也可能是可能的,因為 veewee 中有可用的模板:

# veewee templates
... snip ...
vagrant basebox define '<boxname>' 'windows-2008R1-serverstandard-amd64'
vagrant basebox define '<boxname>' 'windows-2008R2-amd64'
vagrant basebox define '<boxname>' 'windows-2008R2-serverstandard-amd64'

當然,您還需要 W2k8 DVD 或 ISO 映像。

引用自:https://serverfault.com/questions/331953