Wednesday, September 24, 2008

Lightbot

196 commands first try all 12 levels.

Cisco VPN From Ubuntu

sudo apt-get update
sudo apt-get build-dep vpnc
sudo apt-get install libssl-dev fakeroot
mkdir ~/src/vpnc -p
cd ~/src/vpnc
apt-get source vpnc
cd vpnc-*

Edit the Makefile and uncomment 2 lines that have "OPENSSL" in the beginning of the line

dpkg-buildpackage
sudo dpkg -i ../vpnc*.deb

Edit /etc/vpnc/default.conf

IPSec gateway 10.10.10.10
IPSec ID GROUPNAME
IPSec secret ########
IKE Authmode psk
Xauth username johndoe
Xauth password ########

Type "sudo vpnc"

To add foo.com to search path:

sudo echo "foo.com" >> /etc/resolvconf/head

Monday, September 22, 2008

VPS Updates

- rails with passenger
- openmbp deployment space up
- capistrano support for the git code base
- continuous integration with cruisecontrol.rb

Power APT-GET

Compile custom package newer than repos version? No problem. Check this out

git clone git://git.kernel.org/pub/scm/git/git.git

Gets git source.

Git's package in ubuntu is called git-core

This command gets you all the dependencies to BUILD git-core -- sudo apt-get build-dep git-core

Dopeness.

Friday, September 19, 2008

VPS

Sites:

- icsalumni.org running moinmoin 1.72
- jianshi.org in migration
- community domain
- local gitorious hosting

Software
- Apache2 with php, fastcgi, modwsgi, Passenger Phusion
- Ruby latest stable (1.87), Rails 2.1, Postgres, Mysql
- Git

Whew... More to come soon guys!

Tuesday, September 2, 2008

Holy Grail

Brah... LOLOLOLOL good stuff

find . -type d -name '.svn' -print0 | xargs -0 rm -rdf