From fa3144c719609af5dae4104669a869e3b2de0819 Mon Sep 17 00:00:00 2001 From: Eric Helgeson Date: Wed, 30 Mar 2022 13:42:47 -0500 Subject: [PATCH] Updated Usage (markdown) --- Usage.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Usage.md b/Usage.md index 4ac1f7c..cd5a3c9 100644 --- a/Usage.md +++ b/Usage.md @@ -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.