Updated Usage (markdown)

Eric Helgeson 2022-03-30 13:42:47 -05:00
parent b257fc0e3a
commit fa3144c719

@ -54,7 +54,7 @@ The following instructions demonstrates the process using [dd](https://ss64.com/
1. Open terminal.
2. The following command will create a blank disk image. You can modify the command to suit your use.
* `dd if=/dev/zero of=example.hda bs=1m count=500`
* NOTE: On Linux systems, if you receive the error `dd: invalid number: 1m`, you need to capitalize the 'm'.
* NOTE: On Linux systems, if you receive the error `dd: invalid number: '1m'`, you need to capitalize the 'm'.
* Example: `dd if=/dev/zero of=example.hda bs=1M count=500`
* The `count` field defines the number of megabytes (`bs=1m`) the total disk image should be.
* The output file from the command is "example.hda". This can be changed in the `of=example.hda` field.