Guest User

Untitled

a guest
Feb 17th, 2018
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. I had to use the `qemu-convert` utility to convert between virtual file system formats.
  2.  
  3. This was my specific command
  4.  
  5. qemu-img convert -f qcow -O vmdk Windows-7.qcow ~/Windows-7.vmdk
  6.  
  7. Let's unpack how it works
  8. `
  9. qemu-img convert -f $format_read -O $format_write $infile $outfile
  10. `
Add Comment
Please, Sign In to add comment