Arc Forumnew | comments | leaders | submitlogin
6 points by antiismist 5887 days ago | link | parent

Thanks for the suggestions. So I went with Slicehost.com

The setup so far:

apt-get install mzscheme

use wget to grab arc2

run (nsv 5555) - got the famous date error. So now the next task on my checklist is learning how to use git so I can get the date patch via anarki...



9 points by nex3 5887 days ago | link

  apt-get install git
  git clone git://nex-3.com/arc-wiki.git
  cd arc-wiki
And optionally, if you only want the patches and no other improvements,

  git branch stable origin/stable
  git checkout stable

-----

4 points by antiismist 5886 days ago | link

worked like a champ, thanks!

minor point, I used

apt-get install git-core

(because just "git" didn't seem to work)

-----

3 points by nex3 5886 days ago | link

Oh, right, sorry. The "git" package is something else (GNU something tools, I think).

-----