This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# this lets you easily convert a virtual disk image into a physical disk. | |
# | |
# # Usage for converting a vmdk on the host to an attached physical USB disk | |
# | |
# vagrant up | |
# vagrant ssh | |
# qemu-img info /vagrant/box-disk1.vmdk | |
# sudo qemu-img info /dev/sdb | |
# sudo qemu-img convert -p /vagrant/box-disk1.vmdk /dev/sdb | |
# |
NewerOlder