From 213aa8f397312548b188e4468f2a51cb4b999285 Mon Sep 17 00:00:00 2001 From: Kristina Date: Fri, 14 Nov 2014 14:02:39 -0500 Subject: [PATCH 1/2] Update install instructions --- README | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/README b/README index da51fd9..98a0a44 100644 --- a/README +++ b/README @@ -14,20 +14,24 @@ COMPILE/INSTALL * Install go. +* Install prerequisites: + + go install code.google.com/p/go.crypto/ssh + go install github.com/hanwen/go-fuse/fuse + * Compiling: - cd /tmp + git clone https://github.com/hanwen/termite mkdir go ; cd go export GOPATH=$(pwd) - (cd bin/mkbox ; make ) + cd bin/mkbox; make for d in bin/coordinator bin/worker bin/master bin/shell-wrapper - done + do go install github.com/hanwen/termite/$d done sudo cp termite-make /usr/local/bin/ sudo cp bin/mkbox/mkbox /usr/local/bin/termite-mkbox sudo cp /tmp/go/bin/* /usr/local/bin/ - sudo cp /tmp/go/bin/* /usr/local/bin/ * Make needs to be patched to use termite's shell wrapper: From 769d04874a63a81627333296e5d2df26d3f67ced Mon Sep 17 00:00:00 2001 From: Kristina Date: Fri, 14 Nov 2014 14:03:58 -0500 Subject: [PATCH 2/2] Update README --- README | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README b/README index 98a0a44..1493e86 100644 --- a/README +++ b/README @@ -24,7 +24,7 @@ COMPILE/INSTALL git clone https://github.com/hanwen/termite mkdir go ; cd go export GOPATH=$(pwd) - cd bin/mkbox; make + (cd bin/mkbox ; make ) for d in bin/coordinator bin/worker bin/master bin/shell-wrapper do go install github.com/hanwen/termite/$d