Created
January 13, 2021 10:00
-
-
Save Voronenko/3a5ffcb1d3d3ed1d4b97bca5f57b8199 to your computer and use it in GitHub Desktop.
Notes on cloning bootable ESX stick
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
#!/bin/bash | |
# existing stick to image on hdd | |
sudo dd if=/dev/sdc of=/home/slavko/usb-esxi67-8G.img bs=1M status=progress | |
# from image on hdd to existing stick | |
sudo dd if=/home/slavko/usb-esxi67-8G.img of=/dev/sdc bs=4M status=progress |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment