Skip to content
This repository has been archived by the owner on Feb 12, 2021. It is now read-only.

Added option to download create-coreos-vdi script using curl. #1117

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion os/booting-on-virtualbox.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
```

Expand Down