From 8d33577d3822169f2c53c97cbfb68acb11232b76 Mon Sep 17 00:00:00 2001 From: Wasif Hasan Baig Date: Mon, 3 Jul 2017 16:48:32 -0700 Subject: [PATCH] Added option to download create-coreos-vdi script using curl. --- os/booting-on-virtualbox.md | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/os/booting-on-virtualbox.md b/os/booting-on-virtualbox.md index 80653eba1..ad4af3ce9 100644 --- a/os/booting-on-virtualbox.md +++ b/os/booting-on-virtualbox.md @@ -8,10 +8,17 @@ There is a script that simplify the VDI building. It downloads a bare-metal imag The script is located on [GitHub](https://github.com/coreos/scripts/blob/master/contrib/create-coreos-vdi). The running host must support VirtualBox tools. -As first step, you must download and make it executable. +As first step, download the script using either `wget` or `curl`. ```sh wget https://raw.githubusercontent.com/coreos/scripts/master/contrib/create-coreos-vdi +# OR +curl https://raw.githubusercontent.com/coreos/scripts/master/contrib/create-coreos-vdi > create-coreos-vdi +``` + +Then make it executable. + +```sh chmod +x create-coreos-vdi ```