diff --git a/Boot-HermitCore-from-a-raw-image.md b/Boot-HermitCore-from-a-raw-image.md index e113beb..94c8e92 100644 --- a/Boot-HermitCore-from-a-raw-image.md +++ b/Boot-HermitCore-from-a-raw-image.md @@ -91,13 +91,13 @@ Now, you have to pack the image with `tar -cSzf disk.tar.gz disk.raw` to a tar f gsutil mb gs://[BUCKET_NAME]/ ``` -Please, replace `[BUCKET_NAME]` with an appropriate name. Upload the tar file to the cloud storage. +Please, replace `[BUCKET_NAME]` with an appropriate name and upload the tar file to the cloud storage. ```bash gsutil cp disk.tar.gz gs://[BUCKET_NAME]/ ``` -Create from this tar file an image, which we want to use as boot disk for the virtual machine. +Create from this file an image, which we want to use as boot disk for the virtual machine. ```bash gcloud compute --project "[PROJECT_ID]" images create "[IMAGE_NAME]" --description "Image Description" --source-uri "https://storage.googleapis.com/[BUCKET_NAME]/disk.tar.gz"