1

microstack.openstack image create --file filename.qcow2 --disk-format qcow2 "imagename"

This gives error as

[Error 13] Permission denied file path

vinay
  • 53
  • 1
  • 8

1 Answers1

5

I had the same error. The image file was in the downloads folder. The work around for me was to put the image in the folder microstack had access to. I copied the file image to /var/snap/microstack/common/images/. The cirros file that comes with microstack is also in that folder.

After copying the file, the image create was successful.

tariro
  • 51
  • 2
  • 4
  • 3
    And remember to give the full path as microstack.openstack image create --file /var/snap/microstack/common/images/name_of_image name – Indika K Dec 16 '22 at 13:47