Problem:
When you attempt to install mod_fastcgi for apache 2.2 on Ubuntu 10.04 using “apt-get install libapache2-mod-fastcgi” you recieve the Error “E: Package libapache2-mod-fastcgi has no installation candidate.”
Solution:
- Add multiverse to lucid main within apt sources:
nano /etc/apt/sources.list
- Add these lines to the bottom of the file:
deb http://archive.ubuntu.com/ubuntu/ lucid main restricted multiverse deb-src http://archive.ubuntu.com/ubuntu lucid main restricted multiverse
- Update apt
apt-get update
- Download mod-fastcgi from newly added repositories
apt-get install libapache2-mod-fastcgi
- Success!
If this article has been helpful, please consider linking to it or commenting.