下载当前版本的Drupal Vagrant并将其解压缩到您选择的目录中。 根据以下准则编辑Vagrantfile
:
config.vm.box = "lucid32" // References the right box
...
config.vm.network :hostonly, "33.33.33.10" // Creates a machine with this IP
然后,启动虚拟vagrant up
并启动vagrant up
,让Vagrant处理所有事情(启动VM,获取必要的应用程序,配置所有程序等)。
更新您的etc / hosts文件,使以下2个域指向33.33.33.10。
33.33.33.10 drupal.vbox.local
33.33.33.10 dev-site.vbox.local
在此过程结束时(可能很长),在主机系统上浏览到http://drupal.vbox.local/install.php应该会带您熟悉的Drupal安装屏幕。 轮到你了!