Ubuntu 13.04 and Neo4j in just a few simple steps
Ubuntu 13.04 from ( http://www.ubuntu.com/start-download?distro=desktop&bits=32&release=latest ) There is really no reason to write this since the instructions to install both Ubuntu 13.04 and Neo4j are sufficient. But then you always seems to end up with a tweak somewhere so... Just step though the Ubuntu 13.04 installation screens and fill in the values you need to change Reboot and you should a brand new Ubuntu installation to play with. Now lets add Neo4j. Fire up a terminal and write sudo -s to get root priviliges: From this point execute the following commands as root: apt-get update apt-get upgrade wget -O - http://debian.neo4j.org/neotechnology.gpg.key | apt-key add - echo 'deb http://debian.neo4j.org/repo stable/' > /etc/apt/sources.list.d/neo4j.list apt-get update apt-get install neo4j service neo4j-service status Should p...