Go のインストール

ビルド環境構築

 $ sudo aptitude install bison build-essensial

mercurial インストール

 $ sudo aptitude mercurial

環境変数の設定

 $ cd
 $ mkdir bin
 $ mkdir go
 $ export GOROOT=$HOME/go
 $ export GOARCH=386
 $ export GOOS=linux
 $ export GOBIN=$HOME/bin
 $ export PATH=$PATH:$GOBIN

Go のリポジトリ取得

 $ hg clone -r release https://go.googlecode.com/hg $GOROOT

Go のビルド

 $ cd go/src
 $ ./all.bash