The Nokogiri gem native extensions require libxml and libxslt. If you get an error like “libxml / libxslt is missing” during installation install the development packages for those libs. On Ubuntu do:
sudo apt-get install libxml2-dev libxslt1-dev
The Nokogiri gem native extensions require libxml and libxslt. If you get an error like “libxml / libxslt is missing” during installation install the development packages for those libs. On Ubuntu do:
sudo apt-get install libxml2-dev libxslt1-dev
Ubuntu Lucid currently comes with Thunderbird 3.0.x, but Michael found a nice way to install Thunderbird 3.1 on Ubuntu Lucid:
sudo add-apt-repository ppa:ricotz/ppa && sudo apt-get update sudo apt-get install thunderbird
That’s it.
You can find 64-bit versions of lightning (v 1.0b2) and the google calendar add-on at: http://releases.mozilla.org/pub/mozilla.org/calendar/lightning/releases/1.0b2/contrib/linux-x86_64/
I previously wrote on how to install Varnish on Debian/Ubuntu. Here is how to install it on CentOS and the like:
rpm -Uvh http://download.fedora.redhat.com/pub/epel/5/x86_64/epel-release-5-3.noarch.rpm
yum install varnish.x86_64
Note: Change x86_64 to i386 if you are not on a 64 bit system.
Config files are at /etc/varnish/default.vcl and /etc/sysconfig/varnish
“Varnish is a state-of-the-art, high-performance HTTP accelerator.” (varnish-cache.org). It’s configuration language VCL makes it very flexible – it even allows to use custom inline C code
In the past I always build varnish from source myself and used checkinstall to create deb packages. A few days ago I came across a post by Trevor that simplifies the installation on Debian/Ubuntu:
apt-get update apt-get install subversion autotools-dev automake1.9 libtool autoconf libncurses-dev xsltproc quilt
svn co http://varnish-cache.org/svn/tags/varnish-2.0.6/
cd varnish-2.0.6/varnish-cache/ dpkg-buildpackage
cd .. dpkg -i libvarnish1_2.0.4-6_amd64.deb dpkg -i varnish_2.0.4-6_amd64.deb