This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 |