The default Ubuntu install in Slicehost has the minimum number of packages. You have to install most things on your own. The documentation provided by Slicehost is thorough for the most common tasks.  However, I ran into a hiccup that took me a while to figure out.  That hiccup, no surprise, was trying to get the infamous and universally required rmagick gem installed. My first mistake was probably typing:
$ sudo aptitude install imagemagickAnd assuming that it would give me the development headers. It didn’t. Then I tried to find the
libmagick10-dev
package, which doesn’t exist. Eventually, after much trial, error, and increasing familiarity with aptitude
, I found this combination:
$ sudo aptitude install libmagick9-dev $ sudo gem install rmagickSuccess.