Skip to content

Instantly share code, notes, and snippets.

View FigmentEngine's full-sized avatar
🧐

Fitz FigmentEngine

🧐
View GitHub Profile
@FigmentEngine
FigmentEngine / rasp_pi_fed_install.sh
Created May 27, 2012 19:58
Raspberry PI Fedora install to SD card
# download from http://www.raspberryprojects.com/downloads (http://www.raspberryprojects.com/files/raspberrypi-fedora-remix-14-r1.img.gz)
gunzip raspberrypi-fedora-remix-14-r1.img.gz
# normally mounted as /dev/sdb1 - want whole device rather than just first partion
dd if=raspberrypi-fedora-remix-14-r1.img of=/dev/sdb
@FigmentEngine
FigmentEngine / TMUXonEC2.sh
Created April 27, 2012 15:54
Install TMUX on Amazon Linux (EC2)
wget https://github.com/downloads/libevent/libevent/libevent-2.0.18-stable.tar.gz
tar zxf libevent-2.0.18-stable.tar.gz
cd libevent-2.0.18-stable
sudo ./configure
sudo ./make
DIR="/home/ec2-user/downloads/libevent-2.0.18-stable"
wget http://downloads.sourceforge.net/tmux/tmux-1.6.tar.gz
tar zxf tmux-1.6.tar.gz
cd tmux-1.6
@FigmentEngine
FigmentEngine / install-weighttp.sh
Created December 23, 2011 09:56
weighttp: ev library not found.
# install weighttp
git clone https://github.com/lighttpd/weighttp
wget http://dist.schmorp.de/libev/libev-4.04.tar.gz
tar xvf libev-4.04.tar.gz
cd libev-4.04
sudo ./configure
sudo make
sudo make install
cd ../weighttp
./waf configure