Skip to content

Instantly share code, notes, and snippets.

@Voronenko
Created January 13, 2021 10:00
Show Gist options
  • Save Voronenko/3a5ffcb1d3d3ed1d4b97bca5f57b8199 to your computer and use it in GitHub Desktop.
Save Voronenko/3a5ffcb1d3d3ed1d4b97bca5f57b8199 to your computer and use it in GitHub Desktop.
Notes on cloning bootable ESX stick
#!/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