Skip to content

Instantly share code, notes, and snippets.

View chezbut's full-sized avatar

Zach Hanna chezbut

  • Taos
  • Boise, Idaho
View GitHub Profile
@jcberthon
jcberthon / docker-img-gc
Last active September 11, 2017 02:59 — forked from anildigital/gist:862675ec1b7bccabc311
Remove dangling docker images and volumes
docker images --quiet --filter=dangling=true | xargs --no-run-if-empty docker rmi
@andybateman
andybateman / ESXi6 in Hyper-V on Windows 10.md
Last active February 28, 2020 00:03
Installing ESXi 6.0 in to a Hyper-V Environment on Windows 10.1

Installing ESXi 6.0 in to a Hyper-V Environment on Windows 10.1

  1. Download fresh ESXI 6.0 ISO
  2. Download ESXi-Customizer-PS Link
  3. Download Tulip VIB for Hyper-V NICs Link
  4. Create 1st Gen Hyper-V VM (Decent amount of RAM, 2vCPUs, 10GB VHD, Legacy Network Adapter)
  5. Configure the 'Legacy Network Adapter' with 'Mac Spoofing' enabled and Port Mirroring set to 'Source'
  6. Use the customizer to rebuild the ISO with the attached VIB
  7. Mount newly created ISO to DVD in VM
  8. Install ESXI 6.0
@pklaus
pklaus / rdns.py
Created March 11, 2012 12:32
This is a Python script that helps you create reverse DNS zone files for the Bind Name Server. See http://goo.gl/CJwly
#!/usr/bin/env python
"""
rdns.py
This is a Python script that helps you create
reverse DNS zone files for the Bind Name Server.
I published it together with this blog post: http://goo.gl/CJwly .
"""