Skip to content

Instantly share code, notes, and snippets.

@Austinpayne
Austinpayne / gist:466c0f0fbc09fb4e982da1af6d749727
Last active May 23, 2017 06:00 — forked from reidransom/gist:6042016
Auto-starting VirtualBox VMs on OS X

Auto-starting VirtualBox VMs on OS X

After finding a lot of other posts on the topic that didn't work out for me this one did the trick so I'm reposting for my own sense of self preservation.

Tested on OS X El Capitan 10.11.6

Link to original article.

Copy the Virtualbox autostart plist template file to your system's LaunchDaemons folder.

Keybase proof

I hereby claim:

  • I am austinpayne on github.
  • I am austinpayne (https://keybase.io/austinpayne) on keybase.
  • I have a public key ASDwiS4xdXL6EH6wyuegKHoOiOagVkJb0Vp1wAp6kAo04go

To claim this, I am signing this object:

@Austinpayne
Austinpayne / Dockerfile
Created August 24, 2021 19:27
serf write udp network is unreachable reproducible
FROM golang:1.17.0
RUN apt update && \
apt install -y net-tools && \
apt clean && rm -rf /tmp/* /var/lib/apt/lists/* /var/tmp/*
RUN cd /tmp && \
git clone https://github.com/hashicorp/serf.git && \
cd serf && \
cd cmd/serf && \
@Austinpayne
Austinpayne / Dockerfile
Created August 24, 2021 19:55
serf write udp network is unreachable fixed
FROM golang:1.17.0
RUN apt update && \
apt install -y net-tools && \
apt clean && rm -rf /tmp/* /var/lib/apt/lists/* /var/tmp/*
RUN cd /tmp && \
git clone https://github.com/Austinpayne/serf.git && \
cd serf && \
git checkout fix/udp-net-unreachable && \