Skip to content

Instantly share code, notes, and snippets.

View charlesflynn's full-sized avatar

Charles Flynn charlesflynn

View GitHub Profile
Set-WindowsExplorerOptions -EnableShowHiddenFilesFoldersDrives -EnableShowProtectedOSFiles -EnableShowFileExtensions -EnableShowFullPathInTitleBar
Enable-MicrosoftUpdate
Install-WindowsUpdate
Set-TaskbarOptions -Size Small -Lock -Dock Bottom
cinst 7zip.install
cinst binroot
cinst bleachbit
cinst boxstarter
cinst bulkrenameutility.install
### Keybase proof
I hereby claim:
* I am charlesflynn on github.
* I am charlesflynn (https://keybase.io/charlesflynn) on keybase.
* I have a public key whose fingerprint is FC0F E6DB C33D 2473 5232 F489 17D6 7311 B16C 984F
To claim this, I am signing this object:
@charlesflynn
charlesflynn / gist:ca0ae86c53d42fcabd04
Created July 31, 2014 20:34
agiledata build with vagrant_log=debug
This file has been truncated, but you can view the full file.
INFO global: Vagrant version: 1.6.3
INFO global: Ruby version: 2.0.0
INFO global: RubyGems version: 2.0.14
INFO global: VAGRANT_DOTFILE_PATH="/home/cflynn/.vagrant"
INFO global: VAGRANT_MOUNT="/home/cflynn"
INFO global: VAGRANT_EXECUTABLE="/opt/vagrant/bin/../embedded/gems/gems/vagrant-1.6.3/bin/vagrant"
INFO global: VAGRANT_LOG="debug"
INFO global: VAGRANT_INSTALLER_EMBEDDED_DIR="/opt/vagrant/bin/../embedded"
INFO global: VAGRANT_INSTALLER_VERSION="2"
INFO global: VAGRANT_HOME="/home/cflynn/.vagrant.d"
@charlesflynn
charlesflynn / gist:5576114
Last active March 2, 2018 16:02
Resuming an existing Devstack installation on Ubuntu after reboot (assuming you have NOT run unstack.sh). IP addresses are the defaults used by stack.sh. In this example I'm using postgres as the database backend rather than the default mysql.
sudo ip addr flush dev br-ex
sudo sysctl -w net.ipv4.ip_forward=1
sudo ip addr add 172.24.4.225/28 dev br-ex
sudo ip link set br-ex up
sudo route add -net 10.0.0.0/24 gw 172.24.4.226
sudo service rabbitmq-server start
sudo service postgresql start
sudo service apache2 start
export SERVICE_TOKEN=password
export OS_TENANT_NAME=demo
@charlesflynn
charlesflynn / gist:5576026
Created May 14, 2013 13:53
Testing a fresh Openstack/Devstack installation.
# Allow ping and ssh
nova secgroup-add-rule default icmp 0 0 0.0.0.0/0
nova secgroup-add-rule default tcp 22 22 0.0.0.0/0
# Add dsa key
nova keypair-add --pub-key ~/.ssh/id_dsa.pub `whoami`-dsa
# Grab and import the precise cloud image
curl -O http://cloud-images.ubuntu.com/precise/current/precise-server-cloudimg-amd64-disk1.img
glance image-create --name precise64 --disk-format=qcow2 --container-format=bare --is-public=True < ./precise-server-cloudimg-amd64-disk1.img