Details
-
Wish
-
Status: Resolved
-
Trivial
-
Resolution: Fixed
-
None
Description
The installation guide on the public site is outdated. I've tried to install the delta cloud server on debian 6 squeeze and failed because of some lib-name changes and missing symlinks. Later on I tried on ubuntu as well and faced the same issues.
Here are the adapted steps (for Debian 6):
#Symlink
$ ln -s /usr/bin/ruby1.9.1 /usr/bin/ruby
$ ln -s /usr/bin/gem1.9.1 /usr/bin/gem
#Check if installed correctly
$ ruby -v
$ gem -v
#Get required libs
$ apt-get install libxml++2.6-dev libxml2-dev
$ apt-get install libxslt1.1 libxslt-dev
$ apt-get install sqlite libsqlite3-dev
#Install required gems
gem install thin sinatra rack-accept rest-client sinatra-content-for nokogiri
#Symlink
ln -s /var/lib/gems/1.9.1/gems/deltacloud-core-1.1.3/bin /usr/bin/deltacloudd
#Start
./deltacloudd -i mock
After the installation the path variable for deltacloudd was not set correctly so i've simply made a symlink and started it manually.
Thanks in advance!
Andreas