> All steps I took were scripted and hence reproducible, so I can't see how I
> could experience the above problem. I was surprised, though, that there was
> no file called .git/FETCH_HEAD and hence no permissions to change.

Can you share your script with us so I can try to debug it further?

>
> I am very glad to hear that it'll work with OpenJDK. What is your
> recommendation regarding javac then?

There should be something like openjdk-devel or openjdk-6-jdk
(http://packages.ubuntu.com/maverick/openjdk-6-jdk )

>
> And finally, it does not take 7 hours to install - all I was saying that it
> is slow and hard to trouble shoot because our bandwidth is just 7 Megabits
> per second :-)

That's 7 times more than what I have here in Colombia.

I tested the following instructions earlier today  on a fresh Ubuntu
10.04 machine:

sudo   add-apt-repository "deb http://archive.canonical.com/ lucid partner"
sudo apt-get update
sudo apt-get install subversion git-core binutils build-essential
python-dev python-setuptools python-imaging python-reportlab gdal-bin
libproj-dev libgeos-dev unzip sun-java6-jdk maven2

git clone git://github.com/GeoNode/geonode.git

# next line is needed because there is a bug in a PyPi package
sudo apt-get install python-urlgrabber

cd geonode
git submodule update --init
python bootstrap.py
source bin/activate
paver build
django-admin.py createsuperuser --settings=geonode.settings

vim shared/dev-paste.ini
%s/127.0.0.1/0.0.0.0/g
http://cl.ly/5d65c02f9d4c980aea57

vim src/geoserver-geonode-ext/jetty.xml
%s/localhost/0.0.0.0/g
http://cl.ly/535c4b619a407b814825

vim src/GeoNode/geonode/local_settings.py
SITEURL = "http://YOURIP:8000/";
GEOSERVER_BASE_URL = "http://YOURIP:8001/geoserver/";
GEONETWORK_BASE_URL = "http://YOURIP/geonetwork/";

paver host

# then navigate to:
http://YOURIP:8000

Reply via email to