创建虚拟化Ruby开发环境工具 Vagrant

fmms 12年前
     <div id="p_fullcontent" class="detail">     <p>Vagrant是一个基于Ruby的工具,用于创建和部署虚拟化开发环境。它 使用Oracle的开源VirtualBox虚拟化系统,使用 Chef创建自动化虚拟环境。</p>     <ul>      <li>Automated virtual machine creation using <a href="/misc/goto?guid=4958187332381492402">Oracle’s VirtualBox</a></li>      <li>Automated provisioning of virtual environments using <a href="/misc/goto?guid=4959517476305320939">Chef</a>, <a href="/misc/goto?guid=4959517476393206882">Puppet</a>, or just shell scripts!</li>      <li>Full SSH access to created environments</li>      <li>Assign a static IP to your VM, accessible from your machine</li>      <li>Forward ports to the host machine</li>      <li>Shared folders allows you to continue using your own editor</li>      <li>Package environments into distributable boxes</li>      <li>Completely tear down environment when you’re done</li>      <li>Easily rebuild a complete environment with a single command</li>     </ul>     <p>安装方法:</p>     <p>sudo gem install vagrant<br /> vagrant box add base http://files.vagrantup.com/base.box<br /> mkdir vagrant<br /> vagrant init<br /> vagrant up<br /> <br /> </p>     <p><strong>项目主页:</strong><a href="http://www.open-open.com/lib/view/home/1326986450312" target="_blank">http://www.open-open.com/lib/view/home/1326986450312</a></p>    </div>